jarupdater-spigot/pom.xml

125 lines
No EOL
4.1 KiB
XML

<?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>eu.m724</groupId>
<artifactId>jarupdater-spigot</artifactId>
<version>0.0.2</version>
<properties>
<maven.compiler.release>17</maven.compiler.release>
</properties>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>eu.m724</groupId>
<artifactId>jarupdater</artifactId>
<version>0.3.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<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-spigot</name>
<url>https://git.m724.eu/m724/jarupdater-spigot</url>
<description>Simple updater for Spigot plugin .jars</description>
<developers>
<developer>
<id>jarupdater-spigot</id>
<name>jarupdater-spigot contributors</name>
<url>https://git.m724.eu/m724/jarupdater-spigot/activity/contributors</url>
</developer>
</developers>
<licenses>
<license>
<name>0BSD</name>
<url>https://opensource.org/license/0bsd</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>m724-repo</id>
<url>https://git.m724.eu/api/packages/m724/maven</url>
</repository>
<snapshotRepository>
<id>m724-repo</id>
<url>https://git.m724.eu/api/packages/m724/maven</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git@git.m724.eu:m724/jarupdater-spigot.git</connection>
<developerConnection>scm:git:git@git.m724.eu:m724/jarupdater-spigot.git</developerConnection>
<url>https://git.m724.eu/m724/jarupdater-spigot</url>
<tag>jarupdater-spigot-0.0.2</tag>
</scm>
</project>