Projekt

Obecné

Profil

Stáhnout (6.52 KB) Statistiky
| Větev: | Tag: | Revize:
1 4d4cc0e4 Ondřej Váně
<?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 7011e007 Petr Urban
	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 91476843 Hrabikv
		<org.junit.jupiter.version>5.9.1</org.junit.jupiter.version>
26 7011e007 Petr Urban
		<org.apache.maven.plugins.version>3.0.0-M7</org.apache.maven.plugins.version>
27 f80fcfd7 Hrabikv
		<spring-cloud-contract.version>3.0.3</spring-cloud-contract.version>
28 7011e007 Petr Urban
	</properties>
29
30 91476843 Hrabikv
	<dependencyManagement>
31
		<dependencies>
32
			<dependency>
33
				<groupId>org.junit</groupId>
34
				<artifactId>junit-bom</artifactId>
35
				<version>5.9.3</version>
36
				<type>pom</type>
37
				<scope>import</scope>
38
			</dependency>
39
		</dependencies>
40
	</dependencyManagement>
41 7011e007 Petr Urban
42 91476843 Hrabikv
	<dependencies>
43 94cc7ade Petr Urban
44 7011e007 Petr Urban
		<dependency>
45
			<groupId>org.springframework.boot</groupId>
46
			<artifactId>spring-boot-starter</artifactId>
47
		</dependency>
48
49
		<dependency>
50
			<groupId>org.springframework.boot</groupId>
51
			<artifactId>spring-boot-starter-test</artifactId>
52
			<scope>test</scope>
53
		</dependency>
54
55
		<dependency>
56
			<groupId>org.springframework.boot</groupId>
57
			<artifactId>spring-boot-starter-web</artifactId>
58
		</dependency>
59
60 f80fcfd7 Hrabikv
		<dependency>
61
			<groupId>org.springframework.security</groupId>
62
			<artifactId>spring-security-web</artifactId>
63
		</dependency>
64 7011e007 Petr Urban
65
		<dependency>
66
			<groupId>mysql</groupId>
67
			<artifactId>mysql-connector-java</artifactId>
68
			<scope>runtime</scope>
69
		</dependency>
70
71
		<dependency>
72
			<groupId>org.springframework.boot</groupId>
73
			<artifactId>spring-boot-starter-data-jpa</artifactId>
74
		</dependency>
75
76
		<dependency>
77
			<groupId>org.springframework.boot</groupId>
78
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
79
		</dependency>
80
81
		<dependency>
82
			<groupId>org.reflections</groupId>
83
			<artifactId>reflections</artifactId>
84
			<version>${org.reflections.version}</version>
85
		</dependency>
86
87
		<!-- jsoup HTML parser library @ https://jsoup.org/ -->
88
		<dependency>
89
			<groupId>org.jsoup</groupId>
90
			<artifactId>jsoup</artifactId>
91
			<version>${org.jsoup.version}</version>
92
		</dependency>
93
94
		<!-- Jackson libraries for parsing json files -->
95
		<dependency>
96
			<groupId>com.fasterxml.jackson.core</groupId>
97
			<artifactId>jackson-core</artifactId>
98
			<version>${com.fasterxml.jackson.core.version}</version>
99
		</dependency>
100
101
		<dependency>
102
			<groupId>com.fasterxml.jackson.core</groupId>
103
			<artifactId>jackson-annotations</artifactId>
104
			<version>${com.fasterxml.jackson.core.version}</version>
105
		</dependency>
106
107
		<dependency>
108
			<groupId>com.fasterxml.jackson.core</groupId>
109
			<artifactId>jackson-databind</artifactId>
110
			<version>${com.fasterxml.jackson.core.version}</version>
111
		</dependency>
112 d438fc1e Petr Urban
113 f80fcfd7 Hrabikv
		<!-- Security library -->
114 1c632f96 Jiri Trefil
		<dependency>
115
			<groupId>org.springframework.boot</groupId>
116
			<artifactId>spring-boot-starter-security</artifactId>
117
		</dependency>
118 d60d25d0 Jiri Trefil
119 7f0e1a0c Jiri Trefil
		<dependency>
120
			<groupId>org.apache.httpcomponents</groupId>
121
			<artifactId>httpclient</artifactId>
122
		</dependency>
123 f80fcfd7 Hrabikv
124 912e76c4 stepanekp
		<!-- Junit libraries for unit tests-->
125
		<dependency>
126 91476843 Hrabikv
			<groupId>org.junit.platform</groupId>
127
			<artifactId>junit-platform-launcher</artifactId>
128 912e76c4 stepanekp
			<scope>test</scope>
129
		</dependency>
130 d438fc1e Petr Urban
131 7011e007 Petr Urban
		<dependency>
132
			<groupId>org.junit.jupiter</groupId>
133
			<artifactId>junit-jupiter-engine</artifactId>
134 91476843 Hrabikv
			<scope>test</scope>
135
		</dependency>
136
137
		<dependency>
138
			<groupId>org.junit.vintage</groupId>
139
			<artifactId>junit-vintage-engine</artifactId>
140 7011e007 Petr Urban
			<scope>test</scope>
141
		</dependency>
142 a885eacd Jiri Trefil
		<!-- json library with minimal overhead -->
143
		<dependency>
144
			<groupId>com.googlecode.json-simple</groupId>
145
			<artifactId>json-simple</artifactId>
146
			<version>1.1.1</version>
147
		</dependency>
148 f80fcfd7 Hrabikv
149 7011e007 Petr Urban
		<!-- UI TESTING -->
150
		<dependency>
151
			<groupId>org.seleniumhq.selenium</groupId>
152
			<artifactId>selenium-java</artifactId>
153
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
154
		</dependency>
155 d438fc1e Petr Urban
156 2739d159 Petr Urban
		<dependency>
157
			<groupId>io.github.bonigarcia</groupId>
158
			<artifactId>webdrivermanager</artifactId>
159
			<version>5.2.0</version>
160
			<scope>test</scope>
161
		</dependency>
162 7011e007 Petr Urban
163 d60d25d0 Jiri Trefil
		<dependency>
164
			<groupId>org.springframework.security</groupId>
165
			<artifactId>spring-security-test</artifactId>
166
			<scope>test</scope>
167
		</dependency>
168 7011e007 Petr Urban
169 f80fcfd7 Hrabikv
		<!-- Contract testing -->
170
		<dependency>
171
			<groupId>org.springframework.cloud</groupId>
172
			<artifactId>spring-cloud-starter-contract-verifier</artifactId>
173
			<version>2.1.1.RELEASE</version>
174
			<scope>test</scope>
175
		</dependency>
176
177 91476843 Hrabikv
		<!-- MS SQL Server DataBase -->
178
179 1261b96f stepanekp
		<dependency>
180
			<groupId>com.microsoft.sqlserver</groupId>
181
			<artifactId>mssql-jdbc</artifactId>
182
			<version>12.2.0.jre11</version>
183
		</dependency>
184 44765e5e Petr Urban
        <dependency>
185
            <groupId>com.google.code.gson</groupId>
186
            <artifactId>gson</artifactId>
187
            <version>2.10.1</version>
188
        </dependency>
189 1261b96f stepanekp
190 44765e5e Petr Urban
    </dependencies>
191 7011e007 Petr Urban
192
	<build>
193
		<plugins>
194
195
			<plugin>
196
				<groupId>org.springframework.boot</groupId>
197
				<artifactId>spring-boot-maven-plugin</artifactId>
198
			</plugin>
199
200
			<plugin>
201
				<groupId>org.apache.maven.plugins</groupId>
202
				<artifactId>maven-surefire-plugin</artifactId>
203
				<version>${org.apache.maven.plugins.version}</version>
204
				<configuration>
205
					<skipTests>false</skipTests>
206
				</configuration>
207
			</plugin>
208
209
			<plugin>
210
				<groupId>org.apache.maven.plugins</groupId>
211
				<artifactId>maven-failsafe-plugin</artifactId>
212
				<version>${org.apache.maven.plugins.version}</version>
213
			</plugin>
214
215 f80fcfd7 Hrabikv
			<plugin>
216
				<groupId>org.springframework.cloud</groupId>
217
				<artifactId>spring-cloud-contract-maven-plugin</artifactId>
218
				<version>${spring-cloud-contract.version}</version>
219
				<extensions>true</extensions>
220
				<configuration>
221
					<testFramework>JUNIT5</testFramework>
222
					<baseClassForTests>
223
						cz.zcu.fav.kiv.antipatterndetectionapp.v2.controller.BaseTest
224
					</baseClassForTests>
225
				</configuration>
226
			</plugin>
227
228 7011e007 Petr Urban
		</plugins>
229
	</build>
230 4d4cc0e4 Ondřej Váně
231
</project>