This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
61 lines (54 loc) · 1.69 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.stratomine.archetypes</groupId>
<artifactId>bukkit-plugin-archetype</artifactId>
<name>Bukkit Plugin Archetype</name>
<description>A Maven archetype for a simple Bukkit plugin</description>
<inceptionYear>2011</inceptionYear>
<version>1.0.1-r1-1.0.0</version>
<url>https://github.com/stratomine/bukkit-plugin-archetype</url>
<organization>
<name>Stratomine</name>
<url>http://stratomine.com/</url>
</organization>
<developers>
<developer>
<id>ross</id>
<name>Ross Paffett</name>
<email>[email protected]</email>
<url>http://stratomine.com/</url>
<organization>Stratomine</organization>
<organizationUrl>http://stratomine.com/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license</url>
<distribution>repo</distribution>
<comments>A liberal open source license</comments>
</license>
</licenses>
<build>
<extensions>
<extension>
<groupId>org.springframework.build.aws</groupId>
<artifactId>org.springframework.build.aws.maven</artifactId>
<version>3.0.0.RELEASE</version>
</extension>
</extensions>
</build>
<packaging>jar</packaging>
<distributionManagement>
<repository>
<id>stratomine</id>
<name>Stratomine</name>
<url>s3://maven.stratomine.com/release</url>
</repository>
</distributionManagement>
</project>