2022-01-29 14:01:49 +01: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>
|
2024-09-20 17:28:14 +02:00
|
|
|
<groupId>eu.m724</groupId>
|
2022-01-29 14:01:49 +01:00
|
|
|
<artifactId>giants</artifactId>
|
2024-09-21 09:57:29 +02:00
|
|
|
<version>2.0.2</version>
|
2022-01-29 14:01:49 +01:00
|
|
|
|
|
|
|
<properties>
|
2024-09-20 17:28:14 +02:00
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2022-01-29 14:01:49 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2024-09-20 17:28:14 +02:00
|
|
|
<repository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</repository>
|
2022-01-29 14:01:49 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2024-09-20 17:28:14 +02:00
|
|
|
<version>1.21.1-R0.1-SNAPSHOT</version>
|
2022-01-29 14:01:49 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-01-29 14:24:20 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2024-09-20 17:28:14 +02:00
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
2022-01-29 14:24:20 +01:00
|
|
|
</resource>
|
|
|
|
</resources>
|
2022-01-31 12:37:41 +01:00
|
|
|
<plugins>
|
2024-09-20 17:28:14 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<configuration>
|
|
|
|
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-01-31 12:37:41 +01:00
|
|
|
</plugins>
|
2022-01-29 14:24:20 +01:00
|
|
|
</build>
|
2024-09-20 17:28:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/giants.git</developerConnection>
|
2024-09-21 09:57:29 +02:00
|
|
|
<tag>giants-2.0.2</tag>
|
2024-09-20 17:28:14 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>m724</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2022-01-29 14:01:49 +01:00
|
|
|
</project>
|