mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 18:45:34 +01:00
91 lines
3.1 KiB
XML
91 lines
3.1 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>
|
|
<!-- sk89q-repo and spigot-repo are required for worldguard -->
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>https://maven.sk89q.com/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.14.4</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>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-nop</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial</groupId>
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
<version>3.23.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
<version>7.0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|