1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+
6+ <modelVersion >4.0.0</modelVersion >
7+
8+ <groupId >codes.biscuit</groupId >
9+ <artifactId >ChunkBusterPlugin</artifactId >
10+ <packaging >jar</packaging >
11+ <name >ChunkBusterPlugin</name >
12+ <version >2.1.2</version >
13+
14+ <repositories >
15+ <repository >
16+ <id >spigotmc-repo</id >
17+ <url >https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url >
18+ </repository >
19+ </repositories >
20+
21+ <dependencies >
22+ <dependency >
23+ <groupId >org.spigotmc</groupId >
24+ <artifactId >spigot-api</artifactId >
25+ <version >1.8.8-R0.1-SNAPSHOT</version >
26+ <scope >provided</scope >
27+ </dependency >
28+ <dependency >
29+ <groupId >com.massivecraft</groupId >
30+ <artifactId >savage-factions</artifactId >
31+ <version >1.4-BETA-6</version >
32+ <scope >provided</scope >
33+ </dependency >
34+ <dependency >
35+ <groupId >com.massivecraft.factions</groupId >
36+ <artifactId >Factions</artifactId >
37+ <version >2.14.0</version >
38+ <scope >provided</scope >
39+ </dependency >
40+ <dependency >
41+ <groupId >com.massivecraft.massivecore</groupId >
42+ <artifactId >MassiveCore</artifactId >
43+ <version >2.14.0</version >
44+ <scope >provided</scope >
45+ </dependency >
46+ <dependency >
47+ <groupId >net.coreprotect</groupId >
48+ <artifactId >coreprotect</artifactId >
49+ <version >2.12.0</version >
50+ <scope >provided</scope >
51+ </dependency >
52+ <dependency >
53+ <groupId >com.palmergames</groupId >
54+ <artifactId >Towny</artifactId >
55+ <version >0.93.0.0</version >
56+ <scope >provided</scope >
57+ </dependency >
58+ <dependency >
59+ <artifactId >WG_6</artifactId >
60+ <groupId >codes.biscuit</groupId >
61+ <version >WG_6</version >
62+ <scope >compile</scope >
63+ </dependency >
64+ <dependency >
65+ <artifactId >WG_7</artifactId >
66+ <groupId >codes.biscuit</groupId >
67+ <version >WG_7</version >
68+ <scope >compile</scope >
69+ </dependency >
70+ <dependency >
71+ <artifactId >Abstraction</artifactId >
72+ <groupId >codes.biscuit</groupId >
73+ <version >Abstraction</version >
74+ <scope >compile</scope >
75+ </dependency >
76+ </dependencies >
77+
78+ <build >
79+ <directory >../target</directory >
80+ <finalName >ChunkBuster-v${version} </finalName >
81+ <resources >
82+ <resource >
83+ <targetPath >.</targetPath >
84+ <filtering >true</filtering >
85+ <directory >src/main/resources</directory >
86+ <includes >
87+ <include >plugin.yml</include >
88+ </includes >
89+ </resource >
90+ </resources >
91+ <plugins >
92+ <plugin >
93+ <groupId >org.apache.maven.plugins</groupId >
94+ <artifactId >maven-compiler-plugin</artifactId >
95+ <version >3.8.0</version >
96+ <configuration >
97+ <source >1.8</source >
98+ <target >1.8</target >
99+ </configuration >
100+ </plugin >
101+ <plugin >
102+ <groupId >org.apache.maven.plugins</groupId >
103+ <artifactId >maven-shade-plugin</artifactId >
104+ <version >3.2.1</version >
105+ <executions >
106+ <execution >
107+ <phase >package</phase >
108+ <goals >
109+ <goal >shade</goal >
110+ </goals >
111+ <configuration >
112+ <filters >
113+ <filter >
114+ <artifact >*:*</artifact >
115+ <excludes >
116+ <exclude >META-INF/**</exclude >
117+ </excludes >
118+ </filter >
119+ </filters >
120+ </configuration >
121+ </execution >
122+ </executions >
123+ </plugin >
124+ </plugins >
125+ </build >
126+ </project >
0 commit comments