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
|
<!-- json library with minimal overhead -->
|
124
|
<dependency>
|
125
|
<groupId>com.googlecode.json-simple</groupId>
|
126
|
<artifactId>json-simple</artifactId>
|
127
|
<version>1.1.1</version>
|
128
|
</dependency>
|
129
|
<!-- UI TESTING -->
|
130
|
<dependency>
|
131
|
<groupId>org.seleniumhq.selenium</groupId>
|
132
|
<artifactId>selenium-java</artifactId>
|
133
|
<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
|
134
|
</dependency>
|
135
|
|
136
|
<dependency>
|
137
|
<groupId>io.github.bonigarcia</groupId>
|
138
|
<artifactId>webdrivermanager</artifactId>
|
139
|
<version>5.2.0</version>
|
140
|
<scope>test</scope>
|
141
|
</dependency>
|
142
|
|
143
|
<dependency>
|
144
|
<groupId>org.springframework.security</groupId>
|
145
|
<artifactId>spring-security-test</artifactId>
|
146
|
<scope>test</scope>
|
147
|
</dependency>
|
148
|
<dependency>
|
149
|
<groupId>junit</groupId>
|
150
|
<artifactId>junit</artifactId>
|
151
|
<scope>test</scope>
|
152
|
</dependency>
|
153
|
<dependency>
|
154
|
<groupId>org.mockito</groupId>
|
155
|
<artifactId>mockito-inline</artifactId>
|
156
|
<version>4.3.1</version>
|
157
|
<scope>test</scope>
|
158
|
</dependency>
|
159
|
|
160
|
</dependencies>
|
161
|
|
162
|
<build>
|
163
|
<plugins>
|
164
|
|
165
|
<plugin>
|
166
|
<groupId>org.springframework.boot</groupId>
|
167
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
168
|
</plugin>
|
169
|
|
170
|
<plugin>
|
171
|
<groupId>org.apache.maven.plugins</groupId>
|
172
|
<artifactId>maven-surefire-plugin</artifactId>
|
173
|
<version>${org.apache.maven.plugins.version}</version>
|
174
|
<configuration>
|
175
|
<skipTests>false</skipTests>
|
176
|
</configuration>
|
177
|
</plugin>
|
178
|
|
179
|
<plugin>
|
180
|
<groupId>org.apache.maven.plugins</groupId>
|
181
|
<artifactId>maven-failsafe-plugin</artifactId>
|
182
|
<version>${org.apache.maven.plugins.version}</version>
|
183
|
</plugin>
|
184
|
|
185
|
</plugins>
|
186
|
</build>
|
187
|
|
188
|
</project>
|