Projekt

Obecné

Profil

Stáhnout (5.42 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
        </plugins>
38
    </build>
39

    
40
    <dependencies>
41
        <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
42
        <dependency>
43
            <groupId>org.apache.maven.plugins</groupId>
44
            <artifactId>maven-compiler-plugin</artifactId>
45
            <version>3.8.0</version>
46
        </dependency>
47

    
48
        <!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 -->
49
        <dependency>
50
            <groupId>com.google.code.findbugs</groupId>
51
            <artifactId>jsr305</artifactId>
52
            <version>3.0.2</version>
53
        </dependency>
54
        <!-- https://mvnrepository.com/artifact/log4j/log4j -->
55
        <dependency>
56
            <groupId>log4j</groupId>
57
            <artifactId>log4j</artifactId>
58
            <version>1.2.17</version>
59
        </dependency>
60
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
61
        <dependency>
62
            <groupId>commons-fileupload</groupId>
63
            <artifactId>commons-fileupload</artifactId>
64
            <version>1.3.3</version>
65
        </dependency>
66
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
67
        <dependency>
68
            <groupId>commons-io</groupId>
69
            <artifactId>commons-io</artifactId>
70
            <version>2.6</version>
71
        </dependency>
72

    
73

    
74

    
75
        <!-- Servlets and JSP-->
76
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
77
        <dependency>
78
            <groupId>javax.servlet</groupId>
79
            <artifactId>javax.servlet-api</artifactId>
80
            <version>3.1.0</version>
81
            <scope>provided</scope>
82
        </dependency>
83
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
84
        <dependency>
85
            <groupId>javax.servlet.jsp</groupId>
86
            <artifactId>javax.servlet.jsp-api</artifactId>
87
            <version>2.3.1</version>
88
            <scope>provided</scope>
89
        </dependency>
90
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
91
        <dependency>
92
            <groupId>jstl</groupId>
93
            <artifactId>jstl</artifactId>
94
            <version>1.2</version>
95
        </dependency>
96

    
97

    
98

    
99
        <!-- testing -->
100
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
101
        <dependency>
102
            <groupId>org.seleniumhq.selenium</groupId>
103
            <artifactId>selenium-java</artifactId>
104
            <version>3.12.0</version>
105
        </dependency>
106
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
107
        <dependency>
108
            <groupId>org.junit.jupiter</groupId>
109
            <artifactId>junit-jupiter-api</artifactId>
110
            <version>5.3.2</version>
111
            <scope>test</scope>
112
        </dependency>
113

    
114

    
115

    
116
        <!-- Libs fro JSON parsing and creating -->
117
        <!-- TODO use only one lib (gson)-->
118
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
119
        <dependency>
120
            <groupId>com.google.code.gson</groupId>
121
            <artifactId>gson</artifactId>
122
            <version>2.8.5</version>
123
        </dependency>
124
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
125
        <dependency>
126
            <groupId>net.sf.json-lib</groupId>
127
            <artifactId>json-lib</artifactId>
128
            <version>2.4</version>
129
            <classifier>jdk15</classifier>
130
        </dependency>
131
        <!-- https://mvnrepository.com/artifact/org.json/json -->
132
        <dependency>
133
            <groupId>org.json</groupId>
134
            <artifactId>json</artifactId>
135
            <version>20180813</version>
136
        </dependency>
137

    
138

    
139

    
140
        <!-- Database -->
141
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
142
        <dependency>
143
            <groupId>mysql</groupId>
144
            <artifactId>mysql-connector-java</artifactId>
145
            <version>5.1.6</version>
146
        </dependency>
147
    </dependencies>
148
  
149
    <properties>
150
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
151
    </properties>
152
</project>
(2-2/2)