Projekt

Obecné

Profil

Stáhnout (7.42 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

    
81
		<dependency>
82
			<groupId>org.springframework.boot</groupId>
83
			<artifactId>spring-boot-starter</artifactId>
84
		</dependency>
85

    
86
		<dependency>
87
			<groupId>org.springframework.boot</groupId>
88
			<artifactId>spring-boot-starter-test</artifactId>
89
			<scope>test</scope>
90
		</dependency>
91

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

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

    
102
		<dependency>
103
			<groupId>mysql</groupId>
104
			<artifactId>mysql-connector-java</artifactId>
105
			<scope>runtime</scope>
106
		</dependency>
107

    
108
		<dependency>
109
			<groupId>org.springframework.boot</groupId>
110
			<artifactId>spring-boot-starter-data-jpa</artifactId>
111
		</dependency>
112

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

    
118
		<dependency>
119
			<groupId>org.reflections</groupId>
120
			<artifactId>reflections</artifactId>
121
			<version>${org.reflections.version}</version>
122
		</dependency>
123

    
124
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
125
		<dependency>
126
			<groupId>org.jsoup</groupId>
127
			<artifactId>jsoup</artifactId>
128
			<version>${org.jsoup.version}</version>
129
		</dependency>
130

    
131
		<!-- Jackson libraries for parsing json files -->
132
		<dependency>
133
			<groupId>com.fasterxml.jackson.core</groupId>
134
			<artifactId>jackson-core</artifactId>
135
			<version>${com.fasterxml.jackson.core.version}</version>
136
		</dependency>
137

    
138
		<dependency>
139
			<groupId>com.fasterxml.jackson.core</groupId>
140
			<artifactId>jackson-annotations</artifactId>
141
			<version>${com.fasterxml.jackson.core.version}</version>
142
		</dependency>
143

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

    
150
		<!-- Security library -->
151
		<dependency>
152
			<groupId>org.springframework.boot</groupId>
153
			<artifactId>spring-boot-starter-security</artifactId>
154
		</dependency>
155

    
156
		<dependency>
157
			<groupId>org.apache.httpcomponents</groupId>
158
			<artifactId>httpclient</artifactId>
159
		</dependency>
160

    
161
		<!-- Junit libraries for unit tests-->
162
		<dependency>
163
			<groupId>org.junit.platform</groupId>
164
			<artifactId>junit-platform-launcher</artifactId>
165
			<scope>test</scope>
166
		</dependency>
167

    
168
		<dependency>
169
			<groupId>org.junit.jupiter</groupId>
170
			<artifactId>junit-jupiter-engine</artifactId>
171
			<scope>test</scope>
172
		</dependency>
173

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

    
180
		<dependency>
181
			<groupId>org.mockito</groupId>
182
			<artifactId>mockito-inline</artifactId>
183
			<version>3.4.6</version>
184
			<scope>test</scope>
185
		</dependency>
186

    
187
		<!-- json library with minimal overhead -->
188
		<dependency>
189
			<groupId>com.googlecode.json-simple</groupId>
190
			<artifactId>json-simple</artifactId>
191
			<version>1.1.1</version>
192
		</dependency>
193

    
194
		<!-- UI TESTING -->
195
		<dependency>
196
			<groupId>org.seleniumhq.selenium</groupId>
197
			<artifactId>selenium-java</artifactId>
198
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
199
		</dependency>
200

    
201
		<dependency>
202
			<groupId>io.github.bonigarcia</groupId>
203
			<artifactId>webdrivermanager</artifactId>
204
			<version>5.2.0</version>
205
			<scope>test</scope>
206
		</dependency>
207

    
208
		<dependency>
209
			<groupId>org.springframework.security</groupId>
210
			<artifactId>spring-security-test</artifactId>
211
			<scope>test</scope>
212
		</dependency>
213

    
214
		<!-- Contract testing -->
215
		<dependency>
216
			<groupId>org.springframework.cloud</groupId>
217
			<artifactId>spring-cloud-starter-contract-verifier</artifactId>
218
			<version>2.1.1.RELEASE</version>
219
			<scope>test</scope>
220
		</dependency>
221

    
222
		<!-- MS SQL Server DataBase -->
223

    
224
		<dependency>
225
			<groupId>com.microsoft.sqlserver</groupId>
226
			<artifactId>mssql-jdbc</artifactId>
227
			<version>12.2.0.jre11</version>
228
		</dependency>
229
        <dependency>
230
            <groupId>com.google.code.gson</groupId>
231
            <artifactId>gson</artifactId>
232
            <version>2.10.1</version>
233
        </dependency>
234

    
235
    </dependencies>
236

    
237
	<build>
238
		<plugins>
239

    
240
			<plugin>
241
				<groupId>org.springframework.boot</groupId>
242
				<artifactId>spring-boot-maven-plugin</artifactId>
243
			</plugin>
244

    
245
			<plugin>
246
				<groupId>org.apache.maven.plugins</groupId>
247
				<artifactId>maven-surefire-plugin</artifactId>
248
				<version>${org.apache.maven.plugins.version}</version>
249
				<configuration>
250
					<skipTests>false</skipTests>
251
				</configuration>
252
			</plugin>
253

    
254
			<plugin>
255
				<groupId>org.apache.maven.plugins</groupId>
256
				<artifactId>maven-failsafe-plugin</artifactId>
257
				<version>${org.apache.maven.plugins.version}</version>
258
			</plugin>
259

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

    
273
		</plugins>
274
	</build>
275

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