ChestsPlusPlus/ChestsPlusPlus_1_16/pom.xml

54 lines
1.8 KiB
XML
Raw Permalink Normal View History

2020-07-03 01:42:55 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<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">
2020-07-03 15:23:09 +02:00
2020-07-03 01:42:55 +02:00
<parent>
2020-07-03 15:23:09 +02:00
<artifactId>ChestsPlusPlus-Parent</artifactId>
<groupId>com.jamesdpeters.minecraft.chests</groupId>
<version>1.0-SNAPSHOT</version>
2020-07-03 15:23:09 +02:00
<relativePath>../pom.xml</relativePath>
2020-07-03 01:42:55 +02:00
</parent>
<modelVersion>4.0.0</modelVersion>
2020-07-03 15:23:09 +02:00
<packaging>jar</packaging>
2020-07-03 01:42:55 +02:00
<artifactId>ChestsPlusPlus_1_16</artifactId>
<version>1.0-SNAPSHOT</version>
2020-07-03 01:42:55 +02:00
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
2020-07-03 15:23:09 +02:00
<groupId>com.jamesdpeters.minecraft.chests</groupId>
<artifactId>ChestsPlusPlus-API</artifactId>
<version>1.0-SNAPSHOT</version>
2020-07-03 01:42:55 +02:00
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2020-07-03 15:23:09 +02:00
<dependency>
<groupId>com.jamesdpeters.minecraft.chests</groupId>
<artifactId>ChestsPlusPlus_1_15</artifactId>
<version>1.0-SNAPSHOT</version>
2020-07-03 15:23:09 +02:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2020-07-03 01:42:55 +02:00
</dependencies>
</project>