Projekt

Obecné

Profil

Stáhnout (5.74 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 3094b8b2 Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
63 28be3f78 Pavel Fidranský
        <dependency>
64 3094b8b2 Tomáš Šimandl
            <groupId>org.apache.logging.log4j</groupId>
65
            <artifactId>log4j-core</artifactId>
66
            <version>2.11.1</version>
67 28be3f78 Pavel Fidranský
        </dependency>
68 3094b8b2 Tomáš Šimandl
69 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
70 28be3f78 Pavel Fidranský
        <dependency>
71 4722abdd Tomáš Šimandl
            <groupId>commons-fileupload</groupId>
72
            <artifactId>commons-fileupload</artifactId>
73
            <version>1.3.3</version>
74 28be3f78 Pavel Fidranský
        </dependency>
75 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
76 28be3f78 Pavel Fidranský
        <dependency>
77 4722abdd Tomáš Šimandl
            <groupId>commons-io</groupId>
78
            <artifactId>commons-io</artifactId>
79
            <version>2.6</version>
80 28be3f78 Pavel Fidranský
        </dependency>
81
82
83
84 4722abdd Tomáš Šimandl
        <!-- Servlets and JSP-->
85
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
86 28be3f78 Pavel Fidranský
        <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 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
100 28be3f78 Pavel Fidranský
        <dependency>
101 4722abdd Tomáš Šimandl
            <groupId>jstl</groupId>
102
            <artifactId>jstl</artifactId>
103
            <version>1.2</version>
104 28be3f78 Pavel Fidranský
        </dependency>
105
106
107 4722abdd Tomáš Šimandl
108
        <!-- testing -->
109
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
110 28be3f78 Pavel Fidranský
        <dependency>
111 4722abdd Tomáš Šimandl
            <groupId>org.seleniumhq.selenium</groupId>
112
            <artifactId>selenium-java</artifactId>
113
            <version>3.12.0</version>
114 28be3f78 Pavel Fidranský
        </dependency>
115 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
116 28be3f78 Pavel Fidranský
        <dependency>
117 4722abdd Tomáš Šimandl
            <groupId>org.junit.jupiter</groupId>
118
            <artifactId>junit-jupiter-api</artifactId>
119
            <version>5.3.2</version>
120
            <scope>test</scope>
121 28be3f78 Pavel Fidranský
        </dependency>
122
123
124
125 4722abdd Tomáš Šimandl
        <!-- Libs fro JSON parsing and creating -->
126
        <!-- TODO use only one lib (gson)-->
127
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
128 28be3f78 Pavel Fidranský
        <dependency>
129 4722abdd Tomáš Šimandl
            <groupId>com.google.code.gson</groupId>
130
            <artifactId>gson</artifactId>
131
            <version>2.8.5</version>
132 28be3f78 Pavel Fidranský
        </dependency>
133 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
134 28be3f78 Pavel Fidranský
        <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 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.json/json -->
141 28be3f78 Pavel Fidranský
        <dependency>
142 4722abdd Tomáš Šimandl
            <groupId>org.json</groupId>
143
            <artifactId>json</artifactId>
144
            <version>20180813</version>
145 28be3f78 Pavel Fidranský
        </dependency>
146 4722abdd Tomáš Šimandl
147
148
149
        <!-- Database -->
150 28be3f78 Pavel Fidranský
        <!-- 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 f11864a9 Pavel Fidranský
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
160
    </properties>
161 28be3f78 Pavel Fidranský
</project>