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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
<modelVersion>4.0.0</modelVersion>
|
5
|
|
6
|
<groupId>cz.zcu.fav.kiv</groupId>
|
7
|
<artifactId>ymanager</artifactId>
|
8
|
<version>1.0-SNAPSHOT</version>
|
9
|
|
10
|
<parent>
|
11
|
<groupId>org.springframework.boot</groupId>
|
12
|
<artifactId>spring-boot-starter-parent</artifactId>
|
13
|
<version>2.0.5.RELEASE</version>
|
14
|
</parent>
|
15
|
|
16
|
<properties>
|
17
|
<java.version>1.8</java.version>
|
18
|
</properties>
|
19
|
|
20
|
<dependencies>
|
21
|
<dependency>
|
22
|
<groupId>org.springframework.boot</groupId>
|
23
|
<artifactId>spring-boot-starter-web</artifactId>
|
24
|
</dependency>
|
25
|
|
26
|
<dependency>
|
27
|
<groupId>org.apache.commons</groupId>
|
28
|
<artifactId>commons-lang3</artifactId>
|
29
|
<version>3.9</version>
|
30
|
</dependency>
|
31
|
|
32
|
<dependency>
|
33
|
<groupId>org.apache.poi</groupId>
|
34
|
<artifactId>poi-ooxml</artifactId>
|
35
|
<version>4.1.0</version>
|
36
|
</dependency>
|
37
|
|
38
|
<dependency>
|
39
|
<groupId>org.apache.pdfbox</groupId>
|
40
|
<artifactId>pdfbox</artifactId>
|
41
|
<version>2.0.15</version>
|
42
|
</dependency>
|
43
|
|
44
|
<dependency>
|
45
|
<groupId>com.github.dhorions</groupId>
|
46
|
<artifactId>boxable</artifactId>
|
47
|
<version>1.5</version>
|
48
|
</dependency>
|
49
|
|
50
|
|
51
|
<!-- DATABASE -->
|
52
|
<dependency>
|
53
|
<groupId>org.springframework.boot</groupId>
|
54
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
55
|
</dependency>
|
56
|
<dependency>
|
57
|
<groupId>org.mariadb.jdbc</groupId>
|
58
|
<artifactId>mariadb-java-client</artifactId>
|
59
|
<version>2.4.1</version>
|
60
|
</dependency>
|
61
|
|
62
|
|
63
|
<!-- TESTS -->
|
64
|
<dependency>
|
65
|
<groupId>org.springframework.boot</groupId>
|
66
|
<artifactId>spring-boot-starter-test</artifactId>
|
67
|
<scope>test</scope>
|
68
|
</dependency>
|
69
|
<dependency>
|
70
|
<groupId>org.junit.jupiter</groupId>
|
71
|
<artifactId>junit-jupiter-api</artifactId>
|
72
|
<scope>test</scope>
|
73
|
</dependency>
|
74
|
<dependency>
|
75
|
<groupId>org.mockito</groupId>
|
76
|
<artifactId>mockito-core</artifactId>
|
77
|
<version>2.25.1</version>
|
78
|
<scope>test</scope>
|
79
|
</dependency>
|
80
|
</dependencies>
|
81
|
|
82
|
|
83
|
<build>
|
84
|
<plugins>
|
85
|
<plugin>
|
86
|
<groupId>org.springframework.boot</groupId>
|
87
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
88
|
<executions>
|
89
|
<execution>
|
90
|
<goals>
|
91
|
<goal>repackage</goal>
|
92
|
</goals>
|
93
|
<configuration>
|
94
|
<classifier>full-app</classifier>
|
95
|
<mainClass>cz.zcu.yamanager.Application</mainClass>
|
96
|
</configuration>
|
97
|
</execution>
|
98
|
</executions>
|
99
|
</plugin>
|
100
|
<plugin>
|
101
|
<groupId>org.apache.maven.plugins</groupId>
|
102
|
<artifactId>maven-surefire-plugin</artifactId>
|
103
|
<version>2.19.1</version>
|
104
|
<dependencies>
|
105
|
<dependency>
|
106
|
<groupId>org.junit.platform</groupId>
|
107
|
<artifactId>junit-platform-surefire-provider</artifactId>
|
108
|
<version>1.1.0</version>
|
109
|
</dependency>
|
110
|
<dependency>
|
111
|
<groupId>org.junit.jupiter</groupId>
|
112
|
<artifactId>junit-jupiter-engine</artifactId>
|
113
|
<version>5.1.0</version>
|
114
|
</dependency>
|
115
|
</dependencies>
|
116
|
</plugin>
|
117
|
</plugins>
|
118
|
</build>
|
119
|
|
120
|
</project>
|