Skip to content

Commit 4f04a87

Browse files
authored
Create pom.xml
1 parent de992d1 commit 4f04a87

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<project>
2+
<properties>
3+
<maven.compiler.source>1.8</maven.compiler.source>
4+
<maven.compiler.target>1.8</maven.compiler.target>
5+
</properties>
6+
<repositories>
7+
<repository>
8+
<id>papermc</id>
9+
<url>https://repo.papermc.io/repository/maven-public/</url>
10+
</repository>
11+
<repository>
12+
<id>spigot-repo</id>
13+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
14+
</repository>
15+
</repositories>
16+
<groupId>org.bettervm.collabcraft</groupId>
17+
<artifactId>collabcraft</artifactId>
18+
<version>1.0</version>
19+
<modelVersion>4.0.0</modelVersion>
20+
<dependencies>
21+
<dependency>
22+
<groupId>com.velocitypowered</groupId>
23+
<artifactId>velocity-api</artifactId>
24+
<version>3.1.1</version>
25+
<scope>provided</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.spigotmc</groupId>
29+
<artifactId>spigot-api</artifactId>
30+
<version>1.16.5-R0.1-SNAPSHOT</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
</dependencies>
34+
</project>

0 commit comments

Comments
 (0)