Projekt

Obecné

Profil

Stáhnout (7.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>2.0.0</version>
15
	<packaging>war</packaging>
16
	<name>anti-pattern-detection-app</name>
17
	<description>RESTful application for anti pattern detection</description>
18
	<developers>
19
		<developer>
20
			<name>Petr Urban</name>
21
			<email>urbanp@students.zcu.cz</email>
22
			<roles>
23
				<role>Fullstack developer</role>
24
				<role>Team leader</role>
25
			</roles>
26
		</developer>
27

    
28
		<developer>
29
			<name>Jiří Trefil</name>
30
			<email>trefil@students.zcu.cz</email>
31
			<roles>
32
				<role>Fullstack developer</role>
33
			</roles>
34
		</developer>
35

    
36
		<developer>
37
			<name>Petr Štěpánek</name>
38
			<email>petrs1@students.zcu.cz</email>
39
			<roles>
40
				<role>Frontend developer</role>
41
				<role>Database plumber</role>
42
			</roles>
43
		</developer>
44

    
45
		<developer>
46
			<name>Václav Hrabík</name>
47
			<email>hrabikv@students.zcu.cz</email>
48
			<roles>
49
				<role>TESTER</role>
50
				<role>Backend developer</role>
51

    
52
			</roles>
53
		</developer>
54

    
55
	</developers>
56
	<properties>
57
		<java.version>11</java.version>
58
		<spring.boot.version>2.6.9</spring.boot.version>
59
		<org.reflections.version>0.10.2</org.reflections.version>
60
		<org.jsoup.version>1.15.2</org.jsoup.version>
61
		<com.fasterxml.jackson.core.version>2.13.3</com.fasterxml.jackson.core.version>
62
		<org.junit.jupiter.version>5.9.1</org.junit.jupiter.version>
63
		<org.apache.maven.plugins.version>3.0.0-M7</org.apache.maven.plugins.version>
64
		<spring-cloud-contract.version>3.0.3</spring-cloud-contract.version>
65
	</properties>
66

    
67
	<dependencyManagement>
68
		<dependencies>
69
			<dependency>
70
				<groupId>org.junit</groupId>
71
				<artifactId>junit-bom</artifactId>
72
				<version>5.9.3</version>
73
				<type>pom</type>
74
				<scope>import</scope>
75
			</dependency>
76
		</dependencies>
77
	</dependencyManagement>
78

    
79
	<dependencies>
80
		<dependency>
81
			<groupId>org.projectlombok</groupId>
82
			<artifactId>lombok</artifactId>
83
			<version>1.18.30</version>
84
			<scope>provided</scope>
85
		</dependency>
86
		<dependency>
87
			<groupId>org.springframework.boot</groupId>
88
			<artifactId>spring-boot-starter</artifactId>
89
		</dependency>
90

    
91
		<dependency>
92
			<groupId>org.springframework.boot</groupId>
93
			<artifactId>spring-boot-starter-test</artifactId>
94
			<scope>test</scope>
95
		</dependency>
96

    
97
		<dependency>
98
			<groupId>org.springframework.boot</groupId>
99
			<artifactId>spring-boot-starter-web</artifactId>
100
		</dependency>
101

    
102
		<dependency>
103
			<groupId>org.springframework.security</groupId>
104
			<artifactId>spring-security-web</artifactId>
105
		</dependency>
106

    
107
		<dependency>
108
			<groupId>mysql</groupId>
109
			<artifactId>mysql-connector-java</artifactId>
110
			<scope>runtime</scope>
111
		</dependency>
112

    
113
		<dependency>
114
			<groupId>org.springframework.boot</groupId>
115
			<artifactId>spring-boot-starter-data-jpa</artifactId>
116
		</dependency>
117

    
118
		<dependency>
119
			<groupId>org.springframework.boot</groupId>
120
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
121
		</dependency>
122

    
123
		<dependency>
124
			<groupId>org.reflections</groupId>
125
			<artifactId>reflections</artifactId>
126
			<version>${org.reflections.version}</version>
127
		</dependency>
128

    
129
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
130
		<dependency>
131
			<groupId>org.jsoup</groupId>
132
			<artifactId>jsoup</artifactId>
133
			<version>${org.jsoup.version}</version>
134
		</dependency>
135

    
136
		<!-- Jackson libraries for parsing json files -->
137
		<dependency>
138
			<groupId>com.fasterxml.jackson.core</groupId>
139
			<artifactId>jackson-core</artifactId>
140
			<version>${com.fasterxml.jackson.core.version}</version>
141
		</dependency>
142

    
143
		<dependency>
144
			<groupId>com.fasterxml.jackson.core</groupId>
145
			<artifactId>jackson-annotations</artifactId>
146
			<version>${com.fasterxml.jackson.core.version}</version>
147
		</dependency>
148

    
149
		<dependency>
150
			<groupId>com.fasterxml.jackson.core</groupId>
151
			<artifactId>jackson-databind</artifactId>
152
			<version>${com.fasterxml.jackson.core.version}</version>
153
		</dependency>
154

    
155
		<!-- Security library -->
156
		<dependency>
157
			<groupId>org.springframework.boot</groupId>
158
			<artifactId>spring-boot-starter-security</artifactId>
159
		</dependency>
160

    
161
		<dependency>
162
			<groupId>org.apache.httpcomponents</groupId>
163
			<artifactId>httpclient</artifactId>
164
		</dependency>
165

    
166
		<!-- Junit libraries for unit tests-->
167
		<dependency>
168
			<groupId>org.junit.platform</groupId>
169
			<artifactId>junit-platform-launcher</artifactId>
170
			<scope>test</scope>
171
		</dependency>
172

    
173
		<dependency>
174
			<groupId>org.junit.jupiter</groupId>
175
			<artifactId>junit-jupiter-engine</artifactId>
176
			<scope>test</scope>
177
		</dependency>
178

    
179
		<dependency>
180
			<groupId>org.junit.vintage</groupId>
181
			<artifactId>junit-vintage-engine</artifactId>
182
			<scope>test</scope>
183
		</dependency>
184

    
185
		<dependency>
186
			<groupId>org.mockito</groupId>
187
			<artifactId>mockito-inline</artifactId>
188
			<version>3.4.6</version>
189
			<scope>test</scope>
190
		</dependency>
191

    
192
		<!-- json library with minimal overhead -->
193
		<dependency>
194
			<groupId>com.googlecode.json-simple</groupId>
195
			<artifactId>json-simple</artifactId>
196
			<version>1.1.1</version>
197
		</dependency>
198

    
199
		<!-- UI TESTING -->
200
		<dependency>
201
			<groupId>org.seleniumhq.selenium</groupId>
202
			<artifactId>selenium-java</artifactId>
203
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
204
		</dependency>
205

    
206
		<dependency>
207
			<groupId>io.github.bonigarcia</groupId>
208
			<artifactId>webdrivermanager</artifactId>
209
			<version>5.2.0</version>
210
			<scope>test</scope>
211
		</dependency>
212

    
213
		<dependency>
214
			<groupId>org.springframework.security</groupId>
215
			<artifactId>spring-security-test</artifactId>
216
			<scope>test</scope>
217
		</dependency>
218

    
219
		<!-- Contract testing -->
220
		<dependency>
221
			<groupId>org.springframework.cloud</groupId>
222
			<artifactId>spring-cloud-starter-contract-verifier</artifactId>
223
			<version>2.1.1.RELEASE</version>
224
			<scope>test</scope>
225
		</dependency>
226

    
227
		<!-- MS SQL Server DataBase -->
228

    
229
		<dependency>
230
			<groupId>com.microsoft.sqlserver</groupId>
231
			<artifactId>mssql-jdbc</artifactId>
232
			<version>12.2.0.jre11</version>
233
		</dependency>
234
        <dependency>
235
            <groupId>com.google.code.gson</groupId>
236
            <artifactId>gson</artifactId>
237
            <version>2.10.1</version>
238
        </dependency>
239

    
240
    </dependencies>
241

    
242
	<build>
243
		<plugins>
244

    
245
			<plugin>
246
				<groupId>org.springframework.boot</groupId>
247
				<artifactId>spring-boot-maven-plugin</artifactId>
248
			</plugin>
249

    
250
			<plugin>
251
				<groupId>org.apache.maven.plugins</groupId>
252
				<artifactId>maven-surefire-plugin</artifactId>
253
				<version>${org.apache.maven.plugins.version}</version>
254
				<configuration>
255
					<skipTests>false</skipTests>
256
				</configuration>
257
			</plugin>
258

    
259
			<plugin>
260
				<groupId>org.apache.maven.plugins</groupId>
261
				<artifactId>maven-failsafe-plugin</artifactId>
262
				<version>${org.apache.maven.plugins.version}</version>
263
			</plugin>
264

    
265
			<plugin>
266
				<groupId>org.springframework.cloud</groupId>
267
				<artifactId>spring-cloud-contract-maven-plugin</artifactId>
268
				<version>${spring-cloud-contract.version}</version>
269
				<extensions>true</extensions>
270
				<configuration>
271
					<testFramework>JUNIT5</testFramework>
272
					<baseClassForTests>
273
						cz.zcu.fav.kiv.antipatterndetectionapp.v2.controller.BaseTest
274
					</baseClassForTests>
275
				</configuration>
276
			</plugin>
277

    
278
		</plugins>
279
	</build>
280

    
281
</project>
(7-7/9)