mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
* 'master' of https://github.com/CivClassic/RandomSpawn: Update repo to new github one # Conflicts: # pom.xml
59 lines
1.6 KiB
XML
59 lines
1.6 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.github.civclassic</groupId>
|
|
<artifactId>civclassic-parent</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<groupId>me.josvth.randomspawn.randomspawn</groupId>
|
|
<artifactId>RandomSpawn</artifactId>
|
|
<version>2.9.1</version>
|
|
<name>RandomSpawn</name>
|
|
<url>https://github.com/Civclassic/random-spawn</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
<artifactId>paper-api</artifactId>
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.wimbli.WorldBorder</groupId>
|
|
<artifactId>WorldBorder</artifactId>
|
|
<version>1.10.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>isaac</groupId>
|
|
<artifactId>Bastion</artifactId>
|
|
<version>2.4.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.programmerdan.minecraft</groupId>
|
|
<artifactId>banstick</artifactId>
|
|
<version>1.2.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>vg.civcraft.mc.civmodcore</groupId>
|
|
<artifactId>CivModCore</artifactId>
|
|
<version>1.8.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>civ-github-repo</id>
|
|
<url>https://raw.githubusercontent.com/CivClassic/artifacts/master/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|