-
Notifications
You must be signed in to change notification settings - Fork 8
/
pom.xml
95 lines (92 loc) · 3.46 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
<?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">
<properties>
<!-- the release type, set to '-SNAPSHOT' via commandline to work with snapshots -->
<global.version.suffix/>
<global.version>1.3</global.version>
<!-- this is the latest spigot build, just for the API. NMS modules all use their own versions -->
<global.spigot.version>1.8.8-R0.1-SNAPSHOT</global.spigot.version>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>ca.jarcode</groupId>
<artifactId>consoles</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<modules>
<module>consoles-bungee</module>
<module>consoles-core</module>
<module>consoles-api</module>
<module>consoles-computers</module>
<module>consoles-fetcher</module>
<module>consoles-nms-api</module>
<module>consoles-v1_8_R3</module>
<module>consoles-v1_8_R2</module>
</modules>
<repositories>
<!-- dropping skript support, repository is down and the project is unmaintained
<repository>
<id>njol-repo</id>
<url>http://maven.njol.ch/repo/</url>
</repository>
-->
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>jarcode-site</id>
<url>sftp://jarcode.ca/home/jarcode/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
<inherited>false</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<skip>true</skip>
</configuration>
<inherited>false</inherited>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>
</project>