Projekt

Obecné

Profil

Stáhnout (5.08 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
        <dependency>
76
            <groupId>commons-validator</groupId>
77
            <artifactId>commons-validator</artifactId>
78
            <version>1.6</version>
79
        </dependency>
80

    
81
        <!-- Servlets and JSP -->
82
        <dependency>
83
            <groupId>javax.servlet</groupId>
84
            <artifactId>javax.servlet-api</artifactId>
85
            <version>3.1.0</version>
86
            <scope>provided</scope>
87
        </dependency>
88
        <dependency>
89
            <groupId>javax.servlet.jsp</groupId>
90
            <artifactId>javax.servlet.jsp-api</artifactId>
91
            <version>2.3.3</version>
92
            <scope>provided</scope>
93
        </dependency>
94
        <dependency>
95
            <groupId>javax.servlet.jsp.jstl</groupId>
96
            <artifactId>jstl-api</artifactId>
97
            <version>1.2</version>
98
            <exclusions>
99
                <exclusion>
100
                    <groupId>javax.servlet</groupId>
101
                    <artifactId>servlet-api</artifactId>
102
                </exclusion>
103
                <exclusion>
104
                    <groupId>javax.servlet.jsp</groupId>
105
                    <artifactId>jsp-api</artifactId>
106
                </exclusion>
107
            </exclusions>
108
        </dependency>
109
        <dependency>
110
            <groupId>org.apache.taglibs</groupId>
111
            <artifactId>taglibs-standard-impl</artifactId>
112
            <version>1.2.5</version>
113
        </dependency>
114

    
115
        <!-- testing -->
116
        <dependency>
117
            <groupId>org.seleniumhq.selenium</groupId>
118
            <artifactId>selenium-java</artifactId>
119
            <version>3.12.0</version>
120
            <scope>test</scope>
121
        </dependency>
122
        <dependency>
123
            <groupId>org.junit.jupiter</groupId>
124
            <artifactId>junit-jupiter-api</artifactId>
125
            <version>5.3.2</version>
126
            <scope>test</scope>
127
        </dependency>
128

    
129
        <!-- JSON parsing and creating -->
130
        <dependency>
131
            <groupId>com.google.code.gson</groupId>
132
            <artifactId>gson</artifactId>
133
            <version>2.8.5</version>
134
        </dependency>
135

    
136
        <!-- Database -->
137
        <dependency>
138
            <groupId>mysql</groupId>
139
            <artifactId>mysql-connector-java</artifactId>
140
            <version>8.0.15</version>
141
        </dependency>
142
    </dependencies>
143
  
144
    <properties>
145
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
146
    </properties>
147
</project>
(2-2/2)