Projekt

Obecné

Profil

Stáhnout (4.9 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>0.1.2-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
        <dependency>
56
            <groupId>org.apache.logging.log4j</groupId>
57
            <artifactId>log4j-core</artifactId>
58
            <version>2.11.1</version>
59
        </dependency>
60
        <dependency>
61
            <groupId>org.springframework.security</groupId>
62
            <artifactId>spring-security-crypto</artifactId>
63
            <version>5.1.2.RELEASE</version>
64
        </dependency>
65
        <dependency>
66
            <groupId>commons-fileupload</groupId>
67
            <artifactId>commons-fileupload</artifactId>
68
            <version>1.3.3</version>
69
        </dependency>
70
        <dependency>
71
            <groupId>org.apache.commons</groupId>
72
            <artifactId>commons-lang3</artifactId>
73
            <version>3.8.1</version>
74
        </dependency>
75

    
76
        <!-- Servlets and JSP -->
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
        <dependency>
84
            <groupId>javax.servlet.jsp</groupId>
85
            <artifactId>javax.servlet.jsp-api</artifactId>
86
            <version>2.3.3</version>
87
            <scope>provided</scope>
88
        </dependency>
89
        <dependency>
90
            <groupId>javax.servlet.jsp.jstl</groupId>
91
            <artifactId>jstl-api</artifactId>
92
            <version>1.2</version>
93
            <exclusions>
94
                <exclusion>
95
                    <groupId>javax.servlet</groupId>
96
                    <artifactId>servlet-api</artifactId>
97
                </exclusion>
98
                <exclusion>
99
                    <groupId>javax.servlet.jsp</groupId>
100
                    <artifactId>jsp-api</artifactId>
101
                </exclusion>
102
            </exclusions>
103
        </dependency>
104
        <dependency>
105
            <groupId>org.apache.taglibs</groupId>
106
            <artifactId>taglibs-standard-impl</artifactId>
107
            <version>1.2.5</version>
108
        </dependency>
109

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

    
124
        <!-- JSON parsing and creating -->
125
        <dependency>
126
            <groupId>com.google.code.gson</groupId>
127
            <artifactId>gson</artifactId>
128
            <version>2.8.5</version>
129
        </dependency>
130

    
131
        <!-- Database -->
132
        <dependency>
133
            <groupId>mysql</groupId>
134
            <artifactId>mysql-connector-java</artifactId>
135
            <version>8.0.15</version>
136
        </dependency>
137
    </dependencies>
138
  
139
    <properties>
140
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
141
    </properties>
142
</project>
(2-2/2)