2021-01-30 18:59:42 +01: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>world.bentobox</groupId>
|
|
|
|
<artifactId>boxed</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
|
|
|
<name>Boxed</name>
|
|
|
|
<description>Boxed is an add-on for BentoBox that puts players into a tiny expandable island area.</description>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Boxed</url>
|
|
|
|
<inceptionYear>2017</inceptionYear>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>tastybento</id>
|
|
|
|
<email>tastybento@bentobox.world</email>
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
<roles>
|
|
|
|
<role>Lead Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/BentoBoxWorld/Boxed.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:BentoBoxWorld/Boxed.git</developerConnection>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Boxed</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.codemc.org/job/BentoBoxWorld/job/Boxed</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/BentoBoxWorld/Boxed/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>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<!-- Non-minecraft related dependencies -->
|
|
|
|
<powermock.version>2.0.2</powermock.version>
|
|
|
|
<!-- More visible way how to change dependency versions -->
|
|
|
|
<spigot.version>1.16.5-R0.1-SNAPSHOT</spigot.version>
|
2021-03-07 23:01:44 +01:00
|
|
|
<bentobox.version>1.16.0</bentobox.version>
|
2021-01-30 18:59:42 +01:00
|
|
|
<!-- Revision variable removes warning about dynamic version -->
|
|
|
|
<revision>${build.version}-SNAPSHOT</revision>
|
|
|
|
<!-- Do not change unless you want different name for local builds. -->
|
|
|
|
<build.number>-LOCAL</build.number>
|
|
|
|
<!-- This allows to change between versions. -->
|
2021-03-07 23:02:38 +01:00
|
|
|
<build.version>1.0.1</build.version>
|
2021-03-03 17:42:18 +01:00
|
|
|
|
|
|
|
<sonar.projectKey>BentoBoxWorld_Boxed</sonar.projectKey>
|
|
|
|
<sonar.organization>bentobox-world</sonar.organization>
|
|
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
2021-01-30 18:59:42 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<!-- Profiles will allow to automatically change build version. -->
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<!-- ci profile is activated if exist environment variable BUILD_NUMBER. -->
|
|
|
|
<!-- It replaces ${build.number} that is currently '-LOCAL' with
|
|
|
|
correct build number from JENKINS machine. -->
|
|
|
|
<id>ci</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env.BUILD_NUMBER</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<!-- Override only if necessary -->
|
|
|
|
<build.number>-b${env.BUILD_NUMBER}</build.number>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<!-- Master profile is activated if exist environment variable
|
|
|
|
GIT_BRANCH and its value is origin/master. -->
|
|
|
|
<!-- It will replace 'revision' with '${build.version}' so it
|
|
|
|
removes '-SNAPSHOT' string at the end. -->
|
|
|
|
<!-- Also, as this is release build, build number can be set
|
|
|
|
to empty string. -->
|
|
|
|
<!-- This profile will be used only if exist environment variable
|
|
|
|
GIT_BRANCH with value origin/master. -->
|
|
|
|
<id>master</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env.GIT_BRANCH</name>
|
|
|
|
<value>origin/master</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<!-- Override only if necessary -->
|
|
|
|
<revision>${build.version}</revision>
|
|
|
|
<!-- Empties build number variable. -->
|
|
|
|
<build.number></build.number>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<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>
|
|
|
|
<!-- Spigot API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>${spigot.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Mockito (Unit testing) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>world.bentobox</groupId>
|
|
|
|
<artifactId>bentobox</artifactId>
|
|
|
|
<version>${bentobox.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nl.rutgerkok</groupId>
|
|
|
|
<artifactId>worldgeneratorapi</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
<scope>provided</scope> <!-- Important, otherwise WorldGeneratorApi will be placed in your JAR file
|
|
|
|
if you're using maven-shade-plugin -->
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<!-- By default ${revision} is ${build.version}-SNAPSHOT -->
|
|
|
|
<!-- If GIT_BRANCH variable is set to origin/master, then it will
|
|
|
|
be only ${build.version}. -->
|
|
|
|
|
|
|
|
<!-- By default ${build.number} is -LOCAL. -->
|
|
|
|
<!-- If the BUILD_NUMBER variable is set, then it will be -b[number]. -->
|
|
|
|
<!-- If GIT_BRANCH variable is set to origin/master, then it will
|
|
|
|
be the empty string. -->
|
|
|
|
<finalName>${project.name}-${revision}${build.number}</finalName>
|
|
|
|
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources/locales</directory>
|
|
|
|
<targetPath>./locales</targetPath>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources/blueprints</directory>
|
|
|
|
<targetPath>./blueprints</targetPath>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>*.blu</include>
|
|
|
|
<include>*.json</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<nonFilteredFileExtensions>
|
|
|
|
<nonFilteredFileExtension>blu</nonFilteredFileExtension>
|
|
|
|
</nonFilteredFileExtensions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<show>public</show>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.3</version>
|
|
|
|
<configuration>
|
|
|
|
<append>true</append>
|
|
|
|
<excludes>
|
|
|
|
<!-- This is required to prevent Jacoco from adding
|
|
|
|
synthetic fields to a JavaBean class (causes errors in testing) -->
|
|
|
|
<exclude>**/*Names*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>pre-unit-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>post-unit-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|