Update to EpicSpawners API 6.0.2

From https://gitlab.com/Songoda/epicspawners
This commit is contained in:
tastybento 2019-06-26 18:34:09 -07:00
parent fc577758e0
commit 56f9a0e36e
4 changed files with 184 additions and 198 deletions

361
pom.xml
View File

@ -1,207 +1,172 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>world.bentobox</groupId> <groupId>world.bentobox</groupId>
<artifactId>limits</artifactId> <artifactId>limits</artifactId>
<name>Limits</name> <name>Limits</name>
<version>0.2.3-SNAPSHOT</version> <version>0.2.3-SNAPSHOT</version>
<description>An add-on for BentoBox that limits blocks and entities on islands.</description> <description>An add-on for BentoBox that limits blocks and entities on islands.</description>
<url>https://github.com/BentoBoxWorld/Limits</url> <url>https://github.com/BentoBoxWorld/Limits</url>
<inceptionYear>2018</inceptionYear> <inceptionYear>2018</inceptionYear>
<scm> <scm>
<connection>scm:git:https://github.com/BentoBoxWorld/Limits.git</connection> <connection>scm:git:https://github.com/BentoBoxWorld/Limits.git</connection>
<developerConnection>scm:git:git@github.com:BentoBoxWorld/Limits.git</developerConnection> <developerConnection>scm:git:git@github.com:BentoBoxWorld/Limits.git</developerConnection>
<url>https://github.com/BentoBoxWorld/Limits</url> <url>https://github.com/BentoBoxWorld/Limits</url>
</scm> </scm>
<ciManagement> <ciManagement>
<system>jenkins</system> <system>jenkins</system>
<url>http://ci.codemc.org/job/BentoBoxWorld/job/Limits</url> <url>http://ci.codemc.org/job/BentoBoxWorld/job/Limits</url>
</ciManagement> </ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/BentoBoxWorld/Limits/issues</url>
</issueManagement>
<properties> <issueManagement>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <system>GitHub</system>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <url>https://github.com/BentoBoxWorld/Limits/issues</url>
<java.version>1.8</java.version> </issueManagement>
<powermock.version>1.7.4</powermock.version>
</properties>
<repositories> <properties>
<repository> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<id>spigot-repo</id> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> <java.version>1.8</java.version>
</repository> <powermock.version>1.7.4</powermock.version>
<repository> </properties>
<id>codemc</id>
<url>https://repo.codemc.org/repository/maven-snapshots/</url>
</repository>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
<dependencies> <repositories>
<dependency> <repository>
<groupId>org.spigotmc</groupId> <id>my-local-repo</id>
<artifactId>spigot-api</artifactId> <url>file://${basedir}/src/main/resources/jars</url>
<version>1.14.2-R0.1-SNAPSHOT</version> </repository>
<scope>provided</scope> <repository>
</dependency> <id>spigot-repo</id>
<dependency> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
<groupId>org.mockito</groupId> </repository>
<artifactId>mockito-all</artifactId> <repository>
<version>1.10.19</version> <id>codemc</id>
<scope>test</scope> <url>https://repo.codemc.org/repository/maven-snapshots/</url>
</dependency> </repository>
<dependency> <repository>
<groupId>org.powermock</groupId> <id>codemc-repo</id>
<artifactId>powermock-module-junit4</artifactId> <url>https://repo.codemc.org/repository/maven-public/</url>
<version>${powermock.version}</version> </repository>
<scope>test</scope> </repositories>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>1.5.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.songoda</groupId>
<artifactId>EpicSpawners-API</artifactId>
<version>5.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build> <dependencies>
<defaultGoal>clean package</defaultGoal> <dependency>
<resources> <groupId>org.spigotmc</groupId>
<resource> <artifactId>spigot-api</artifactId>
<directory>src/main/resources</directory> <version>1.13.2-R0.1-SNAPSHOT</version>
<filtering>true</filtering> <scope>provided</scope>
</resource> </dependency>
<resource> <dependency>
<directory>src/main/resources/locales</directory> <groupId>org.mockito</groupId>
<targetPath>./locales</targetPath> <artifactId>mockito-all</artifactId>
<filtering>false</filtering> <version>1.10.19</version>
</resource> <scope>test</scope>
</resources> </dependency>
<plugins> <dependency>
<plugin> <groupId>org.powermock</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>powermock-module-junit4</artifactId>
<artifactId>maven-clean-plugin</artifactId> <version>${powermock.version}</version>
<version>3.1.0</version> <scope>test</scope>
</plugin> </dependency>
<plugin> <dependency>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.powermock</groupId>
<artifactId>maven-resources-plugin</artifactId> <artifactId>powermock-api-mockito</artifactId>
<version>3.1.0</version> <version>${powermock.version}</version>
</plugin> <scope>test</scope>
<plugin> </dependency>
<groupId>org.apache.maven.plugins</groupId> <dependency>
<artifactId>maven-compiler-plugin</artifactId> <groupId>world.bentobox</groupId>
<version>3.7.0</version> <artifactId>bentobox</artifactId>
<configuration> <version>1.5.0</version>
<source>${java.version}</source> <scope>provided</scope>
<target>${java.version}</target> </dependency>
</configuration> <dependency>
</plugin> <groupId>com.songoda</groupId>
<plugin> <artifactId>EpicSpawners-API</artifactId>
<groupId>org.apache.maven.plugins</groupId> <version>6.0.2</version>
<artifactId>maven-surefire-plugin</artifactId> <scope>provided</scope>
<version>2.22.0</version> </dependency>
</plugin> </dependencies>
<plugin>
<groupId>org.apache.maven.plugins</groupId> <build>
<artifactId>maven-jar-plugin</artifactId> <defaultGoal>clean package</defaultGoal>
<version>3.1.0</version> <resources>
</plugin> <resource>
<plugin> <directory>src/main/resources</directory>
<groupId>org.apache.maven.plugins</groupId> <filtering>true</filtering>
<artifactId>maven-javadoc-plugin</artifactId> </resource>
<version>3.0.1</version> <resource>
<configuration> <directory>src/main/resources/locales</directory>
<show>public</show> <targetPath>./locales</targetPath>
<failOnError>false</failOnError> <filtering>false</filtering>
<additionalJOption>-Xdoclint:none</additionalJOption> </resource>
</configuration> </resources>
<executions> <plugins>
<execution> <plugin>
<id>attach-javadocs</id> <groupId>org.apache.maven.plugins</groupId>
<goals> <artifactId>maven-clean-plugin</artifactId>
<goal>jar</goal> <version>3.1.0</version>
</goals> </plugin>
</execution> <plugin>
</executions> <groupId>org.apache.maven.plugins</groupId>
</plugin> <artifactId>maven-resources-plugin</artifactId>
<plugin> <version>3.1.0</version>
<groupId>org.apache.maven.plugins</groupId> </plugin>
<artifactId>maven-source-plugin</artifactId> <plugin>
<version>3.0.1</version> <groupId>org.apache.maven.plugins</groupId>
<executions> <artifactId>maven-compiler-plugin</artifactId>
<execution> <version>3.7.0</version>
<id>attach-sources</id> <configuration>
<goals> <source>${java.version}</source>
<goal>jar-no-fork</goal> <target>${java.version}</target>
</goals> </configuration>
</execution> </plugin>
</executions> <plugin>
</plugin> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <version>2.22.0</version>
<artifactId>maven-shade-plugin</artifactId> </plugin>
<version>3.1.1</version> <plugin>
<configuration> <groupId>org.apache.maven.plugins</groupId>
<minimizeJar>false</minimizeJar> <artifactId>maven-jar-plugin</artifactId>
</configuration> <version>3.1.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version> <version>2.5.2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version> <version>2.8.2</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version> <version>0.8.1</version>
<configuration> <configuration>
<append>true</append> <append>true</append>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>pre-unit-test</id> <id>pre-unit-test</id>
<goals> <goals>
<goal>prepare-agent</goal> <goal>prepare-agent</goal>
</goals> </goals>
</execution> </execution>
<execution> <execution>
<id>post-unit-test</id> <id>post-unit-test</id>
<goals> <goals>
<goal>report</goal> <goal>report</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.songoda</groupId>
<artifactId>EpicSpawners-API</artifactId>
<version>6.0.2</version>
<description>POM was created from install:install-file</description>
</project>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>com.songoda</groupId>
<artifactId>EpicSpawners-API</artifactId>
<versioning>
<release>6.0.2</release>
<versions>
<version>6.0.2</version>
</versions>
<lastUpdated>20190627012640</lastUpdated>
</versioning>
</metadata>