jarupdater/pom.xml

68 lines
2 KiB
XML
Raw Normal View History

2024-06-23 18:07:25 +02:00
<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.1.9-SNAPSHOT</version>
2024-06-23 18:07:25 +02:00
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<licenses>
<license>
<name>GPL-3.0-or-later</name>
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
<distribution>repo</distribution>
<comments>The GNU General Public License is a free, copyleft license.</comments>
</license>
</licenses>
2024-06-23 18:07:25 +02:00
<repositories>
<repository>
2024-06-25 14:29:08 +02:00
<id>m724</id>
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
2024-06-23 18:07:25 +02:00
</repository>
</repositories>
2024-06-25 14:26:36 +02:00
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
<optional>true</optional> <!-- only for giteametadatadao -->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
2024-06-23 18:07:25 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
2024-06-23 18:07:25 +02:00
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
2024-06-25 14:29:08 +02:00
<id>m724</id>
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
2024-06-23 18:07:25 +02:00
</repository>
<snapshotRepository>
2024-06-25 14:29:08 +02:00
<id>m724</id>
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
2024-06-23 18:07:25 +02:00
</snapshotRepository>
</distributionManagement>
<scm>
2024-06-25 14:29:08 +02:00
<developerConnection>scm:git:git@git.m724.eu:Minecon724/jarupdater.git</developerConnection>
<tag>jarupdater-0.1.7</tag>
</scm>
2024-06-23 18:07:25 +02:00
</project>