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+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >codes.biscuit</groupId >
8+ <artifactId >SellChestPlugin</artifactId >
9+ <packaging >jar</packaging >
10+ <name >SellChestPlugin</name >
11+ <version >1.1.1-B1</version >
12+
13+ <repositories >
14+ <repository >
15+ <id >spigotmc-repo</id >
16+ <url >https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url >
17+ </repository >
18+ <repository >
19+ <id >vault-repo</id >
20+ <url >http://nexus.hc.to/content/repositories/pub_releases</url >
21+ </repository >
22+ <repository >
23+ <id >ess-repo</id >
24+ <url >http://repo.ess3.net/content/groups/essentials</url >
25+ </repository >
26+ <repository >
27+ <id >bintray-tastybento-maven-repo</id >
28+ <name >bintray</name >
29+ <url >http://dl.bintray.com/tastybento/maven-repo</url >
30+ </repository >
31+ </repositories >
32+
33+ <dependencies >
34+ <dependency >
35+ <groupId >org.spigotmc</groupId >
36+ <artifactId >spigot-api</artifactId >
37+ <version >1.8.8-R0.1-SNAPSHOT</version >
38+ <scope >provided</scope >
39+ </dependency >
40+ <!-- <dependency>-->
41+ <!-- <groupId>org.spigotmc</groupId>-->
42+ <!-- <artifactId>spigot-api</artifactId>-->
43+ <!-- <version>1.14.1-R0.1-SNAPSHOT</version>-->
44+ <!-- <scope>provided</scope>-->
45+ <!-- </dependency>-->
46+ <!-- <dependency>-->
47+ <!-- <groupId>org.spigotmc</groupId>-->
48+ <!-- <artifactId>spigot</artifactId>-->
49+ <!-- <version>1.14.1-R0.1-SNAPSHOT</version>-->
50+ <!-- <scope>provided</scope>-->
51+ <!-- </dependency>-->
52+ <!-- <dependency>-->
53+ <!-- <groupId>org.spigotmc</groupId>-->
54+ <!-- <artifactId>paperspigot</artifactId>-->
55+ <!-- <version>1.8.8</version>-->
56+ <!-- <scope>provided</scope>-->
57+ <!-- </dependency>-->
58+ <dependency >
59+ <groupId >net.milkbowl.vault</groupId >
60+ <artifactId >VaultAPI</artifactId >
61+ <version >1.6</version >
62+ <scope >provided</scope >
63+ </dependency >
64+ <dependency >
65+ <groupId >net.brcdev</groupId >
66+ <artifactId >ShopGUIPlus</artifactId >
67+ <version >1.19.0</version >
68+ <scope >provided</scope >
69+ </dependency >
70+ <dependency >
71+ <groupId >net.ess3</groupId >
72+ <artifactId >Essentials</artifactId >
73+ <version >Pre2.14.1.3</version >
74+ <scope >provided</scope >
75+ </dependency >
76+ <dependency >
77+ <groupId >com.massivecraft</groupId >
78+ <artifactId >savage-factions</artifactId >
79+ <version >1.4-BETA-6</version >
80+ <scope >provided</scope >
81+ </dependency >
82+ <dependency >
83+ <groupId >com.massivecraft.factions</groupId >
84+ <artifactId >Factions</artifactId >
85+ <version >2.14.0</version >
86+ <scope >provided</scope >
87+ </dependency >
88+ <dependency >
89+ <groupId >com.massivecraft.massivecore</groupId >
90+ <artifactId >MassiveCore</artifactId >
91+ <version >2.14.0</version >
92+ <scope >provided</scope >
93+ </dependency >
94+ <dependency >
95+ <groupId >com.wasteofplastic</groupId >
96+ <artifactId >askyblock</artifactId >
97+ <version >3.0.9.4</version >
98+ <scope >provided</scope >
99+ </dependency >
100+ <dependency >
101+ <groupId >com.plotsquared</groupId >
102+ <artifactId >PlotSquared</artifactId >
103+ <version >19.02.21</version >
104+ <scope >provided</scope >
105+ </dependency >
106+ <dependency >
107+ <artifactId >Abstraction</artifactId >
108+ <groupId >codes.biscuit</groupId >
109+ <version >Abstraction</version >
110+ <scope >compile</scope >
111+ </dependency >
112+ <dependency >
113+ <artifactId >MC_1_14</artifactId >
114+ <groupId >codes.biscuit</groupId >
115+ <version >MC_1_14</version >
116+ <scope >compile</scope >
117+ </dependency >
118+ </dependencies >
119+
120+ <build >
121+ <directory >../target</directory >
122+ <finalName >SellChest-${version} </finalName >
123+ <resources >
124+ <resource >
125+ <targetPath >.</targetPath >
126+ <filtering >true</filtering >
127+ <directory >src/main/resources</directory >
128+ </resource >
129+ </resources >
130+ <plugins >
131+ <plugin >
132+ <groupId >org.apache.maven.plugins</groupId >
133+ <artifactId >maven-compiler-plugin</artifactId >
134+ <version >3.8.0</version >
135+ <configuration >
136+ <source >1.8</source >
137+ <target >1.8</target >
138+ </configuration >
139+ </plugin >
140+ <plugin >
141+ <groupId >org.apache.maven.plugins</groupId >
142+ <artifactId >maven-shade-plugin</artifactId >
143+ <version >3.2.1</version >
144+ <executions >
145+ <execution >
146+ <phase >package</phase >
147+ <goals >
148+ <goal >shade</goal >
149+ </goals >
150+ <configuration >
151+ <filters >
152+ <filter >
153+ <artifact >*:*</artifact >
154+ <excludes >
155+ <exclude >META-INF/**</exclude >
156+ </excludes >
157+ </filter >
158+ </filters >
159+ </configuration >
160+ </execution >
161+ </executions >
162+ </plugin >
163+ </plugins >
164+ </build >
165+
166+ </project >
0 commit comments