forked from chipmunkmc/chipmunkbot
94 lines
2.6 KiB
XML
94 lines
2.6 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>land.chipmunk</groupId>
|
|
<artifactId>chipmunkbot</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>rolling</version>
|
|
<name>chipmunkbot</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>minecraft-libraries</id>
|
|
<name>Minecraft Libraries</name>
|
|
<url>https://libraries.minecraft.net</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>CollabNet</id>
|
|
<url>https://repo.opencollab.dev/main/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CollabNetSnapshots</id>
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CollabNetReleases</id>
|
|
<url>https://repo.opencollab.dev/maven-releases/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.geysermc.mcprotocollib</groupId>
|
|
<artifactId>protocol</artifactId>
|
|
<version>1.21-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.9.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.24</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mojang</groupId>
|
|
<artifactId>brigadier</artifactId>
|
|
<version>1.0.18</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- Build an executable JAR -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>land.chipmunk.chipmunkbot.Main</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|