221 lines
No EOL
9.4 KiB
XML
221 lines
No EOL
9.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2025 blog-software-java developers
|
|
~ blog-software-java is licensed under the GNU General Public License. See the LICENSE.md file
|
|
~ in the project root for the full license text.
|
|
-->
|
|
|
|
<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>eu.m724</groupId>
|
|
<artifactId>blog</artifactId>
|
|
<version>0.0.2</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<exec.mainClass>eu.m724.blog.Main</exec.mainClass>
|
|
|
|
<jarsigner.keystore>${project.basedir}/testkeystore.jks</jarsigner.keystore>
|
|
<jarsigner.alias>testkey</jarsigner.alias>
|
|
<jarsigner.storepass>123456</jarsigner.storepass>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.9.0</version> <!-- Released Aug 14, 2024 -->
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
<version>7.1.0.202411261347-r</version> <!-- Released Dec 04, 2024 -->
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.pebbletemplates/pebble -->
|
|
<dependency>
|
|
<groupId>io.pebbletemplates</groupId>
|
|
<artifactId>pebble</artifactId>
|
|
<version>3.2.3</version> <!-- Released Feb 04, 2025 -->
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.snakeyaml/snakeyaml-engine -->
|
|
<dependency>
|
|
<groupId>org.snakeyaml</groupId>
|
|
<artifactId>snakeyaml-engine</artifactId>
|
|
<version>2.9</version> <!-- Released Jan 15, 2025 -->
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.18.0</version> <!-- Released Nov 19, 2024 -->
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId> <!-- https://stackoverflow.com/questions/32184114 -->
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.27.1</version> <!-- Released Aug 20, 2024 -->
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.github.luben/zstd-jni -->
|
|
<dependency>
|
|
<groupId>com.github.luben</groupId>
|
|
<artifactId>zstd-jni</artifactId>
|
|
<version>1.5.7-1</version> <!-- Released Feb 20, 2025 -->
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>2.0.17</version> <!-- Released Feb 25, 2025 -->
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>2.0.17</version> <!-- Released Feb 25, 2025 -->
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.4.2</version> <!-- Released Jun 19, 2024 -->
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>${exec.mainClass}</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-shade-plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.6.0</version> <!-- Released May 31, 2024 -->
|
|
<executions>
|
|
<execution>
|
|
<id>shade-mini</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<minimizeJar>true</minimizeJar>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
<shadedClassifierName>standalone-mini</shadedClassifierName>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>com.github.luben:zstd-jni</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>shade-full</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<minimizeJar>true</minimizeJar>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
<shadedClassifierName>standalone-full</shadedClassifierName>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jarsigner-plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
|
<version>3.1.0</version> <!-- Released Sep 03, 2024 -->
|
|
<executions>
|
|
<execution>
|
|
<id>sign</id>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>verify</id>
|
|
<goals>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<keystore>${jarsigner.keystore}</keystore>
|
|
<alias>${jarsigner.alias}</alias>
|
|
<storepass>${jarsigner.storepass}</storepass>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>3.1.1</version> <!-- Released Jul 14, 2024 -->
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>m724-repo</id>
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>m724-repo</id>
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<scm>
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/blog-software-java.git</developerConnection>
|
|
<tag>blog-0.0.2</tag>
|
|
</scm>
|
|
</project> |