Projekt

Obecné

Profil

Stáhnout (3.27 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
	<groupId>cz.zcu.fav.kiv</groupId>
12
	<artifactId>anti-pattern-detection-app</artifactId>
13
	<version>1.0.0</version>
14
	<packaging>war</packaging>
15
	<name>anti-pattern-detection-app</name>
16
	<description>Basic web application for anti pattern detection</description>
17
	<properties>
18
		<java.version>11</java.version>
19
	</properties>
20
	<dependencies>
21
		<dependency>
22
			<groupId>org.springframework.boot</groupId>
23
			<artifactId>spring-boot-starter</artifactId>
24
		</dependency>
25

    
26
		<dependency>
27
			<groupId>org.springframework.boot</groupId>
28
			<artifactId>spring-boot-starter-test</artifactId>
29
			<scope>test</scope>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.springframework.boot</groupId>
33
			<artifactId>spring-boot-starter-web</artifactId>
34
		</dependency>
35
		<dependency>
36
			<groupId>mysql</groupId>
37
			<artifactId>mysql-connector-java</artifactId>
38
			<scope>runtime</scope>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.springframework.boot</groupId>
42
			<artifactId>spring-boot-starter-data-jpa</artifactId>
43
		</dependency>
44
		<dependency>
45
			<groupId>org.springframework.boot</groupId>
46
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.reflections</groupId>
50
			<artifactId>reflections</artifactId>
51
			<version>0.9.12</version>
52
		</dependency>
53
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
54
		<dependency>
55
			<groupId>org.jsoup</groupId>
56
			<artifactId>jsoup</artifactId>
57
			<version>1.14.3</version>
58
		</dependency>
59
		<!-- Jackson libraries for parsing json files -->
60
		<dependency>
61
			<groupId>com.fasterxml.jackson.core</groupId>
62
			<artifactId>jackson-core</artifactId>
63
			<version>2.13.2</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>com.fasterxml.jackson.core</groupId>
67
			<artifactId>jackson-databind</artifactId>
68
			<version>2.13.2</version>
69
		</dependency>
70
		<dependency>
71
			<groupId>com.fasterxml.jackson.core</groupId>
72
			<artifactId>jackson-annotations</artifactId>
73
			<version>2.13.2</version>
74
		</dependency>
75
		<!-- Junit libraries for unit tests-->
76
		<dependency>
77
			<groupId>org.junit.jupiter</groupId>
78
			<artifactId>junit-jupiter-api</artifactId>
79
			<version>5.4.0</version>
80
			<scope>test</scope>
81
		</dependency>
82
		<dependency>
83
			<groupId>org.junit.jupiter</groupId>
84
			<artifactId>junit-jupiter-engine</artifactId>
85
			<version>5.4.0</version>
86
			<scope>test</scope>
87
		</dependency>
88
	</dependencies>
89

    
90
	<build>
91
		<plugins>
92
			<plugin>
93
				<groupId>org.springframework.boot</groupId>
94
				<artifactId>spring-boot-maven-plugin</artifactId>
95
			</plugin>
96
			<plugin>
97
				<artifactId>maven-surefire-plugin</artifactId>
98
				<version>2.22.0</version>
99
				<configuration>
100
					<skipTests>false</skipTests>
101
				</configuration>
102
			</plugin>
103
			<plugin>
104
				<artifactId>maven-failsafe-plugin</artifactId>
105
				<version>2.22.0</version>
106
			</plugin>
107
		</plugins>
108
	</build>
109

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