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>org.danekja</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
|
<maven.compiler.source>1.8</maven.compiler.source>
|
19
|
<maven.compiler.target>1.8</maven.compiler.target>
|
20
|
</properties>
|
21
|
|
22
|
<dependencies>
|
23
|
<dependency>
|
24
|
<groupId>org.springframework.boot</groupId>
|
25
|
<artifactId>spring-boot-starter-web</artifactId>
|
26
|
</dependency>
|
27
|
<dependency>
|
28
|
<groupId>org.springframework.boot</groupId>
|
29
|
<artifactId>spring-boot-starter-security</artifactId>
|
30
|
</dependency>
|
31
|
|
32
|
<dependency>
|
33
|
<groupId>org.springframework.security</groupId>
|
34
|
<artifactId>spring-security-oauth2-client</artifactId>
|
35
|
</dependency>
|
36
|
<dependency>
|
37
|
<groupId>org.springframework.security</groupId>
|
38
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
39
|
</dependency>
|
40
|
|
41
|
<dependency>
|
42
|
<groupId>org.apache.commons</groupId>
|
43
|
<artifactId>commons-lang3</artifactId>
|
44
|
<version>3.9</version>
|
45
|
</dependency>
|
46
|
|
47
|
<dependency>
|
48
|
<groupId>org.apache.poi</groupId>
|
49
|
<artifactId>poi-ooxml</artifactId>
|
50
|
<version>4.1.0</version>
|
51
|
</dependency>
|
52
|
|
53
|
<dependency>
|
54
|
<groupId>org.apache.pdfbox</groupId>
|
55
|
<artifactId>pdfbox</artifactId>
|
56
|
<version>2.0.15</version>
|
57
|
</dependency>
|
58
|
|
59
|
<dependency>
|
60
|
<groupId>com.github.dhorions</groupId>
|
61
|
<artifactId>boxable</artifactId>
|
62
|
<version>1.5</version>
|
63
|
</dependency>
|
64
|
|
65
|
<dependency>
|
66
|
<groupId>org.flywaydb</groupId>
|
67
|
<artifactId>flyway-core</artifactId>
|
68
|
<version>${flyway.version}</version>
|
69
|
</dependency>
|
70
|
|
71
|
<!-- DATABASE -->
|
72
|
<dependency>
|
73
|
<groupId>org.springframework.boot</groupId>
|
74
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
75
|
</dependency>
|
76
|
<dependency>
|
77
|
<groupId>org.mariadb.jdbc</groupId>
|
78
|
<artifactId>mariadb-java-client</artifactId>
|
79
|
<version>2.4.1</version>
|
80
|
</dependency>
|
81
|
|
82
|
|
83
|
<!-- TESTS -->
|
84
|
<dependency>
|
85
|
<groupId>org.springframework.boot</groupId>
|
86
|
<artifactId>spring-boot-starter-test</artifactId>
|
87
|
<scope>test</scope>
|
88
|
</dependency>
|
89
|
<dependency>
|
90
|
<groupId>org.junit.jupiter</groupId>
|
91
|
<artifactId>junit-jupiter-api</artifactId>
|
92
|
<scope>test</scope>
|
93
|
</dependency>
|
94
|
<dependency>
|
95
|
<groupId>org.mockito</groupId>
|
96
|
<artifactId>mockito-core</artifactId>
|
97
|
<version>2.25.1</version>
|
98
|
<scope>test</scope>
|
99
|
</dependency>
|
100
|
</dependencies>
|
101
|
|
102
|
|
103
|
<build>
|
104
|
<plugins>
|
105
|
<plugin>
|
106
|
<groupId>org.springframework.boot</groupId>
|
107
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
108
|
<executions>
|
109
|
<execution>
|
110
|
<goals>
|
111
|
<goal>repackage</goal>
|
112
|
</goals>
|
113
|
<configuration>
|
114
|
<mainClass>org.danekja.ymanager.Application</mainClass>
|
115
|
</configuration>
|
116
|
</execution>
|
117
|
</executions>
|
118
|
</plugin>
|
119
|
<plugin>
|
120
|
<groupId>org.apache.maven.plugins</groupId>
|
121
|
<artifactId>maven-surefire-plugin</artifactId>
|
122
|
<version>2.19.1</version>
|
123
|
<dependencies>
|
124
|
<dependency>
|
125
|
<groupId>org.junit.platform</groupId>
|
126
|
<artifactId>junit-platform-surefire-provider</artifactId>
|
127
|
<version>1.1.0</version>
|
128
|
</dependency>
|
129
|
<dependency>
|
130
|
<groupId>org.junit.jupiter</groupId>
|
131
|
<artifactId>junit-jupiter-engine</artifactId>
|
132
|
<version>5.1.0</version>
|
133
|
</dependency>
|
134
|
</dependencies>
|
135
|
</plugin>
|
136
|
</plugins>
|
137
|
</build>
|
138
|
|
139
|
</project>
|