Skip to content

Commit 204141d

Browse files
committed
Tailing out some errors and adding interactive menues for self-delivery of guns, if enabled.
1 parent 12ddd96 commit 204141d

File tree

11 files changed

+826
-160
lines changed

11 files changed

+826
-160
lines changed

pom.xml

Lines changed: 117 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -1,119 +1,124 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
43
http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.programmerdan.minecraft</groupId>
7-
<artifactId>addgun</artifactId>
8-
<packaging>jar</packaging>
9-
<version>0.0.1</version>
10-
<name>AddGun</name>
11-
<url>https://github.com/ProgrammerDan/AddGun</url>
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.programmerdan.minecraft</groupId>
6+
<artifactId>addgun</artifactId>
7+
<packaging>jar</packaging>
8+
<version>0.0.2</version>
9+
<name>AddGun</name>
10+
<url>https://github.com/ProgrammerDan/AddGun</url>
1211

13-
<build>
14-
<finalName>${project.name}-${project.version}</finalName>
15-
<plugins>
16-
<plugin>
17-
<artifactId>maven-compiler-plugin</artifactId>
18-
<version>3.1</version>
19-
<configuration>
20-
<source>1.8</source>
21-
<target>1.8</target>
22-
<compilerArgument></compilerArgument>
23-
</configuration>
24-
</plugin>
25-
<plugin>
26-
<groupId>org.apache.maven.plugins</groupId>
27-
<artifactId>maven-surefire-plugin</artifactId>
28-
<version>2.19.1</version>
29-
<configuration>
30-
<testFailureIgnore>true</testFailureIgnore>
31-
</configuration>
32-
</plugin>
33-
<plugin>
34-
<groupId>org.codehaus.mojo</groupId>
35-
<artifactId>cobertura-maven-plugin</artifactId>
36-
<version>2.7</version>
37-
<configuration>
38-
<instrumentation>
39-
<excludes>
40-
<exclude>com/programmerdan/minecraft/addgun/**/*Test.class</exclude>
41-
</excludes>
42-
</instrumentation>
43-
</configuration>
44-
<executions>
45-
<execution>
46-
<goals>
47-
<goal>clean</goal>
48-
</goals>
49-
</execution>
50-
</executions>
51-
</plugin>
52-
</plugins>
53-
<resources>
54-
<resource>
55-
<directory>${basedir}/src/main/resources</directory>
56-
<includes>
57-
<include>*.yml</include>
58-
<include>*.md</include>
59-
</includes>
60-
<filtering>true</filtering>
61-
</resource>
62-
</resources>
63-
</build>
12+
<build>
13+
<finalName>${project.name}-${project.version}</finalName>
14+
<plugins>
15+
<plugin>
16+
<artifactId>maven-compiler-plugin</artifactId>
17+
<version>3.1</version>
18+
<configuration>
19+
<source>1.8</source>
20+
<target>1.8</target>
21+
<compilerArgument></compilerArgument>
22+
</configuration>
23+
</plugin>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-surefire-plugin</artifactId>
27+
<version>2.19.1</version>
28+
<configuration>
29+
<testFailureIgnore>true</testFailureIgnore>
30+
</configuration>
31+
</plugin>
32+
<plugin>
33+
<groupId>org.codehaus.mojo</groupId>
34+
<artifactId>cobertura-maven-plugin</artifactId>
35+
<version>2.7</version>
36+
<configuration>
37+
<instrumentation>
38+
<excludes>
39+
<exclude>com/programmerdan/minecraft/addgun/**/*Test.class</exclude>
40+
</excludes>
41+
</instrumentation>
42+
</configuration>
43+
<executions>
44+
<execution>
45+
<goals>
46+
<goal>clean</goal>
47+
</goals>
48+
</execution>
49+
</executions>
50+
</plugin>
51+
</plugins>
52+
<resources>
53+
<resource>
54+
<directory>${basedir}/src/main/resources</directory>
55+
<includes>
56+
<include>*.yml</include>
57+
<include>*.md</include>
58+
</includes>
59+
<filtering>true</filtering>
60+
</resource>
61+
</resources>
62+
</build>
6463

65-
<reporting>
66-
<plugins>
67-
<plugin>
68-
<groupId>org.codehaus.mojo</groupId>
69-
<artifactId>cobertura-maven-plugin</artifactId>
70-
<version>2.7</version>
71-
<configuration>
72-
<formats>
73-
<format>html</format>
74-
</formats>
75-
</configuration>
76-
<reportSets>
77-
<reportSet>
78-
<reports>
79-
<report>cobertura</report>
80-
</reports>
81-
</reportSet>
82-
</reportSets>
83-
</plugin>
84-
</plugins>
85-
</reporting>
64+
<reporting>
65+
<plugins>
66+
<plugin>
67+
<groupId>org.codehaus.mojo</groupId>
68+
<artifactId>cobertura-maven-plugin</artifactId>
69+
<version>2.7</version>
70+
<configuration>
71+
<formats>
72+
<format>html</format>
73+
</formats>
74+
</configuration>
75+
<reportSets>
76+
<reportSet>
77+
<reports>
78+
<report>cobertura</report>
79+
</reports>
80+
</reportSet>
81+
</reportSets>
82+
</plugin>
83+
</plugins>
84+
</reporting>
8685

87-
<repositories>
88-
<repository>
89-
<id>spigot-repo</id>
90-
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
91-
</repository>
92-
<repository>
93-
<id>devoted-repo</id>
94-
<url>https://build.devotedmc.com/plugin/repository/everything/</url>
95-
</repository>
96-
</repositories>
86+
<repositories>
87+
<repository>
88+
<id>spigot-repo</id>
89+
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
90+
</repository>
91+
<repository>
92+
<id>devoted-repo</id>
93+
<url>https://build.devotedmc.com/plugin/repository/everything/</url>
94+
</repository>
95+
</repositories>
9796

98-
<dependencies>
99-
<dependency>
100-
<groupId>org.spigotmc</groupId>
101-
<artifactId>spigot</artifactId>
102-
<version>1.12-R0.1-SNAPSHOT</version>
103-
<scope>provided</scope>
104-
</dependency>
105-
<dependency>
106-
<groupId>junit</groupId>
107-
<artifactId>junit</artifactId>
108-
<version>4.12</version>
109-
<scope>test</scope>
110-
</dependency>
111-
<dependency>
112-
<groupId>org.mockito</groupId>
113-
<artifactId>mockito-core</artifactId>
114-
<version>1.10.19</version>
115-
<scope>test</scope>
116-
</dependency>
117-
</dependencies>
97+
<dependencies>
98+
<dependency>
99+
<groupId>org.spigotmc</groupId>
100+
<artifactId>spigot</artifactId>
101+
<version>1.12-R0.1-SNAPSHOT</version>
102+
<scope>provided</scope>
103+
</dependency>
104+
<dependency>
105+
<groupId>junit</groupId>
106+
<artifactId>junit</artifactId>
107+
<version>4.12</version>
108+
<scope>test</scope>
109+
</dependency>
110+
<dependency>
111+
<groupId>org.mockito</groupId>
112+
<artifactId>mockito-core</artifactId>
113+
<version>1.10.19</version>
114+
<scope>test</scope>
115+
</dependency>
116+
<dependency>
117+
<groupId>vg.civcraft.mc.civmodcore</groupId>
118+
<artifactId>CivModCore</artifactId>
119+
<version>1.6.0</version>
120+
<scope>provided</scope>
121+
</dependency>
122+
</dependencies>
118123

119124
</project>

0 commit comments

Comments
 (0)