-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
129 lines (122 loc) · 3.58 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<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>
<!-- Project information -->
<groupId>com.almuramc</groupId>
<artifactId>backpack</artifactId>
<version>b150</version>
<name>Backpack</name>
<url>http://www.almuramc.com</url>
<description>Backpack is a plugin for Bukkit that gives users a handy backpack.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkitVersion>1.6.4-R2.1-SNAPSHOT</bukkitVersion>
</properties>
<!-- Organization -->
<organization>
<name>AlmuraDev</name>
<url>http://www.almuramc.com</url>
</organization>
<!-- License -->
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE Version 3</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Repository locations -->
<repositories>
<repository>
<id>oss-sonatype-repo</id>
<url>https://oss.sonatype.org/content/repositories/public/</url>
</repository>
</repositories>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>1.6.4-R1.0</artifactId>
<version>Custom</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/bukkit.jar</systemPath>
</dependency>
<dependency>
<groupId>org.spoutcraft</groupId>
<artifactId>spoutcraftplugin</artifactId>
<version>Custom</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/spoutcraftplugin.jar</systemPath>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>Custom</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/vault.jar</systemPath>
</dependency>
</dependencies>
<build>
<defaultGoal>clean package install</defaultGoal>
<!-- Resources -->
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>*.yml</include>
</includes>
</resource>
</resources>
<!-- Plugins -->
<plugins>
<!-- Compile plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<!-- License header formatting plugin -->
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<executions>
<execution>
<phase>clean</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
<encoding>UTF-8</encoding>
<strictCheck>true</strictCheck>
<header>${basedir}/HEADER.txt</header>
<keywords>
<keyword>${project.name}</keyword>
<keyword>license</keyword>
</keywords>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<properties>
<name>${project.name}</name>
<url>${project.organization.url}</url>
<license>Almura Development License version 1</license>
<licenseUrl>http://www.almuramc.com</licenseUrl>
<copyright>Copyright (c) 2012, AlmuraDev</copyright>
</properties>
<includes>
<include>src/main/java/**</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>