Projekt

Obecné

Profil

Stáhnout (4.71 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4
	<modelVersion>4.0.0</modelVersion>
5
	<parent>
6
		<groupId>org.springframework.boot</groupId>
7
		<artifactId>spring-boot-starter-parent</artifactId>
8
		<version>2.4.4</version>
9
		<relativePath/> <!-- lookup parent from repository -->
10
	</parent>
11

    
12
	<groupId>cz.zcu.fav.kiv</groupId>
13
	<artifactId>anti-pattern-detection-app</artifactId>
14
	<version>1.2.0</version>
15
	<packaging>war</packaging>
16
	<name>anti-pattern-detection-app</name>
17
	<description>Basic web application for anti pattern detection</description>
18

    
19
	<properties>
20
		<java.version>11</java.version>
21
		<spring.boot.version>2.6.9</spring.boot.version>
22
		<org.reflections.version>0.10.2</org.reflections.version>
23
		<org.jsoup.version>1.15.2</org.jsoup.version>
24
		<com.fasterxml.jackson.core.version>2.13.3</com.fasterxml.jackson.core.version>
25
		<org.junit.jupiter.version>5.4.0</org.junit.jupiter.version>
26
		<org.apache.maven.plugins.version>3.0.0-M7</org.apache.maven.plugins.version>
27
	</properties>
28

    
29
	<dependencies>
30

    
31
		<dependency>
32
			<groupId>org.springframework.boot</groupId>
33
			<artifactId>spring-boot-starter</artifactId>
34
		</dependency>
35

    
36
		<dependency>
37
			<groupId>org.springframework.boot</groupId>
38
			<artifactId>spring-boot-starter-test</artifactId>
39
			<scope>test</scope>
40
		</dependency>
41

    
42
		<dependency>
43
			<groupId>org.springframework.boot</groupId>
44
			<artifactId>spring-boot-starter-web</artifactId>
45
		</dependency>
46

    
47
<!--		<dependency>-->
48
<!--			<groupId>org.springframework.boot</groupId>-->
49
<!--			<artifactId>spring-boot-starter-security</artifactId>-->
50
<!--		</dependency>-->
51

    
52
		<dependency>
53
			<groupId>mysql</groupId>
54
			<artifactId>mysql-connector-java</artifactId>
55
			<scope>runtime</scope>
56
		</dependency>
57

    
58
		<dependency>
59
			<groupId>org.springframework.boot</groupId>
60
			<artifactId>spring-boot-starter-data-jpa</artifactId>
61
		</dependency>
62

    
63
		<dependency>
64
			<groupId>org.springframework.boot</groupId>
65
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
66
		</dependency>
67

    
68
		<dependency>
69
			<groupId>org.reflections</groupId>
70
			<artifactId>reflections</artifactId>
71
			<version>${org.reflections.version}</version>
72
		</dependency>
73

    
74
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
75
		<dependency>
76
			<groupId>org.jsoup</groupId>
77
			<artifactId>jsoup</artifactId>
78
			<version>${org.jsoup.version}</version>
79
		</dependency>
80

    
81
		<!-- Jackson libraries for parsing json files -->
82
		<dependency>
83
			<groupId>com.fasterxml.jackson.core</groupId>
84
			<artifactId>jackson-core</artifactId>
85
			<version>${com.fasterxml.jackson.core.version}</version>
86
		</dependency>
87

    
88
		<dependency>
89
			<groupId>com.fasterxml.jackson.core</groupId>
90
			<artifactId>jackson-annotations</artifactId>
91
			<version>${com.fasterxml.jackson.core.version}</version>
92
		</dependency>
93

    
94
		<dependency>
95
			<groupId>com.fasterxml.jackson.core</groupId>
96
			<artifactId>jackson-databind</artifactId>
97
			<version>${com.fasterxml.jackson.core.version}</version>
98
		</dependency>
99

    
100

    
101

    
102

    
103
		<!-- Junit libraries for unit tests-->
104
		<dependency>
105
			<groupId>org.junit.jupiter</groupId>
106
			<artifactId>junit-jupiter-api</artifactId>
107
			<version>${org.junit.jupiter.version}</version>
108
			<scope>test</scope>
109
		</dependency>
110

    
111
		<dependency>
112
			<groupId>org.junit.jupiter</groupId>
113
			<artifactId>junit-jupiter-engine</artifactId>
114
			<version>${org.junit.jupiter.version}</version>
115
			<scope>test</scope>
116
		</dependency>
117

    
118

    
119
		<!-- UI TESTING -->
120
		<dependency>
121
			<groupId>org.seleniumhq.selenium</groupId>
122
			<artifactId>selenium-java</artifactId>
123
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
124
		</dependency>
125

    
126
		<dependency>
127
			<groupId>io.github.bonigarcia</groupId>
128
			<artifactId>webdrivermanager</artifactId>
129
			<version>5.2.0</version>
130
			<scope>test</scope>
131
		</dependency>
132

    
133
		<dependency>
134
			<groupId>org.springframework.security</groupId>
135
			<artifactId>spring-security-test</artifactId>
136
			<scope>test</scope>
137
		</dependency>
138

    
139
	</dependencies>
140

    
141
	<build>
142
		<plugins>
143

    
144
			<plugin>
145
				<groupId>org.springframework.boot</groupId>
146
				<artifactId>spring-boot-maven-plugin</artifactId>
147
			</plugin>
148

    
149
			<plugin>
150
				<groupId>org.apache.maven.plugins</groupId>
151
				<artifactId>maven-surefire-plugin</artifactId>
152
				<version>${org.apache.maven.plugins.version}</version>
153
				<configuration>
154
					<skipTests>false</skipTests>
155
				</configuration>
156
			</plugin>
157

    
158
			<plugin>
159
				<groupId>org.apache.maven.plugins</groupId>
160
				<artifactId>maven-failsafe-plugin</artifactId>
161
				<version>${org.apache.maven.plugins.version}</version>
162
			</plugin>
163

    
164
		</plugins>
165
	</build>
166

    
167
</project>
(7-7/8)