Projekt

Obecné

Profil

Stáhnout (5.74 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-core -->
63
        <dependency>
64
            <groupId>org.apache.logging.log4j</groupId>
65
            <artifactId>log4j-core</artifactId>
66
            <version>2.11.1</version>
67
        </dependency>
68

    
69
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
70
        <dependency>
71
            <groupId>commons-fileupload</groupId>
72
            <artifactId>commons-fileupload</artifactId>
73
            <version>1.3.3</version>
74
        </dependency>
75
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
76
        <dependency>
77
            <groupId>commons-io</groupId>
78
            <artifactId>commons-io</artifactId>
79
            <version>2.6</version>
80
        </dependency>
81

    
82

    
83

    
84
        <!-- Servlets and JSP-->
85
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
86
        <dependency>
87
            <groupId>javax.servlet</groupId>
88
            <artifactId>javax.servlet-api</artifactId>
89
            <version>3.1.0</version>
90
            <scope>provided</scope>
91
        </dependency>
92
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
93
        <dependency>
94
            <groupId>javax.servlet.jsp</groupId>
95
            <artifactId>javax.servlet.jsp-api</artifactId>
96
            <version>2.3.1</version>
97
            <scope>provided</scope>
98
        </dependency>
99
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
100
        <dependency>
101
            <groupId>jstl</groupId>
102
            <artifactId>jstl</artifactId>
103
            <version>1.2</version>
104
        </dependency>
105

    
106

    
107

    
108
        <!-- testing -->
109
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
110
        <dependency>
111
            <groupId>org.seleniumhq.selenium</groupId>
112
            <artifactId>selenium-java</artifactId>
113
            <version>3.12.0</version>
114
        </dependency>
115
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
116
        <dependency>
117
            <groupId>org.junit.jupiter</groupId>
118
            <artifactId>junit-jupiter-api</artifactId>
119
            <version>5.3.2</version>
120
            <scope>test</scope>
121
        </dependency>
122

    
123

    
124

    
125
        <!-- Libs fro JSON parsing and creating -->
126
        <!-- TODO use only one lib (gson)-->
127
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
128
        <dependency>
129
            <groupId>com.google.code.gson</groupId>
130
            <artifactId>gson</artifactId>
131
            <version>2.8.5</version>
132
        </dependency>
133
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
134
        <dependency>
135
            <groupId>net.sf.json-lib</groupId>
136
            <artifactId>json-lib</artifactId>
137
            <version>2.4</version>
138
            <classifier>jdk15</classifier>
139
        </dependency>
140
        <!-- https://mvnrepository.com/artifact/org.json/json -->
141
        <dependency>
142
            <groupId>org.json</groupId>
143
            <artifactId>json</artifactId>
144
            <version>20180813</version>
145
        </dependency>
146

    
147

    
148

    
149
        <!-- Database -->
150
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
151
        <dependency>
152
            <groupId>mysql</groupId>
153
            <artifactId>mysql-connector-java</artifactId>
154
            <version>5.1.6</version>
155
        </dependency>
156
    </dependencies>
157
  
158
    <properties>
159
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
160
    </properties>
161
</project>
(2-2/2)