-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
executable file
·101 lines (101 loc) · 3.97 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.techcable.spawnshield</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<name>SpawnShield</name>
<version>1.2.1-SNAPSHOT</version>
<description>Prevents people from entering spawn in combat</description>
<properties>
<java.version>1.8</java.version>
</properties>
<repositories>
<repository>
<id>techcable-repo</id>
<url>https://repo.techcable.net/content/groups/public/</url>
</repository>
<repository>
<id>oss-repo</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>elmakers-repo</id>
<url>http://maven.elmakers.com/repository/</url>
</repository>
<repository>
<id>md5-repo</id>
<url>http://repo.md-5.net/content/groups/public/</url>
</repository>
</repositories>
<modules>
<module>api</module>
<module>base</module>
<module>worldguard6</module>
<!-- CombatTag plugins -->
<module>combat-tag</module>
<module>combat-tag-plus</module>
<module>pvp-manager</module>
</modules>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8.3-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.8</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>SpawnShield</finalName>
<plugins>
<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>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>net.techcable.techutils</pattern>
<shadedPattern>net.techcable.spawnshield.libs.techutils</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.gson</pattern>
<shadedPattern>net.techcable.spawnshield.libs.gson</shadedPattern>
</relocation>
<relocation>
<pattern>org.reflections</pattern>
<shadedPattern>net.techcable.spawnshield.libs.reflections</shadedPattern>
</relocation>
<relocation>
<pattern>net.cubespace.Yamler</pattern>
<shadedPattern>net.techcable.spawnshield.libs.yamler</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>