2020-01-30 11:50:29 +00: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>nl.SBDeveloper</groupId>
|
|
|
|
<artifactId>V10Lift2</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>V10Lift</name>
|
2020-02-08 18:25:59 +00:00
|
|
|
<version>0.5.1</version>
|
2020-01-30 11:50:29 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2020-02-08 11:13:13 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>iobyte-nexus</id>
|
|
|
|
<url>https://nexus.iobyte.nl/repository/maven-releases</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2020-01-30 11:50:29 +00:00
|
|
|
<build>
|
|
|
|
<directory>target</directory>
|
2020-02-03 14:26:13 +00:00
|
|
|
<finalName>V10Lift v${project.version}</finalName>
|
2020-01-30 11:50:29 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2020-02-01 09:46:33 +00:00
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>config.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2020-01-30 11:50:29 +00:00
|
|
|
</resources>
|
|
|
|
<plugins>
|
2020-02-08 11:13:13 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
2020-01-30 11:50:29 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-02-12 12:28:30 +00:00
|
|
|
<version>3.2.2</version>
|
2020-01-30 11:50:29 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>shade</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-02-08 09:59:57 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-02-08 21:11:53 +00:00
|
|
|
<version>3.8.1</version>
|
2020-02-08 09:59:57 +00:00
|
|
|
<configuration>
|
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-02-08 10:56:17 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
|
|
|
<version>1.18.10.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>delombok</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<sourceFileIncludes>
|
|
|
|
<include>nl/SBDeveloper/V10Lift/API/*.java</include>
|
|
|
|
<include>nl/SBDeveloper/V10Lift/API/Objects/*.java</include>
|
|
|
|
</sourceFileIncludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-02-08 11:13:13 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2020-02-08 21:11:58 +00:00
|
|
|
<version>2.8.2</version>
|
2020-02-08 11:13:13 +00:00
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
2020-02-08 23:19:49 +00:00
|
|
|
<version>1.6.8</version>
|
2020-02-08 11:13:13 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-deploy</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>deploy</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>nexus</serverId>
|
|
|
|
<nexusUrl>https://nexus.iobyte.nl/</nexusUrl>
|
|
|
|
<skipStaging>true</skipStaging>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-01-30 11:50:29 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-02-06 18:46:15 +00:00
|
|
|
<repository>
|
|
|
|
<id>iobyte-repo</id>
|
|
|
|
<url>https://nexus.iobyte.nl/repository/maven-public/</url>
|
|
|
|
</repository>
|
2020-01-30 11:50:29 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>3.4.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2020-02-08 22:32:12 +00:00
|
|
|
<version>1.7.30</version>
|
2020-01-30 11:50:29 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2020-02-08 22:32:07 +00:00
|
|
|
<version>1.18.12</version>
|
2020-01-30 11:50:29 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-02-06 18:46:15 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>nl.SBDevelopment</groupId>
|
|
|
|
<artifactId>SBUtilities</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<classifier>SBUtilities</classifier>
|
2020-02-06 19:47:47 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2020-02-08 09:59:57 +00:00
|
|
|
<version>2.10.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
<artifactId>jackson-module-parameter-names</artifactId>
|
|
|
|
<version>2.10.2</version>
|
2020-02-06 18:46:15 +00:00
|
|
|
</dependency>
|
2020-01-30 11:50:29 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|