Projekt

Obecné

Profil

Stáhnout (5.48 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>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
		<dependency>
108
			<groupId>org.apache.httpcomponents</groupId>
109
			<artifactId>httpclient</artifactId>
110
		</dependency>
111
		<!-- Junit libraries for unit tests-->
112
		<dependency>
113
			<groupId>org.junit.jupiter</groupId>
114
			<artifactId>junit-jupiter-api</artifactId>
115
			<version>${org.junit.jupiter.version}</version>
116
			<scope>test</scope>
117
		</dependency>
118

    
119
		<dependency>
120
			<groupId>org.junit.jupiter</groupId>
121
			<artifactId>junit-jupiter-engine</artifactId>
122
			<version>${org.junit.jupiter.version}</version>
123
			<scope>test</scope>
124
		</dependency>
125

    
126
		<!-- json library with minimal overhead -->
127
		<dependency>
128
			<groupId>com.googlecode.json-simple</groupId>
129
			<artifactId>json-simple</artifactId>
130
			<version>1.1.1</version>
131
		</dependency>
132
		<!-- UI TESTING -->
133
		<dependency>
134
			<groupId>org.seleniumhq.selenium</groupId>
135
			<artifactId>selenium-java</artifactId>
136
			<version>3.141.59</version> <!-- HIGHER VERSION 4+ are not compatible with webdrivermanager plugin -->
137
		</dependency>
138

    
139
		<dependency>
140
			<groupId>io.github.bonigarcia</groupId>
141
			<artifactId>webdrivermanager</artifactId>
142
			<version>5.2.0</version>
143
			<scope>test</scope>
144
		</dependency>
145

    
146
		<dependency>
147
			<groupId>org.springframework.security</groupId>
148
			<artifactId>spring-security-test</artifactId>
149
			<scope>test</scope>
150
		</dependency>
151
        <dependency>
152
            <groupId>junit</groupId>
153
            <artifactId>junit</artifactId>
154
            <scope>test</scope>
155
        </dependency>
156
		<dependency>
157
			<groupId>org.mockito</groupId>
158
			<artifactId>mockito-inline</artifactId>
159
			<version>4.3.1</version>
160
			<scope>test</scope>
161
		</dependency>
162

    
163
    </dependencies>
164

    
165
	<build>
166
		<plugins>
167

    
168
			<plugin>
169
				<groupId>org.springframework.boot</groupId>
170
				<artifactId>spring-boot-maven-plugin</artifactId>
171
			</plugin>
172

    
173
			<plugin>
174
				<groupId>org.apache.maven.plugins</groupId>
175
				<artifactId>maven-surefire-plugin</artifactId>
176
				<version>${org.apache.maven.plugins.version}</version>
177
				<configuration>
178
					<skipTests>false</skipTests>
179
				</configuration>
180
			</plugin>
181

    
182
			<plugin>
183
				<groupId>org.apache.maven.plugins</groupId>
184
				<artifactId>maven-failsafe-plugin</artifactId>
185
				<version>${org.apache.maven.plugins.version}</version>
186
			</plugin>
187

    
188
		</plugins>
189
	</build>
190

    
191
</project>
(7-7/8)