mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-02-09 08:01:39 +01:00
57 lines
1.8 KiB
XML
57 lines
1.8 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>SongodaCore</artifactId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<version>1</version>
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<finalName>SongodaCore-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>private</id>
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.14</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
<artifactId>holographicdisplays-api</artifactId>
|
|
<version>2.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.tnemc</groupId>
|
|
<artifactId>Reserve</artifactId>
|
|
<version>0.1.3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.black_ixx</groupId>
|
|
<artifactId>playerpoints</artifactId>
|
|
<version>2.1.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl</groupId>
|
|
<artifactId>vault</artifactId>
|
|
<version>1.7.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|