forked from CmdrDats/MemoryStone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
123 lines (119 loc) · 3.18 KB
/
pom.xml
File metadata and controls
123 lines (119 loc) · 3.18 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
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
<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>za.dats.bukkit</groupId>
<artifactId>memory-stone</artifactId>
<version>1.1.1</version>
<name>MemoryStone</name>
<url>http://www.dats.co.za/memoryStone</url>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>blockface-repo</id>
<url>http://repo.blockface.org/repository/</url>
<releases>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>craftfire-repo</id>
<url>http://repo.craftfire.com</url>
<releases>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>spout-repo</id>
<url>http://repo.getspout.org</url>
<releases>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>craftfire-dbrepo</id>
<url>http://db.craftfire.com/repo</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://mvn2.sk89q.com/repo</url>
</repository>
</repositories>
<!-- For the most part, I'm administering my own Artifactory where I'm manually
deploying these, so they might be incorrect -->
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.getspout</groupId>
<artifactId>spoutapi</artifactId>
<version>dev-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.nijiko</groupId>
<artifactId>iCo6</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.nijiko</groupId>
<artifactId>iCo5</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.nijiko</groupId>
<artifactId>iCo4</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>cosine.boseconomy</groupId>
<artifactId>BOSEconomy7</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.earth2me</groupId>
<artifactId>Essentials</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>me.ashtheking</groupId>
<artifactId>MultiCurrency</artifactId>
<version>1.0</version>
</dependency>
<!-- temporary dependency to get eclipse off my back. -->
<dependency>
<groupId>org.avaje</groupId>
<artifactId>ebean</artifactId>
<version>2.7.3</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>