2023-05-05 20:56:59 +02: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>
2023-05-05 21:18:31 +02:00
<groupId > net.chaoticbyte.xxsherly</groupId>
2023-05-05 20:56:59 +02:00
<artifactId > xxSherly</artifactId>
2023-05-07 17:47:08 +02:00
<version > 2.1</version>
2023-05-05 20:56:59 +02:00
<name > xxSherly</name>
<!-- FIXME change it to the project's website -->
<url > http://www.example.com</url>
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<maven.compiler.source > 1.7</maven.compiler.source>
<maven.compiler.target > 1.7</maven.compiler.target>
<maven.compiler.release > 11</maven.compiler.release>
</properties>
<dependencies >
2023-05-05 22:43:53 +02:00
<dependency >
<groupId > commons-codec</groupId>
<artifactId > commons-codec</artifactId>
<version > 1.15</version>
</dependency>
2023-05-06 20:01:17 +02:00
<dependency >
<groupId > commons-cli</groupId>
<artifactId > commons-cli</artifactId>
<version > 1.5.0</version>
</dependency>
2023-05-05 20:56:59 +02:00
</dependencies>
<build >
<pluginManagement > <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins >
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven - core/lifecycles.html#clean_Lifecycle -->
<plugin >
<artifactId > maven-clean-plugin</artifactId>
<version > 3.1.0</version>
</plugin>
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven - core/default - bindings.html#Plugin_bindings_for_jar_packaging -->
<plugin >
<artifactId > maven-resources-plugin</artifactId>
<version > 3.0.2</version>
</plugin>
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.8.0</version>
</plugin>
<plugin >
2023-05-05 22:43:53 +02:00
<artifactId > maven-assembly-plugin</artifactId>
<version > 3.5.0</version>
<configuration >
<descriptorRefs >
<descriptorRef > jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive >
<manifest >
<mainClass > net.chaoticbyte.xxsherly.App</mainClass>
</manifest>
</archive>
</configuration>
<executions >
<execution >
<id > make-assembly</id>
<phase > package</phase>
<goals >
<goal > single</goal>
</goals>
</execution>
</executions>
2023-05-05 20:56:59 +02:00
</plugin>
<plugin >
<artifactId > maven-jar-plugin</artifactId>
<version > 3.0.2</version>
<configuration >
<archive >
<manifest >
2023-05-05 21:18:31 +02:00
<mainClass > net.chaoticbyte.xxsherly.App</mainClass>
2023-05-05 20:56:59 +02:00
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>