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+ <parent >
6+ <artifactId >playerbalancer</artifactId >
7+ <groupId >com.jaimemartz</groupId >
8+ <version >1.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <name >PlayerBalancer Plugin</name >
13+ <artifactId >playerbalancer-plugin</artifactId >
14+
15+ <build >
16+ <finalName >PlayerBalancer</finalName >
17+ <plugins >
18+ <plugin >
19+ <groupId >org.apache.maven.plugins</groupId >
20+ <artifactId >maven-shade-plugin</artifactId >
21+ <version >2.4.3</version >
22+ <configuration >
23+ <relocations >
24+ <relocation >
25+ <pattern >org.bstats</pattern >
26+ <shadedPattern >com.jaimemartz.playerbalancer.metrics</shadedPattern >
27+ </relocation >
28+ </relocations >
29+ </configuration >
30+ <executions >
31+ <execution >
32+ <phase >package</phase >
33+ <goals >
34+ <goal >shade</goal >
35+ </goals >
36+ </execution >
37+ </executions >
38+ </plugin >
39+ </plugins >
40+ </build >
41+
42+ <repositories >
43+ <repository >
44+ <id >inventive-repo</id >
45+ <url >https://repo.inventivetalent.org/content/groups/public/</url >
46+ </repository >
47+ <repository >
48+ <id >bstats-repo</id >
49+ <url >http://repo.bstats.org/content/repositories/releases/</url >
50+ </repository >
51+ </repositories >
52+
53+ <dependencies >
54+ <dependency >
55+ <groupId >net.md-5</groupId >
56+ <artifactId >bungeecord-proxy</artifactId >
57+ <version >local</version >
58+ <scope >provided</scope >
59+ </dependency >
60+ <dependency >
61+ <groupId >org.inventivetalent.update</groupId >
62+ <artifactId >bungee</artifactId >
63+ <version >1.0.1</version >
64+ <scope >compile</scope >
65+ </dependency >
66+ <dependency >
67+ <groupId >com.imaginarycode.minecraft</groupId >
68+ <artifactId >RedisBungee</artifactId >
69+ <version >0.3.8-SNAPSHOT</version >
70+ <scope >provided</scope >
71+ </dependency >
72+ <dependency >
73+ <groupId >ninja.leaping.configurate</groupId >
74+ <artifactId >configurate-hocon</artifactId >
75+ <version >3.3</version >
76+ <scope >compile</scope >
77+ <exclusions >
78+ <exclusion >
79+ <!-- Already shaded in bungee -->
80+ <groupId >com.google.guava</groupId >
81+ <artifactId >guava</artifactId >
82+ </exclusion >
83+ </exclusions >
84+ </dependency >
85+ <dependency >
86+ <groupId >org.bstats</groupId >
87+ <artifactId >bstats-bungeecord</artifactId >
88+ <version >1.2</version >
89+ <scope >compile</scope >
90+ </dependency >
91+ <dependency >
92+ <groupId >junit</groupId >
93+ <artifactId >junit</artifactId >
94+ <version >4.12</version >
95+ <scope >test</scope >
96+ </dependency >
97+ </dependencies >
98+ </project >
0 commit comments