Skip to content

Commit 0fb427f

Browse files
committed
Updated to support 1.12
1 parent 378cf80 commit 0fb427f

2 files changed

Lines changed: 274 additions & 249 deletions

File tree

pom.xml

Lines changed: 34 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
11
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.perceivedev</groupId>
5-
<artifactId>jsonmessage</artifactId>
6-
<version>1.0</version>
7-
<name>JSONChat</name>
8-
<description>A modern implementation of Fanciful</description>
9-
<repositories>
10-
<repository>
11-
<id>spigot-repo</id>
12-
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
13-
</repository>
14-
</repositories>
15-
<dependencies>
16-
<dependency>
17-
<groupId>org.bukkit</groupId>
18-
<artifactId>bukkit</artifactId>
19-
<version>1.10.2-R0.1-SNAPSHOT</version>
20-
<scope>provided</scope>
21-
</dependency>
22-
</dependencies>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.perceivedev</groupId>
5+
<artifactId>jsonmessage</artifactId>
6+
<version>1.0</version>
7+
<name>JSONChat</name>
8+
<description>A modern implementation of Fanciful</description>
9+
<repositories>
10+
<repository>
11+
<id>spigot-repo</id>
12+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
13+
</repository>
14+
</repositories>
15+
<dependencies>
16+
<dependency>
17+
<groupId>org.bukkit</groupId>
18+
<artifactId>bukkit</artifactId>
19+
<version>1.10.2-R0.1-SNAPSHOT</version>
20+
<scope>provided</scope>
21+
</dependency>
22+
</dependencies>
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-compiler-plugin</artifactId>
28+
<version>3.6.1</version>
29+
<configuration>
30+
<source>1.7</source>
31+
<target>1.7</target>
32+
</configuration>
33+
</plugin>
34+
</plugins>
35+
</build>
2336
</project>

0 commit comments

Comments
 (0)