Projekt

Obecné

Profil

Stáhnout (4.57 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>mysql</groupId>
49
			<artifactId>mysql-connector-java</artifactId>
50
			<scope>runtime</scope>
51
		</dependency>
52

    
53
		<dependency>
54
			<groupId>org.springframework.boot</groupId>
55
			<artifactId>spring-boot-starter-data-jpa</artifactId>
56
		</dependency>
57

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

    
63
		<dependency>
64
			<groupId>org.reflections</groupId>
65
			<artifactId>reflections</artifactId>
66
			<version>${org.reflections.version}</version>
67
		</dependency>
68

    
69
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
70
		<dependency>
71
			<groupId>org.jsoup</groupId>
72
			<artifactId>jsoup</artifactId>
73
			<version>${org.jsoup.version}</version>
74
		</dependency>
75

    
76
		<!-- Jackson libraries for parsing json files -->
77
		<dependency>
78
			<groupId>com.fasterxml.jackson.core</groupId>
79
			<artifactId>jackson-core</artifactId>
80
			<version>${com.fasterxml.jackson.core.version}</version>
81
		</dependency>
82

    
83
		<dependency>
84
			<groupId>com.fasterxml.jackson.core</groupId>
85
			<artifactId>jackson-annotations</artifactId>
86
			<version>${com.fasterxml.jackson.core.version}</version>
87
		</dependency>
88

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

    
95

    
96

    
97

    
98
		<!-- Junit libraries for unit tests-->
99
		<dependency>
100
			<groupId>org.junit.jupiter</groupId>
101
			<artifactId>junit-jupiter-api</artifactId>
102
			<version>${org.junit.jupiter.version}</version>
103
			<scope>test</scope>
104
		</dependency>
105

    
106
		<dependency>
107
			<groupId>org.junit.jupiter</groupId>
108
			<artifactId>junit-jupiter-engine</artifactId>
109
			<version>${org.junit.jupiter.version}</version>
110
			<scope>test</scope>
111
		</dependency>
112

    
113

    
114
		<!-- UI TESTING -->
115
		<dependency>
116
			<groupId>org.seleniumhq.selenium</groupId>
117
			<artifactId>selenium-java</artifactId>
118
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
119
		</dependency>
120

    
121
		<dependency>
122
			<groupId>io.github.bonigarcia</groupId>
123
			<artifactId>webdrivermanager</artifactId>
124
			<version>5.2.0</version>
125
			<scope>test</scope>
126
		</dependency>
127
		<!-- Spring TESTING -->
128
		<dependency>
129
			<groupId>org.springframework.security</groupId>
130
			<artifactId>spring-security-test</artifactId>
131
			<scope>test</scope>
132
		</dependency>
133

    
134
	</dependencies>
135

    
136
	<build>
137
		<plugins>
138

    
139
			<plugin>
140
				<groupId>org.springframework.boot</groupId>
141
				<artifactId>spring-boot-maven-plugin</artifactId>
142
			</plugin>
143

    
144
			<plugin>
145
				<groupId>org.apache.maven.plugins</groupId>
146
				<artifactId>maven-surefire-plugin</artifactId>
147
				<version>${org.apache.maven.plugins.version}</version>
148
				<configuration>
149
					<skipTests>false</skipTests>
150
				</configuration>
151
			</plugin>
152

    
153
			<plugin>
154
				<groupId>org.apache.maven.plugins</groupId>
155
				<artifactId>maven-failsafe-plugin</artifactId>
156
				<version>${org.apache.maven.plugins.version}</version>
157
			</plugin>
158

    
159
		</plugins>
160
	</build>
161

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