forked from Kaos1337/SimpleSpleef-Evolution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
70 lines (70 loc) · 3.07 KB
/
pom.xml
File metadata and controls
70 lines (70 loc) · 3.07 KB
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
<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>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.2.5-R3.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=net.milkbowl -DartifactId=vault -Dversion=1.2.16 -Dpackaging=jar -Dfile=Vault.jar' in order to make this work: -->
<groupId>net.milkbowl</groupId>
<version>1.2.16</version>
<artifactId>vault</artifactId>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=com.sk89q -DartifactId=worldedit -Dversion=5.3 -Dpackaging=jar -Dfile=WorldEdit.jar' in order to make this work: -->
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
<version>5.3</version>
</dependency>
<dependency><!-- You have to run 'mvn install:install-file -DgroupId=com.sk89q -DartifactId=worldguard -Dversion=5.5.2 -Dpackaging=jar -Dfile=worldguard-5.5.2.jar' in order to make this work: -->
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>5.5.2</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>
<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>