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
|
<groupId>cz.zcu.fav.kiv</groupId>
|
12
|
<artifactId>anti-pattern-detection-app</artifactId>
|
13
|
<version>1.0.0</version>
|
14
|
<packaging>war</packaging>
|
15
|
<name>anti-pattern-detection-app</name>
|
16
|
<description>Basic web application for anti pattern detection</description>
|
17
|
<properties>
|
18
|
<java.version>11</java.version>
|
19
|
</properties>
|
20
|
<dependencies>
|
21
|
<dependency>
|
22
|
<groupId>org.springframework.boot</groupId>
|
23
|
<artifactId>spring-boot-starter</artifactId>
|
24
|
</dependency>
|
25
|
|
26
|
<dependency>
|
27
|
<groupId>org.springframework.boot</groupId>
|
28
|
<artifactId>spring-boot-starter-test</artifactId>
|
29
|
<scope>test</scope>
|
30
|
</dependency>
|
31
|
<dependency>
|
32
|
<groupId>org.springframework.boot</groupId>
|
33
|
<artifactId>spring-boot-starter-web</artifactId>
|
34
|
</dependency>
|
35
|
<dependency>
|
36
|
<groupId>mysql</groupId>
|
37
|
<artifactId>mysql-connector-java</artifactId>
|
38
|
<scope>runtime</scope>
|
39
|
</dependency>
|
40
|
<dependency>
|
41
|
<groupId>org.springframework.boot</groupId>
|
42
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.springframework.boot</groupId>
|
46
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
47
|
</dependency>
|
48
|
<dependency>
|
49
|
<groupId>org.reflections</groupId>
|
50
|
<artifactId>reflections</artifactId>
|
51
|
<version>0.9.12</version>
|
52
|
</dependency>
|
53
|
</dependencies>
|
54
|
|
55
|
<build>
|
56
|
<plugins>
|
57
|
<plugin>
|
58
|
<groupId>org.springframework.boot</groupId>
|
59
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
60
|
</plugin>
|
61
|
</plugins>
|
62
|
<resources>
|
63
|
<resource>
|
64
|
<directory>src/main/java/resources</directory>
|
65
|
<includes>
|
66
|
<include>queries/*.sql</include>
|
67
|
</includes>
|
68
|
</resource>
|
69
|
</resources>
|
70
|
</build>
|
71
|
|
72
|
</project>
|