-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (60 loc) · 1.9 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
<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>
<name>VolumetricBans</name>
<groupId>com.volumetricpixels</groupId>
<artifactId>bans</artifactId>
<version>0.0.1-SNAPSHOT</version>
<url>http://volumetricpixels.com</url>
<description>VolumetricBans is a global banning system for the Spout engine. It is designed to make admins lives easier and as grief and hack free as possible.</description>
<organization>
<name>VolumetricPixels</name>
<url>http://volumetricpixels.com</url>
</organization>
<licenses>
<license>
<name>VolumetricPixels License v1</name>
</license>
</licenses>
<scm>
<developerConnection>scm:git:[email protected]:VolumetricPixels/VolumetricBans.git</developerConnection>
<connection>scm:git:git://github.com/VolumetricPixels/VolumetricBans.git</connection>
<url>https://github.com/VolumetricPixels/VolumetricBans</url>
</scm>
<repositories>
<repository>
<id>spout-repo</id>
<url>http://repo.spout.org</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spout</groupId>
<artifactId>spoutapi</artifactId>
<version>dev-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean install</defaultGoal>
<plugins>
</plugins>
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>false</filtering>
<directory>${basedir}</directory>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
<resource>
<targetPath>resources</targetPath>
<filtering>false</filtering>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>*.yml</include>
</includes>
</resource>
</resources>
</build>
</project>