Projekt

Obecné

Profil

Stáhnout (6.3 KB) Statistiky
| Větev: | Tag: | Revize:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6

    
7
    <groupId>cz.zcu.kiv</groupId>
8
    <artifactId>imiger</artifactId>
9
    <version>1.0-SNAPSHOT</version>
10
    <packaging>war</packaging>
11

    
12
    <build>
13
        <finalName>${project.artifactId}</finalName>
14
        <plugins>
15
            <plugin>
16
                <groupId>org.apache.maven.plugins</groupId>
17
                <artifactId>maven-compiler-plugin</artifactId>
18
                <version>3.8.0</version>
19
                <configuration>
20
                    <source>8</source>
21
                    <target>8</target>
22
                </configuration>
23
            </plugin>
24
            <plugin>
25
                <groupId>org.apache.tomcat.maven</groupId>
26
                <artifactId>tomcat7-maven-plugin</artifactId>
27
                <version>2.2</version>
28
            </plugin>
29
            <plugin>
30
                <groupId>org.apache.maven.plugins</groupId>
31
                <artifactId>maven-war-plugin</artifactId>
32
                <version>3.2.2</version>
33
                <configuration>
34
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
35
                </configuration>
36
            </plugin>
37

    
38
            <!-- Static code analyses-->
39
            <plugin>
40
                <groupId>com.github.spotbugs</groupId>
41
                <artifactId>spotbugs-maven-plugin</artifactId>
42
                <version>3.1.8</version>
43
                <dependencies>
44
                    <dependency>
45
                        <groupId>com.github.spotbugs</groupId>
46
                        <artifactId>spotbugs</artifactId>
47
                        <version>3.1.9</version>
48
                    </dependency>
49
                </dependencies>
50
            </plugin>
51
        </plugins>
52
    </build>
53

    
54
    <dependencies>
55
        <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
56
        <dependency>
57
            <groupId>org.apache.maven.plugins</groupId>
58
            <artifactId>maven-compiler-plugin</artifactId>
59
            <version>3.8.0</version>
60
        </dependency>
61

    
62
        <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
63
        <dependency>
64
            <groupId>org.apache.logging.log4j</groupId>
65
            <artifactId>log4j-api</artifactId>
66
            <version>2.11.1</version>
67
        </dependency>
68
        <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
69
        <dependency>
70
            <groupId>org.apache.logging.log4j</groupId>
71
            <artifactId>log4j-core</artifactId>
72
            <version>2.11.1</version>
73
        </dependency>
74

    
75

    
76

    
77
        <!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-core -->
78
        <dependency>
79
            <groupId>org.springframework.security</groupId>
80
            <artifactId>spring-security-core</artifactId>
81
            <version>5.1.2.RELEASE</version>
82
        </dependency>
83
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
84
        <dependency>
85
            <groupId>commons-fileupload</groupId>
86
            <artifactId>commons-fileupload</artifactId>
87
            <version>1.3.3</version>
88
        </dependency>
89
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
90
        <dependency>
91
            <groupId>commons-io</groupId>
92
            <artifactId>commons-io</artifactId>
93
            <version>2.6</version>
94
        </dependency>
95

    
96

    
97

    
98
        <!-- Servlets and JSP-->
99
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
100
        <dependency>
101
            <groupId>javax.servlet</groupId>
102
            <artifactId>javax.servlet-api</artifactId>
103
            <version>3.1.0</version>
104
            <scope>provided</scope>
105
        </dependency>
106
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
107
        <dependency>
108
            <groupId>javax.servlet.jsp</groupId>
109
            <artifactId>javax.servlet.jsp-api</artifactId>
110
            <version>2.3.1</version>
111
            <scope>provided</scope>
112
        </dependency>
113
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
114
        <dependency>
115
            <groupId>jstl</groupId>
116
            <artifactId>jstl</artifactId>
117
            <version>1.2</version>
118
        </dependency>
119

    
120

    
121

    
122
        <!-- testing -->
123
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
124
        <dependency>
125
            <groupId>org.seleniumhq.selenium</groupId>
126
            <artifactId>selenium-java</artifactId>
127
            <version>3.12.0</version>
128
        </dependency>
129
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
130
        <dependency>
131
            <groupId>org.junit.jupiter</groupId>
132
            <artifactId>junit-jupiter-api</artifactId>
133
            <version>5.3.2</version>
134
            <scope>test</scope>
135
        </dependency>
136

    
137

    
138

    
139
        <!-- Libs fro JSON parsing and creating -->
140
        <!-- TODO use only one lib (gson)-->
141
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
142
        <dependency>
143
            <groupId>com.google.code.gson</groupId>
144
            <artifactId>gson</artifactId>
145
            <version>2.8.5</version>
146
        </dependency>
147
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
148
        <dependency>
149
            <groupId>net.sf.json-lib</groupId>
150
            <artifactId>json-lib</artifactId>
151
            <version>2.4</version>
152
            <classifier>jdk15</classifier>
153
        </dependency>
154
        <!-- https://mvnrepository.com/artifact/org.json/json -->
155
        <dependency>
156
            <groupId>org.json</groupId>
157
            <artifactId>json</artifactId>
158
            <version>20180813</version>
159
        </dependency>
160

    
161

    
162

    
163
        <!-- Database -->
164
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
165
        <dependency>
166
            <groupId>mysql</groupId>
167
            <artifactId>mysql-connector-java</artifactId>
168
            <version>5.1.6</version>
169
        </dependency>
170
    </dependencies>
171
  
172
    <properties>
173
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
174
    </properties>
175
</project>
(2-2/2)