Projekt

Obecné

Profil

Stáhnout (6 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/commons-fileupload/commons-fileupload -->
78
        <dependency>
79
            <groupId>commons-fileupload</groupId>
80
            <artifactId>commons-fileupload</artifactId>
81
            <version>1.3.3</version>
82
        </dependency>
83
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
84
        <dependency>
85
            <groupId>commons-io</groupId>
86
            <artifactId>commons-io</artifactId>
87
            <version>2.6</version>
88
        </dependency>
89

    
90

    
91

    
92
        <!-- Servlets and JSP-->
93
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
94
        <dependency>
95
            <groupId>javax.servlet</groupId>
96
            <artifactId>javax.servlet-api</artifactId>
97
            <version>3.1.0</version>
98
            <scope>provided</scope>
99
        </dependency>
100
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
101
        <dependency>
102
            <groupId>javax.servlet.jsp</groupId>
103
            <artifactId>javax.servlet.jsp-api</artifactId>
104
            <version>2.3.1</version>
105
            <scope>provided</scope>
106
        </dependency>
107
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
108
        <dependency>
109
            <groupId>jstl</groupId>
110
            <artifactId>jstl</artifactId>
111
            <version>1.2</version>
112
        </dependency>
113

    
114

    
115

    
116
        <!-- testing -->
117
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
118
        <dependency>
119
            <groupId>org.seleniumhq.selenium</groupId>
120
            <artifactId>selenium-java</artifactId>
121
            <version>3.12.0</version>
122
        </dependency>
123
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
124
        <dependency>
125
            <groupId>org.junit.jupiter</groupId>
126
            <artifactId>junit-jupiter-api</artifactId>
127
            <version>5.3.2</version>
128
            <scope>test</scope>
129
        </dependency>
130

    
131

    
132

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

    
155

    
156

    
157
        <!-- Database -->
158
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
159
        <dependency>
160
            <groupId>mysql</groupId>
161
            <artifactId>mysql-connector-java</artifactId>
162
            <version>5.1.6</version>
163
        </dependency>
164
    </dependencies>
165
  
166
    <properties>
167
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
168
    </properties>
169
</project>
(2-2/2)