-
Notifications
You must be signed in to change notification settings - Fork 48
/
pom.xml
80 lines (68 loc) · 2.67 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.crylegend</groupId>
<artifactId>authmebridge-parent</artifactId>
<version>1.6.1</version>
<packaging>pom</packaging>
<name>AuthMeBridge suite</name>
<description>Bungeecord addon for AuthMe and xAuth!</description>
<inceptionYear>2014</inceptionYear>
<url>https://www.spigotmc.org/resources/authmebridge-for-bungeecord.574/</url>
<organization>
<name>AuthMe-Team</name>
<url>https://github.com/AuthMe-Team</url>
</organization>
<scm>
<connection>scm:git:https://github.com/AuthMe-Team/AuthMeBridge.git</connection>
<developerConnection>scm:git:[email protected]:Xephi/AuthMe-Team/AuthMeBridge.git</developerConnection>
<url>https://github.com/AuthMe-Team/AuthMeBridge.git</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>http://ci.xephi.fr/job/AuthMeBridge/</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/CryLegend/AuthMeBridge/issues</url>
</issueManagement>
<licenses>
<license>
<name>The GNU General Public Licence version 3 (GPLv3)</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<prerequisites>
<maven>3.3.3</maven>
</prerequisites>
<properties>
<!-- Project Properties -->
<projectEncoding>UTF-8</projectEncoding>
<project.build.sourceEncoding>${projectEncoding}</project.build.sourceEncoding>
<project.build.outputEncoding>${projectEncoding}</project.build.outputEncoding>
<jdkVersion>1.7</jdkVersion>
<bukkitVersion>1.9-R0.1-SNAPSHOT</bukkitVersion>
<bungeeVersion>1.9-SNAPSHOT</bungeeVersion>
</properties>
<modules>
<module>authmebridge-bungee</module>
<module>authmebridge-authme</module>
<module>authmebridge-xauth</module>
</modules>
<build>
<plugins>
<!-- Maven Java Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${jdkVersion}</source>
<target>${jdkVersion}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>