Projekt

Obecné

Profil

Stáhnout (4.73 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

    
71
        <!-- Servlets and JSP -->
72
        <dependency>
73
            <groupId>javax.servlet</groupId>
74
            <artifactId>javax.servlet-api</artifactId>
75
            <version>3.1.0</version>
76
            <scope>provided</scope>
77
        </dependency>
78
        <dependency>
79
            <groupId>javax.servlet.jsp</groupId>
80
            <artifactId>javax.servlet.jsp-api</artifactId>
81
            <version>2.3.3</version>
82
            <scope>provided</scope>
83
        </dependency>
84
        <dependency>
85
            <groupId>javax.servlet.jsp.jstl</groupId>
86
            <artifactId>jstl-api</artifactId>
87
            <version>1.2</version>
88
            <exclusions>
89
                <exclusion>
90
                    <groupId>javax.servlet</groupId>
91
                    <artifactId>servlet-api</artifactId>
92
                </exclusion>
93
                <exclusion>
94
                    <groupId>javax.servlet.jsp</groupId>
95
                    <artifactId>jsp-api</artifactId>
96
                </exclusion>
97
            </exclusions>
98
        </dependency>
99
        <dependency>
100
            <groupId>org.apache.taglibs</groupId>
101
            <artifactId>taglibs-standard-impl</artifactId>
102
            <version>1.2.5</version>
103
        </dependency>
104

    
105
        <!-- testing -->
106
        <dependency>
107
            <groupId>org.seleniumhq.selenium</groupId>
108
            <artifactId>selenium-java</artifactId>
109
            <version>3.12.0</version>
110
            <scope>test</scope>
111
        </dependency>
112
        <dependency>
113
            <groupId>org.junit.jupiter</groupId>
114
            <artifactId>junit-jupiter-api</artifactId>
115
            <version>5.3.2</version>
116
            <scope>test</scope>
117
        </dependency>
118

    
119
        <!-- JSON parsing and creating -->
120
        <dependency>
121
            <groupId>com.google.code.gson</groupId>
122
            <artifactId>gson</artifactId>
123
            <version>2.8.5</version>
124
        </dependency>
125

    
126
        <!-- Database -->
127
        <dependency>
128
            <groupId>mysql</groupId>
129
            <artifactId>mysql-connector-java</artifactId>
130
            <version>5.1.6</version>
131
        </dependency>
132
    </dependencies>
133
  
134
    <properties>
135
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
136
    </properties>
137
</project>
(2-2/2)