42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
|
<?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">
|
||
|
<parent>
|
||
|
<artifactId>ButtonCore</artifactId>
|
||
|
<groupId>com.github.TBMCPlugins</groupId>
|
||
|
<version>master-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>BuildConfigUpdater</artifactId>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>Jitpack</id>
|
||
|
<url>https://jitpack.io/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>spigot-repo</id>
|
||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.github.TBMCPlugins.ButtonCore</groupId>
|
||
|
<artifactId>ButtonCore</artifactId>
|
||
|
<version>master-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency> <!-- Needed for TBMCCoreAPI -->
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|