2023-03-18 07:04:06 -04:00
|
|
|
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.chayapak1</groupId>
|
|
|
|
<artifactId>chomens_bot</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.ricksbrown</groupId>
|
|
|
|
<artifactId>cowsay</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2023-03-27 01:53:05 -04:00
|
|
|
<mainClass>land.chipmunk.chayapak.chomens_bot.Main</mainClass>
|
2023-03-18 07:04:06 -04:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<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>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>opencollab</id>
|
2023-04-20 06:01:17 -04:00
|
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
2023-03-18 07:04:06 -04:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>minecraft-libraries</id>
|
|
|
|
<name>Minecraft Libraries</name>
|
|
|
|
<url>https://libraries.minecraft.net</url>
|
|
|
|
</repository>
|
2023-03-26 06:34:35 -04:00
|
|
|
<repository>
|
|
|
|
<id>dv8tion</id>
|
|
|
|
<name>m2-dv8tion</name>
|
|
|
|
<url>https://m2.dv8tion.net/releases</url>
|
|
|
|
</repository>
|
2023-03-18 07:04:06 -04:00
|
|
|
</repositories>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
</project>
|