Projekt

Obecné

Profil

Stáhnout (4.39 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
		<!-- Junit libraries for unit tests-->
97
		<dependency>
98
			<groupId>org.junit.jupiter</groupId>
99
			<artifactId>junit-jupiter-api</artifactId>
100
			<version>${org.junit.jupiter.version}</version>
101
			<scope>test</scope>
102
		</dependency>
103

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

    
111

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

    
119
		<dependency>
120
			<groupId>io.github.bonigarcia</groupId>
121
			<artifactId>webdrivermanager</artifactId>
122
			<version>5.2.0</version>
123
			<scope>test</scope>
124
		</dependency>
125

    
126
	</dependencies>
127

    
128
	<build>
129
		<plugins>
130

    
131
			<plugin>
132
				<groupId>org.springframework.boot</groupId>
133
				<artifactId>spring-boot-maven-plugin</artifactId>
134
			</plugin>
135

    
136
			<plugin>
137
				<groupId>org.apache.maven.plugins</groupId>
138
				<artifactId>maven-surefire-plugin</artifactId>
139
				<version>${org.apache.maven.plugins.version}</version>
140
				<configuration>
141
					<skipTests>false</skipTests>
142
				</configuration>
143
			</plugin>
144

    
145
			<plugin>
146
				<groupId>org.apache.maven.plugins</groupId>
147
				<artifactId>maven-failsafe-plugin</artifactId>
148
				<version>${org.apache.maven.plugins.version}</version>
149
			</plugin>
150

    
151
		</plugins>
152
	</build>
153

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