forked from BedwarsRel/BedwarsRel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
151 lines (146 loc) · 4.33 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.bedwarsrel</groupId>
<artifactId>BedwarsRel</artifactId>
<version>1.3.3</version>
<name>BedwarsRel</name>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<useBaseVersion>false</useBaseVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>inventive-repo</id>
<url>https://repo.inventivetalent.org/content/repositories/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.10-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>api</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/HolographicDisplaysAPI_v2.1.7.jar</systemPath>
</dependency>
<dependency>
<groupId>org.inventivetalent</groupId>
<artifactId>hologramapi</artifactId>
<version>1.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-8</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.8-R1-c3c767f-33d5de3.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-8-3</artifactId>
<version>1.8.3</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.8.3-R2-4c7d0c0-7d020a7.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-8-4</artifactId>
<version>1.8.4</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.8.4-R3-5818108-a486600.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-9-2</artifactId>
<version>1.9.2</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.9.2-R1-e000104-4cb3258.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-9-4</artifactId>
<version>1.9.4</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.9.4-R2-4af49dc-23da8b0.jar</systemPath>
</dependency>
<dependency>
<groupId>net.minecraft</groupId>
<artifactId>minecraft-server-1-10-0</artifactId>
<version>1.10</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/spigot-1.10-R1-da278d1-b2f31b7.jar</systemPath>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.2</version>
</dependency>
<dependency>
<groupId>com.bugsnag</groupId>
<artifactId>bugsnag</artifactId>
<version>LATEST</version>
</dependency>
</dependencies>
</project>