2023-05-07 05:51:57 +00: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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.tinyplantnews.priestess</groupId>
|
|
|
|
<artifactId>Priestess</artifactId>
|
2023-05-07 23:54:46 +00:00
|
|
|
<name>Priestesss of the Bean Goose Cult</name>
|
2023-05-08 00:15:39 +00:00
|
|
|
<version>0.2</version>
|
2023-05-07 05:51:57 +00:00
|
|
|
<packaging>jar</packaging>
|
2023-05-07 23:54:46 +00:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://tinyplantnews.com/git/Priestess.git</connection>
|
|
|
|
<developerConnection>scm:git:https://twi@10.0.0.1:/srv/git/Priestess.git</developerConnection>
|
|
|
|
</scm>
|
2023-05-07 05:51:57 +00:00
|
|
|
<build>
|
2023-05-07 23:54:46 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>buildnumber</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<format>{0,number}</format>
|
|
|
|
<items>
|
|
|
|
<item>buildNumber</item>
|
|
|
|
</items>
|
|
|
|
<doCheck>false</doCheck>
|
|
|
|
<doUpdate>false</doUpdate>
|
|
|
|
<revisionOnScmFailure>unknownbuild</revisionOnScmFailure>
|
|
|
|
</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>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<mainClass>com.tinyplantnews.priestess.Priestess</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<finalName>${project.artifactId}-${project.version}.${buildNumber}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java/com/tinyplantnews/priestess/version</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2023-05-07 05:51:57 +00:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
2023-05-07 23:54:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.discord4j</groupId>
|
|
|
|
<artifactId>discord4j-core</artifactId>
|
|
|
|
<version>3.2.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>5.6.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
<version>5.6.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.6.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-05-07 05:51:57 +00:00
|
|
|
</dependencies>
|
|
|
|
<properties>
|
2023-05-07 23:54:46 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>18</maven.compiler.source>
|
|
|
|
<maven.compiler.target>18</maven.compiler.target>
|
|
|
|
<exec.mainClass>com.tinyplantnews.priestess.Priestess</exec.mainClass>
|
2023-05-07 05:51:57 +00:00
|
|
|
</properties>
|
2023-05-07 23:54:46 +00:00
|
|
|
</project>
|