-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
139 lines (132 loc) · 5.51 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>myplayplanet-spring-boot</artifactId>
<groupId>net.myplayplanet</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<groupId>de.sportfest22.service</groupId>
<artifactId>sportfestService</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>sportfestService</name>
<description>sportfestService</description>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<projectVersion>1.15.0</projectVersion>
<version.pp-core>1.15.0-SNAPSHOT</version.pp-core>
<version.pp-service>1.16.1-SNAPSHOT</version.pp-service>
<VaultAPI.version>1.7</VaultAPI.version>
<worldguard-bukkit.version>7.0.6</worldguard-bukkit.version>
<version.jackson>2.12.1</version.jackson>
<version.survival-core>1.15.0-SNAPSHOT</version.survival-core>
<version.anvil-gui>1.4.0-SNAPSHOT</version.anvil-gui>
<version.protocollib>4.5.1</version.protocollib>
<version.spigot>1.15.2</version.spigot>
<survival.version>1.18.0-SNAPSHOT</survival.version>
<version.MyPlayPlanet-Services>1.16.1-SNAPSHOT</version.MyPlayPlanet-Services>
<version.mapstruct>1.4.2.Final</version.mapstruct>
<version.base-rest-client>1.0-SNAPSHOT</version.base-rest-client>
<version.lombok>1.18.22</version.lombok>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<!--Project Lombok compile preprocessor-->
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${version.lombok}</version>
</path>
<!--Maps Struct compile preprocessor-->
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${version.mapstruct}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>de.sportfest22.service.sportfestservice.SportfestServiceApplication</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.myplayplanet</groupId>
<artifactId>MyPlayPlanet-Services</artifactId>
<version>${version.MyPlayPlanet-Services}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${version.mapstruct}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${version.mapstruct}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${version.lombok}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>