This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pom.xml
108 lines (102 loc) · 4.31 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
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet</artifactId>
<packaging>pom</packaging>
<version>dev-snapshot</version>
<name>CloudNet-Parent</name>
<url>https://cloudnetservice.eu/</url>
<properties>
<!-- compiler and encoding -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.targetEncoding>UTF-8</project.build.targetEncoding>
<service.version>2.1.17</service.version>
<service.type>RELEASE</service.type>
<!-- Dependencies -->
<dependency.netty.version>4.1.42.Final</dependency.netty.version>
<dependency.gson.version>2.8.6</dependency.gson.version>
<dependency.jline.version>2.14.6</dependency.jline.version>
<dependency.jopt-simple.version>5.0.4</dependency.jopt-simple.version>
<dependecy.snakeyaml.version>1.25</dependecy.snakeyaml.version>
<dependency.bungeecord.version>1.8-1.12</dependency.bungeecord.version>
<dependency.spigot.version>1.8.8-R0.1-SNAPSHOT</dependency.spigot.version>
<dependency.vaultapi.version>1.7</dependency.vaultapi.version>
<dependency.typetools.version>0.6.1</dependency.typetools.version>
<!-- test dependencies -->
<test.junit.version>4.12</test.junit.version>
<!-- Plugins -->
<plugin.shade.version>3.2.1</plugin.shade.version>
<plugin.javadoc.version>3.1.1</plugin.javadoc.version>
<plugin.jar.version>3.1.2</plugin.jar.version>
<plugin.resources.version>3.1.0</plugin.resources.version>
<plugin.antrun.version>1.8</plugin.antrun.version>
<plugin.source.version>3.1.0</plugin.source.version>
</properties>
<developers>
<developer>
<id>main</id>
<name>Tarek H.</name>
<url>https://dytanic.de</url>
</developer>
</developers>
<modules>
<module>cloudnet-lib</module>
<module>cloudnet-core</module>
<module>cloudnet-cord</module>
<module>cloudnet-wrapper</module>
<module>cloudnet-api</module>
<module>cloudnet-tools</module>
<module>cloudnet-modules</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<configuration>
<show>private</show>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate-jar</goal>
</goals>
<phase>site</phase>
<configuration>
<show>private</show>
<additionalJOption>-Xdoclint:none
</additionalJOption>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.source.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>