-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·37 lines (37 loc) · 1.35 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
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.techcable</groupId>
<artifactId>parent</artifactId>
<version>1.0.4</version>
</parent>
<artifactId>cbpatcher</artifactId>
<version>1.0.0-SNAPSHOT</version>
<description>Allows you to overide java classes at runtime. Primarily designed for craftbukkit, but usable from any application</description>
<dependencies>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.19.0-GA</version>
</dependency>
<dependency>
<groupId>tk.ivybits</groupId>
<artifactId>agent</artifactId>
<version>1.0-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- Please remember to keep bukkit optional as this should be able to be used for any app -->
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>