-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpom.xml
87 lines (82 loc) · 2.69 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.techcable.npclib</groupId>
<artifactId>parent</artifactId>
<name>NPC Lib</name>
<version>2.0.0-beta2-SNAPSHOT</version>
<packaging>pom</packaging>
<repositories>
<repository>
<id>techcable-repo</id>
<url>http://repo.techcable.net/content/groups/public/</url>
</repository>
<repository>
<id>citizens-repo</id>
<url>http://repo.citizensnpcs.co/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.9-R0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.14.8</version>
<scope>provided</scope>
</dependency>
</dependencies>
<modules>
<module>api</module>
<module>nms-v1_7_R3</module>
<module>nms-v1_7_R4</module>
<module>nms-v1_8_R1</module>
<module>nms-v1_8_R2</module>
<module>nms-v1_8_R3</module>
<module>nms-v1_9_R1</module>
<module>nms</module>
<module>citizens</module>
<module>base</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>techcable-repo</id>
<name>Releases</name>
<url>http://repo.techcable.net/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>techcable-repo</id>
<name>Snapshots</name>
<url>http://repo.techcable.net/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>