Projekt

Obecné

Profil

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

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

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

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

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

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

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

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

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

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

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

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

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

    
101
	<!-- Security library -->
102
		<dependency>
103
			<groupId>org.springframework.boot</groupId>
104
			<artifactId>spring-boot-starter-security</artifactId>
105
		</dependency>
106

    
107

    
108
		<!-- Junit libraries for unit tests-->
109
		<dependency>
110
			<groupId>org.junit.jupiter</groupId>
111
			<artifactId>junit-jupiter-api</artifactId>
112
			<version>${org.junit.jupiter.version}</version>
113
			<scope>test</scope>
114
		</dependency>
115

    
116
		<dependency>
117
			<groupId>org.junit.jupiter</groupId>
118
			<artifactId>junit-jupiter-engine</artifactId>
119
			<version>${org.junit.jupiter.version}</version>
120
			<scope>test</scope>
121
		</dependency>
122

    
123

    
124
		<!-- UI TESTING -->
125
		<dependency>
126
			<groupId>org.seleniumhq.selenium</groupId>
127
			<artifactId>selenium-java</artifactId>
128
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
129
		</dependency>
130

    
131
		<dependency>
132
			<groupId>io.github.bonigarcia</groupId>
133
			<artifactId>webdrivermanager</artifactId>
134
			<version>5.2.0</version>
135
			<scope>test</scope>
136
		</dependency>
137

    
138
		<dependency>
139
			<groupId>org.springframework.security</groupId>
140
			<artifactId>spring-security-test</artifactId>
141
			<scope>test</scope>
142
		</dependency>
143

    
144
	</dependencies>
145

    
146
	<build>
147
		<plugins>
148

    
149
			<plugin>
150
				<groupId>org.springframework.boot</groupId>
151
				<artifactId>spring-boot-maven-plugin</artifactId>
152
			</plugin>
153

    
154
			<plugin>
155
				<groupId>org.apache.maven.plugins</groupId>
156
				<artifactId>maven-surefire-plugin</artifactId>
157
				<version>${org.apache.maven.plugins.version}</version>
158
				<configuration>
159
					<skipTests>false</skipTests>
160
				</configuration>
161
			</plugin>
162

    
163
			<plugin>
164
				<groupId>org.apache.maven.plugins</groupId>
165
				<artifactId>maven-failsafe-plugin</artifactId>
166
				<version>${org.apache.maven.plugins.version}</version>
167
			</plugin>
168

    
169
		</plugins>
170
	</build>
171

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