-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
112 lines (112 loc) · 3.41 KB
/
pom.xml
File metadata and controls
112 lines (112 loc) · 3.41 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
<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.craftrepo</groupId>
<artifactId>Overwatch</artifactId>
<name>Overwatch</name>
<version>1.0-SNAPSHOT</version>
<issueManagement>
<system>JIRA</system>
<url>http://jira.craftrepo.net</url>
</issueManagement>
<ciManagement>
<system>Bamboo</system>
<url>http://bamboo.craftrepo.net</url>
</ciManagement>
<scm>
<connection>scm:git:git://github.com/AllGamer/Overwatch.git</connection>
<developerConnection>scm:git:ssh://git@github.com/AllGamer/Overwatch.git</developerConnection>
</scm>
<build>
<finalName>Overwatch</finalName>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<defaultGoal>clean install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.1</version>
<configuration>
<includes>
<include>**/target/classes/*</include>
</includes>
<archive>
<manifestEntries>
<Main-Class>net.craftrepo.Overwatch.Overwatchmain</Main-Class>
<Implementation-Title>Overwatch</Implementation-Title>
<Implementation-Version>${describe}</Implementation-Version>
<Implementation-Vendor>CraftRepo</Implementation-Vendor>
<Specification-Title>Overwatch</Specification-Title>
<Specification-Version>0.1</Specification-Version>
<Specification-Vendor>CraftRepo</Specification-Vendor>
<Sealed>true</Sealed>
</manifestEntries>
<manifestSections>
<manifestSection>
<name>net/craftrepo</name>
<manifestEntries>
<Sealed>false</Sealed>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
<extensions>false</extensions>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>bukkit</id>
<url>http://repo.bukkit.org/artifactory/repo</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>bukkit-plugins</id>
<url>http://repo.bukkit.org/artifactory/plugins-release</url>
</repository>
</repositories>
<pluginRepositories>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>com.nijikokun.bukkit</groupId>
<artifactId>Permissions</artifactId>
<version>2.7</version>
<type>jar</type>
<scope>provided</scope>
<optional>false</optional>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
</dependencies>
</dependencyManagement>
</project>