Projekt

Obecné

Profil

Stáhnout (5.52 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 ba1fdf2c Tomáš Šimandl
90 28be3f78 Pavel Fidranský
91
92
93 4722abdd Tomáš Šimandl
        <!-- Servlets and JSP-->
94
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
95 28be3f78 Pavel Fidranský
        <dependency>
96
            <groupId>javax.servlet</groupId>
97
            <artifactId>javax.servlet-api</artifactId>
98
            <version>3.1.0</version>
99
            <scope>provided</scope>
100
        </dependency>
101
        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
102
        <dependency>
103
            <groupId>javax.servlet.jsp</groupId>
104
            <artifactId>javax.servlet.jsp-api</artifactId>
105
            <version>2.3.1</version>
106
            <scope>provided</scope>
107
        </dependency>
108 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/jstl/jstl -->
109 28be3f78 Pavel Fidranský
        <dependency>
110 4722abdd Tomáš Šimandl
            <groupId>jstl</groupId>
111
            <artifactId>jstl</artifactId>
112
            <version>1.2</version>
113 28be3f78 Pavel Fidranský
        </dependency>
114
115
116 4722abdd Tomáš Šimandl
117
        <!-- testing -->
118
        <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
119 28be3f78 Pavel Fidranský
        <dependency>
120 4722abdd Tomáš Šimandl
            <groupId>org.seleniumhq.selenium</groupId>
121
            <artifactId>selenium-java</artifactId>
122
            <version>3.12.0</version>
123 28be3f78 Pavel Fidranský
        </dependency>
124 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
125 28be3f78 Pavel Fidranský
        <dependency>
126 4722abdd Tomáš Šimandl
            <groupId>org.junit.jupiter</groupId>
127
            <artifactId>junit-jupiter-api</artifactId>
128
            <version>5.3.2</version>
129
            <scope>test</scope>
130 28be3f78 Pavel Fidranský
        </dependency>
131
132
133
134 ba1fdf2c Tomáš Šimandl
        <!-- Lib for JSON parsing and creating -->
135 4722abdd Tomáš Šimandl
        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
136 28be3f78 Pavel Fidranský
        <dependency>
137 4722abdd Tomáš Šimandl
            <groupId>com.google.code.gson</groupId>
138
            <artifactId>gson</artifactId>
139
            <version>2.8.5</version>
140 28be3f78 Pavel Fidranský
        </dependency>
141 455af7b1 Tomáš Šimandl
        
142 4722abdd Tomáš Šimandl
143
        <!-- Database -->
144 28be3f78 Pavel Fidranský
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
145
        <dependency>
146
            <groupId>mysql</groupId>
147
            <artifactId>mysql-connector-java</artifactId>
148
            <version>5.1.6</version>
149
        </dependency>
150
    </dependencies>
151
  
152
    <properties>
153 f11864a9 Pavel Fidranský
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
154
    </properties>
155 28be3f78 Pavel Fidranský
</project>