-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpom.xml
84 lines (84 loc) · 2.96 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
<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>net.kaoslabs.simplespleefevolution</groupId>
<artifactId>SimpleSpleef</artifactId>
<version>2.0.0-SNAPSHOT</version>
<name>SimpleSpleef</name>
<description>Simple Spleefing plugin for bukkit server</description>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://ess.ementalo.com/nexus/content/groups/public/</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.4.5-R1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.milkbowl</groupId>
<version>1.2</version>
<artifactId>Vault</artifactId>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
<version>5.4.5</version>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>5.6</version>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=tehbeard -DartifactId=beardstat -Dversion=0.4 -Dpackaging=jar -Dfile=BeardStat.jar' in order to make this work: -->
<groupId>tehbeard</groupId>
<version>[0.4,)</version>
<artifactId>beardstat</artifactId>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=maniacraft -DartifactId=statsandachievements -Dversion=1.7 -Dpackaging=jar -Dfile=StatsAndAchievements-1.7.jar' in order to make this work: -->
<groupId>maniacraft</groupId>
<version>[1.7,)</version>
<artifactId>statsandachievements</artifactId>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=hawkeye -DartifactId=hawkeye -Dversion=1.0.7b -Dpackaging=jar -Dfile=HawkEye.jar' in order to make this work: -->
<groupId>hawkeye</groupId>
<version>1.0.7b</version>
<artifactId>hawkeye</artifactId>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>