51 lines
1.7 KiB
XML
Executable File
51 lines
1.7 KiB
XML
Executable File
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>groupId</groupId>
|
|
<artifactId>AFKDetector</artifactId>
|
|
<version>2.1.3</version>
|
|
<name>AFKDetector</name>
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>Alttd-Nexus</id>
|
|
<url>http://leo:8081/snapshots/</url>
|
|
</repository>
|
|
<repository> <!-- can be removed when galaxy api is fixed, I fucked up when shading this in -->
|
|
<id>dv8tion</id>
|
|
<name>m2-dv8tion</name>
|
|
<url>https://m2.dv8tion.net/releases</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency><!-- Galaxy -->
|
|
<groupId>com.alttd</groupId>
|
|
<artifactId>galaxy-api</artifactId>
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |