Projekt

Obecné

Profil

Stáhnout (7.79 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.7.18</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

    
81

    
82
		<dependency>
83
			<groupId>org.springframework.boot</groupId>
84
			<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
85
			<version>2.7.5</version>
86
		</dependency>
87

    
88
		<dependency>
89
			<groupId>org.springframework.boot</groupId>
90
			<artifactId>spring-boot-starter-web</artifactId>
91
			<version>2.7.5</version>
92
		</dependency>
93

    
94
		<dependency>
95
			<groupId>org.apache.commons</groupId>
96
			<artifactId>commons-lang3</artifactId>
97
			<version>3.13.0</version>
98
		</dependency>
99

    
100
		<dependency>
101
			<groupId>org.projectlombok</groupId>
102
			<artifactId>lombok</artifactId>
103
			<version>1.18.30</version>
104
			<scope>provided</scope>
105
		</dependency>
106
		<dependency>
107
			<groupId>org.springframework.boot</groupId>
108
			<artifactId>spring-boot-starter</artifactId>
109
		</dependency>
110

    
111

    
112
		<dependency>
113
			<groupId>org.springframework.boot</groupId>
114
			<artifactId>spring-boot-starter-test</artifactId>
115
			<scope>test</scope>
116
		</dependency>
117

    
118
		<dependency>
119
			<groupId>com.mysql</groupId>
120
			<artifactId>mysql-connector-j</artifactId>
121
			<scope>runtime</scope>
122
		</dependency>
123

    
124
		<dependency>
125
			<groupId>org.springframework.boot</groupId>
126
			<artifactId>spring-boot-starter-data-jpa</artifactId>
127
		</dependency>
128

    
129
		<dependency>
130
			<groupId>org.springframework.boot</groupId>
131
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
132
		</dependency>
133

    
134
		<dependency>
135
			<groupId>org.reflections</groupId>
136
			<artifactId>reflections</artifactId>
137
			<version>${org.reflections.version}</version>
138
		</dependency>
139

    
140
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
141
		<dependency>
142
			<groupId>org.jsoup</groupId>
143
			<artifactId>jsoup</artifactId>
144
			<version>${org.jsoup.version}</version>
145
		</dependency>
146

    
147
		<!-- Jackson libraries for parsing json files -->
148
		<dependency>
149
			<groupId>com.fasterxml.jackson.core</groupId>
150
			<artifactId>jackson-core</artifactId>
151
			<version>${com.fasterxml.jackson.core.version}</version>
152
		</dependency>
153

    
154
		<dependency>
155
			<groupId>com.fasterxml.jackson.core</groupId>
156
			<artifactId>jackson-annotations</artifactId>
157
			<version>${com.fasterxml.jackson.core.version}</version>
158
		</dependency>
159

    
160
		<dependency>
161
			<groupId>com.fasterxml.jackson.core</groupId>
162
			<artifactId>jackson-databind</artifactId>
163
			<version>${com.fasterxml.jackson.core.version}</version>
164
		</dependency>
165

    
166
		<!-- Security library -->
167
		<dependency>
168
			<groupId>org.springframework.boot</groupId>
169
			<artifactId>spring-boot-starter-security</artifactId>
170
		</dependency>
171

    
172
		<dependency>
173
			<groupId>org.apache.httpcomponents</groupId>
174
			<artifactId>httpclient</artifactId>
175
		</dependency>
176

    
177
		<!-- Junit libraries for unit tests-->
178
		<dependency>
179
			<groupId>org.junit.platform</groupId>
180
			<artifactId>junit-platform-launcher</artifactId>
181
			<scope>test</scope>
182
		</dependency>
183

    
184
		<dependency>
185
			<groupId>org.junit.jupiter</groupId>
186
			<artifactId>junit-jupiter-engine</artifactId>
187
			<scope>test</scope>
188
		</dependency>
189

    
190
		<dependency>
191
			<groupId>org.junit.vintage</groupId>
192
			<artifactId>junit-vintage-engine</artifactId>
193
			<scope>test</scope>
194
		</dependency>
195

    
196
		<dependency>
197
			<groupId>org.mockito</groupId>
198
			<artifactId>mockito-inline</artifactId>
199
			<version>3.4.6</version>
200
			<scope>test</scope>
201
		</dependency>
202

    
203
		<!-- json library with minimal overhead -->
204
		<dependency>
205
			<groupId>com.googlecode.json-simple</groupId>
206
			<artifactId>json-simple</artifactId>
207
			<version>1.1.1</version>
208
		</dependency>
209

    
210
		<!-- UI TESTING -->
211
		<dependency>
212
			<groupId>org.seleniumhq.selenium</groupId>
213
			<artifactId>selenium-java</artifactId>
214
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
215
		</dependency>
216

    
217
		<dependency>
218
			<groupId>io.github.bonigarcia</groupId>
219
			<artifactId>webdrivermanager</artifactId>
220
			<version>5.2.0</version>
221
			<scope>test</scope>
222
		</dependency>
223

    
224
		<dependency>
225
			<groupId>org.springframework.security</groupId>
226
			<artifactId>spring-security-test</artifactId>
227
			<scope>test</scope>
228
		</dependency>
229

    
230
		<!-- Contract testing -->
231
		<dependency>
232
			<groupId>org.springframework.cloud</groupId>
233
			<artifactId>spring-cloud-starter-contract-verifier</artifactId>
234
			<version>2.1.1.RELEASE</version>
235
			<scope>test</scope>
236
		</dependency>
237

    
238
		<!-- MS SQL Server DataBase -->
239

    
240
		<dependency>
241
			<groupId>com.microsoft.sqlserver</groupId>
242
			<artifactId>mssql-jdbc</artifactId>
243
			<version>12.2.0.jre11</version>
244
		</dependency>
245
        <dependency>
246
            <groupId>com.google.code.gson</groupId>
247
            <artifactId>gson</artifactId>
248
            <version>2.10.1</version>
249
        </dependency>
250

    
251
    </dependencies>
252

    
253
	<build>
254
		<plugins>
255

    
256
			<plugin>
257
				<groupId>org.springframework.boot</groupId>
258
				<artifactId>spring-boot-maven-plugin</artifactId>
259
			</plugin>
260

    
261
			<plugin>
262
				<groupId>org.apache.maven.plugins</groupId>
263
				<artifactId>maven-surefire-plugin</artifactId>
264
				<version>${org.apache.maven.plugins.version}</version>
265
				<configuration>
266
					<skipTests>false</skipTests>
267
				</configuration>
268
			</plugin>
269

    
270
			<plugin>
271
				<groupId>org.apache.maven.plugins</groupId>
272
				<artifactId>maven-failsafe-plugin</artifactId>
273
				<version>${org.apache.maven.plugins.version}</version>
274
			</plugin>
275

    
276
			<plugin>
277
				<groupId>org.springframework.cloud</groupId>
278
				<artifactId>spring-cloud-contract-maven-plugin</artifactId>
279
				<version>${spring-cloud-contract.version}</version>
280
				<extensions>true</extensions>
281
				<configuration>
282
					<testFramework>JUNIT5</testFramework>
283
					<baseClassForTests>
284
						cz.zcu.fav.kiv.antipatterndetectionapp.v2.controller.BaseTest
285
					</baseClassForTests>
286
				</configuration>
287
			</plugin>
288

    
289
		</plugins>
290
	</build>
291

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