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 |
|
|
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 |
f5b61793
|
Ondřej Váně
|
<version>1.0.0</version>
|
14 |
4d4cc0e4
|
Ondřej Váně
|
<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 |
2964b75c
|
Ondřej Váně
|
<artifactId>spring-boot-starter</artifactId>
|
24 |
4d4cc0e4
|
Ondřej Váně
|
</dependency>
|
25 |
|
|
|
26 |
|
|
<dependency>
|
27 |
|
|
<groupId>org.springframework.boot</groupId>
|
28 |
2964b75c
|
Ondřej Váně
|
<artifactId>spring-boot-starter-test</artifactId>
|
29 |
|
|
<scope>test</scope>
|
30 |
4d4cc0e4
|
Ondřej Váně
|
</dependency>
|
31 |
|
|
<dependency>
|
32 |
|
|
<groupId>org.springframework.boot</groupId>
|
33 |
2964b75c
|
Ondřej Váně
|
<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 |
4fd279a4
|
Ondřej Váně
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
47 |
2964b75c
|
Ondřej Váně
|
</dependency>
|
48 |
|
|
<dependency>
|
49 |
4fd279a4
|
Ondřej Váně
|
<groupId>org.reflections</groupId>
|
50 |
|
|
<artifactId>reflections</artifactId>
|
51 |
|
|
<version>0.9.12</version>
|
52 |
4d4cc0e4
|
Ondřej Váně
|
</dependency>
|
53 |
24c3740e
|
stepanekp
|
<dependency>
|
54 |
|
|
<!-- jsoup HTML parser library @ https://jsoup.org/ -->
|
55 |
|
|
<groupId>org.jsoup</groupId>
|
56 |
|
|
<artifactId>jsoup</artifactId>
|
57 |
|
|
<version>1.14.3</version>
|
58 |
|
|
</dependency>
|
59 |
e46d554a
|
stepanekp
|
<!-- Jackson libraries for parsing json files -->
|
60 |
|
|
<dependency>
|
61 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
62 |
|
|
<artifactId>jackson-core</artifactId>
|
63 |
|
|
<version>2.13.2</version>
|
64 |
|
|
</dependency>
|
65 |
|
|
<dependency>
|
66 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
67 |
|
|
<artifactId>jackson-databind</artifactId>
|
68 |
|
|
<version>2.13.2</version>
|
69 |
|
|
</dependency>
|
70 |
d0401547
|
stepanekp
|
<dependency>
|
71 |
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
72 |
|
|
<artifactId>jackson-annotations</artifactId>
|
73 |
|
|
<version>2.13.2</version>
|
74 |
|
|
</dependency>
|
75 |
4d4cc0e4
|
Ondřej Váně
|
</dependencies>
|
76 |
|
|
|
77 |
|
|
<build>
|
78 |
d0401547
|
stepanekp
|
<pluginManagement>
|
79 |
|
|
<plugins>
|
80 |
|
|
<plugin>
|
81 |
|
|
<groupId>org.springframework.boot</groupId>
|
82 |
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
83 |
|
|
</plugin>
|
84 |
|
|
</plugins>
|
85 |
|
|
</pluginManagement>
|
86 |
2964b75c
|
Ondřej Váně
|
<resources>
|
87 |
|
|
<resource>
|
88 |
|
|
<directory>src/main/java/resources</directory>
|
89 |
|
|
<includes>
|
90 |
|
|
<include>queries/*.sql</include>
|
91 |
|
|
</includes>
|
92 |
|
|
</resource>
|
93 |
|
|
</resources>
|
94 |
4d4cc0e4
|
Ondřej Váně
|
</build>
|
95 |
|
|
|
96 |
|
|
</project>
|