Projekt

Obecné

Profil

Stáhnout (6.3 KB) Statistiky
| Větev: | Tag: | Revize:
1 28be3f78 Pavel Fidranský
<?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 f11864a9 Pavel Fidranský
12 28be3f78 Pavel Fidranský
    <build>
13 f11864a9 Pavel Fidranský
        <finalName>${project.artifactId}</finalName>
14 28be3f78 Pavel Fidranský
        <plugins>
15
            <plugin>
16
                <groupId>org.apache.maven.plugins</groupId>
17
                <artifactId>maven-compiler-plugin</artifactId>
18 4722abdd Tomáš Šimandl
                <version>3.8.0</version>
19 28be3f78 Pavel Fidranský
                <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 4722abdd Tomáš Šimandl
                <version>3.2.2</version>
33 28be3f78 Pavel Fidranský
                <configuration>
34
                    <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
35
                </configuration>
36
            </plugin>
37 47e08cac Tomáš Šimandl
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 28be3f78 Pavel Fidranský
        </plugins>
52
    </build>
53 f11864a9 Pavel Fidranský
54 28be3f78 Pavel Fidranský
    <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 4722abdd Tomáš Šimandl
            <version>3.8.0</version>
60 28be3f78 Pavel Fidranský
        </dependency>
61
62 d5a1486f Tomáš Šimandl
        <!-- 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 3094b8b2 Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
69 28be3f78 Pavel Fidranský
        <dependency>
70 3094b8b2 Tomáš Šimandl
            <groupId>org.apache.logging.log4j</groupId>
71
            <artifactId>log4j-core</artifactId>
72
            <version>2.11.1</version>
73 28be3f78 Pavel Fidranský
        </dependency>
74 3094b8b2 Tomáš Šimandl
75 d5a1486f Tomáš Šimandl
76
77 4ab7f824 Tomáš Šimandl
        <!-- 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 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
84 28be3f78 Pavel Fidranský
        <dependency>
85 4722abdd Tomáš Šimandl
            <groupId>commons-fileupload</groupId>
86
            <artifactId>commons-fileupload</artifactId>
87
            <version>1.3.3</version>
88 28be3f78 Pavel Fidranský
        </dependency>
89 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
90 28be3f78 Pavel Fidranský
        <dependency>
91 4722abdd Tomáš Šimandl
            <groupId>commons-io</groupId>
92
            <artifactId>commons-io</artifactId>
93
            <version>2.6</version>
94 28be3f78 Pavel Fidranský
        </dependency>
95
96
97
98 4722abdd Tomáš Šimandl
        <!-- Servlets and JSP-->
99
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
100 28be3f78 Pavel Fidranský
        <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 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
114 28be3f78 Pavel Fidranský
        <dependency>
115 4722abdd Tomáš Šimandl
            <groupId>jstl</groupId>
116
            <artifactId>jstl</artifactId>
117
            <version>1.2</version>
118 28be3f78 Pavel Fidranský
        </dependency>
119
120
121 4722abdd Tomáš Šimandl
122
        <!-- testing -->
123
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
124 28be3f78 Pavel Fidranský
        <dependency>
125 4722abdd Tomáš Šimandl
            <groupId>org.seleniumhq.selenium</groupId>
126
            <artifactId>selenium-java</artifactId>
127
            <version>3.12.0</version>
128 28be3f78 Pavel Fidranský
        </dependency>
129 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
130 28be3f78 Pavel Fidranský
        <dependency>
131 4722abdd Tomáš Šimandl
            <groupId>org.junit.jupiter</groupId>
132
            <artifactId>junit-jupiter-api</artifactId>
133
            <version>5.3.2</version>
134
            <scope>test</scope>
135 28be3f78 Pavel Fidranský
        </dependency>
136
137
138
139 4722abdd Tomáš Šimandl
        <!-- Libs fro JSON parsing and creating -->
140
        <!-- TODO use only one lib (gson)-->
141
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
142 28be3f78 Pavel Fidranský
        <dependency>
143 4722abdd Tomáš Šimandl
            <groupId>com.google.code.gson</groupId>
144
            <artifactId>gson</artifactId>
145
            <version>2.8.5</version>
146 28be3f78 Pavel Fidranský
        </dependency>
147 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
148 28be3f78 Pavel Fidranský
        <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 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.json/json -->
155 28be3f78 Pavel Fidranský
        <dependency>
156 4722abdd Tomáš Šimandl
            <groupId>org.json</groupId>
157
            <artifactId>json</artifactId>
158
            <version>20180813</version>
159 28be3f78 Pavel Fidranský
        </dependency>
160 4722abdd Tomáš Šimandl
161
162
163
        <!-- Database -->
164 28be3f78 Pavel Fidranský
        <!-- 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 f11864a9 Pavel Fidranský
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
174
    </properties>
175 28be3f78 Pavel Fidranský
</project>