-
Notifications
You must be signed in to change notification settings - Fork 11
/
pom.xml
99 lines (94 loc) · 3.23 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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<!-- Project information -->
<name>MChat</name>
<artifactId>MChat</artifactId>
<packaging>jar</packaging>
<version>1.8.0-R0.1-SNAPSHOT</version>
<url>https://github.com/Q0rDev/MChat</url>
<description>Chat Formatting for Bukkit</description>
<!-- Parent information -->
<parent>
<groupId>ca.q0r</groupId>
<artifactId>q0rdev-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<!-- Issue management -->
<issueManagement>
<system>jira</system>
<url>https://q0rdev.atlassian.net/browse/MCHAT</url>
</issueManagement>
<!-- Repository locations -->
<repositories>
<repository>
<id>oss-repo</id>
<url>https://oss.sonatype.org/content/groups/public</url>
<releases>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.herocraftonline</groupId>
<artifactId>Heroes</artifactId>
<version>1.5.3.3</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.4</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ru.tehkode</groupId>
<artifactId>PermissionsEx</artifactId>
<version>1.22.6</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.83.0.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>uk.org.whoami</groupId>
<artifactId>GeoIPTools</artifactId>
<version>1.0.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.p000ison.dev.simpleclans2</groupId>
<artifactId>SimpleClans2</artifactId>
<version>1.0.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.p000ison.dev.simpleclans2</groupId>
<artifactId>SimpleClansChat</artifactId>
<version>1.0.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>