# Conflicts: # src/main/java/com/alttd/afkdectector/AFKCheckTimer.java # src/main/java/com/alttd/afkdectector/MessageTimer.java # src/main/java/com/alttd/afkdectector/afkplayer/AFKPlayer.java # src/main/java/com/alttd/afkdectector/command/AFKCheckCommand.java # src/main/java/com/alttd/afkdectector/command/AFKListCommand.java
47 lines
1.5 KiB
XML
Executable File
47 lines
1.5 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.4</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>17</source>
|
|
<target>17</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>AlttdRepo-snapshots</id>
|
|
<name>Altitude Maven Repo</name>
|
|
<url>https://repo.destro.xyz/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alttd</groupId>
|
|
<artifactId>Galaxy-API</artifactId>
|
|
<version>1.18.2-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |