jarupdater/pom.xml

115 lines
No EOL
3 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>eu.m724</groupId>
<artifactId>jarupdater</artifactId>
<version>0.3.1</version>
<properties>
<maven.compiler.release>17</maven.compiler.release>
</properties>
<licenses>
<license>
<name>0BSD</name>
<url>https://opensource.org/license/0bsd</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.1</version>
<optional>true</optional> <!-- only for HttpMetadataDAO -->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</build>
<name>jarupdater</name>
<url>https://git.m724.eu/m724/jarupdater</url>
<description>Simple updater for JAR files</description>
<developers>
<developer>
<id>jarupdater</id>
<name>jarupdater contributors</name>
<url>https://git.m724.eu/m724/jarupdater/activity/contributors</url>
</developer>
</developers>
<scm>
<connection>scm:git:git@git.m724.eu:m724/jarupdater.git</connection>
<developerConnection>scm:git:git@git.m724.eu:m724/jarupdater.git</developerConnection>
<url>https://git.m724.eu/m724/jarupdater</url>
<tag>jarupdater-0.3.1</tag>
</scm>
</project>