Skip to content
This repository was archived by the owner on Oct 20, 2021. It is now read-only.

Commit 3f2440f

Browse files
committed
Ships Beta 6
1 parent 1630af7 commit 3f2440f

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.ships</groupId>
8+
<artifactId>CoreToPaper</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-compiler-plugin</artifactId>
15+
<configuration>
16+
<source>1.8</source>
17+
<target>1.8</target>
18+
</configuration>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
23+
<repositories>
24+
<repository>
25+
<id>papermc</id>
26+
<url>https://papermc.io/repo/repository/maven-public/</url>
27+
</repository>
28+
</repositories>
29+
30+
<dependencies>
31+
<dependency>
32+
<groupId>com.destroystokyo.paper</groupId>
33+
<artifactId>paper-api</artifactId>
34+
<version>1.14.4-R0.1-SNAPSHOT</version>
35+
<scope>provided</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.ships</groupId>
39+
<artifactId>CoreToBukkit</artifactId>
40+
<version>1.0-SNAPSHOT</version>
41+
<scope>compile</scope>
42+
</dependency>
43+
</dependencies>
44+
</project>

0 commit comments

Comments
 (0)