2020-06-23 01:57:27 +02:00
|
|
|
<?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>net.mindoverflow.hubthat</groupId>
|
|
|
|
<artifactId>HubThat</artifactId>
|
2020-06-25 20:45:26 +02:00
|
|
|
<version>10.1</version>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:svn:http://127.0.0.1/dummy</connection>
|
|
|
|
<developerConnection>scm:svn:https://127.0.0.1/dummy</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
<url>http://127.0.0.1/dummy</url>
|
|
|
|
</scm>
|
2020-06-23 01:57:27 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-06-25 20:45:26 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>buildnumber</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<format>{0,number}</format>
|
|
|
|
<items>
|
|
|
|
<item>buildNumber</item>
|
|
|
|
</items>
|
|
|
|
<doCheck>false</doCheck>
|
|
|
|
<doUpdate>false</doUpdate>
|
|
|
|
<revisionOnScmFailure>unknownbuild</revisionOnScmFailure>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-06-23 01:57:27 +02:00
|
|
|
</plugins>
|
2020-06-25 20:45:26 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<!-- Filter for version name in properties -->
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2020-06-23 01:57:27 +02:00
|
|
|
</build>
|
|
|
|
<properties>
|
2020-06-25 20:45:26 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2020-06-23 01:57:27 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-06-25 20:45:26 +02:00
|
|
|
<versionName>${project.version}</versionName>
|
2020-06-23 01:57:27 +02:00
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<!-- This adds the Spigot Maven repository to the build -->
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--This adds the Spigot API artifact to the build -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-06-25 20:45:26 +02:00
|
|
|
<version>1.16.1-R0.1-SNAPSHOT</version>
|
2020-06-23 01:57:27 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--This adds the Bukkit API artifact to the build -->
|
|
|
|
<!-- Do not include this in the pom.xml file if the Spigot API is already added -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|