forked from AlessioDP/Parties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
75 lines (64 loc) · 2.19 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
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.alessiodp.parties</groupId>
<artifactId>Parties</artifactId>
<version>2.3.1</version>
<packaging>pom</packaging>
<name>Parties</name>
<description>Party manager for your Minecraft server</description>
<licenses>
<license>
<name>AGPL-3.0</name>
<url>https://opensource.org/licenses/GPL-3.0</url>
</license>
</licenses>
<modules>
<module>api</module>
<module>bukkit</module>
<module>bungee</module>
<module>common</module>
<module>output</module>
</modules>
<properties>
<plugin.name>Parties</plugin.name>
<plugin.author>AlessioDP</plugin.author>
<plugin.version>${project.version}</plugin.version>
<plugin.description>Party manager for minecraft servers</plugin.description>
<plugin.website>https://alessiodp.com/</plugin.website>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.7.0</maven.compiler.version>
<maven.shade.version>3.1.0</maven.shade.version>
<maven.wagon.version>3.0.0</maven.wagon.version>
<spigot.version>1.13-R0.1-SNAPSHOT</spigot.version>
<bungeecord.version>1.13-SNAPSHOT</bungeecord.version>
<parties.api.version>${project.version}</parties.api.version>
<libs.lombok.version>1.18.0</libs.lombok.version>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>${maven.wagon.version}</version>
</extension>
</extensions>
</build>
<repositories>
<repository>
<!-- ADP repo -->
<id>adp-repo</id>
<url>http://repo.alessiodp.com/</url>
</repository>
<repository>
<!-- Spigot repo -->
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<!-- Maven central for HikariCP, Log4j, Lombok, SQLite -->
<id>maven-central-repo</id>
<url>https://repo.maven.apache.org/</url>
</repository>
</repositories>
</project>