WorldGuardWrapper/pom.xml

199 lines
7.3 KiB
XML
Raw Normal View History

2018-08-02 01:04:23 +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>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper-parent</artifactId>
<version>1.2.1-SNAPSHOT</version>
2018-08-02 01:04:23 +02:00
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>library</module>
2018-08-02 01:04:23 +02:00
<module>implementation</module>
</modules>
<name>WorldGuardWrapper-Parent</name>
<description>A wrapper for the WorldGuard API that allows plugins to support both v6 and v7 APIs.</description>
<url>https://github.com/CodeMC/WorldGuardWrapper</url>
<inceptionYear>2018</inceptionYear>
<scm>
<connection>scm:git:https://github.com/CodeMC/WorldGuardWrapper.git</connection>
<developerConnection>scm:git:git@github.com:CodeMC/WorldGuardWrapper.git</developerConnection>
<url>https://github.com/CodeMC/WorldGuardWrapper</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://ci.codemc.io/job/CodeMC/job/WorldGuardWrapper/</url>
2018-08-02 01:04:23 +02:00
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/CodeMC/WorldGuardWrapper/issues</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.org/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.org/repository/maven-releases/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spigot-api.version>1.20.1-R0.1-SNAPSHOT</spigot-api.version>
2018-08-02 01:04:23 +02:00
</properties>
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
</repositories>
2020-10-22 03:33:33 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot-api.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<exclusion>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-chat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
2020-10-22 03:33:33 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.29.2-GA</version>
2020-10-22 03:33:33 +02:00
<optional>true</optional>
</dependency>
2021-09-27 20:59:25 +02:00
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
2020-10-22 03:33:33 +02:00
</dependencies>
</dependencyManagement>
2018-08-02 01:04:23 +02:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
2021-09-27 20:59:25 +02:00
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
2018-08-02 01:04:23 +02:00
</dependencies>
<build>
<defaultGoal>clean package</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.1</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
2018-08-02 01:04:23 +02:00
<configuration>
<source>1.8</source>
<target>1.8</target>
<release>8</release>
2018-08-02 01:04:23 +02:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
2018-08-02 01:04:23 +02:00
<configuration>
<show>public</show>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.0</version>
2020-10-22 03:33:33 +02:00
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
2018-08-02 01:04:23 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
2018-08-02 01:04:23 +02:00
</plugin>
</plugins>
</build>
</project>