2018-08-16 09:02:40 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2018-07-03 06:57:56 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2019-08-11 21:39:18 +02:00
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>
2018-05-21 01:08:31 +02:00
2019-08-11 21:39:18 +02:00
<groupId > world.bentobox</groupId>
<artifactId > acidisland</artifactId>
<version > ${revision}</version>
2018-08-16 09:02:40 +02:00
2019-08-11 21:39:18 +02:00
<name > AcidIsland</name>
<description > AcidIsland is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like SkyBlock or AcidIsland.</description>
<url > https://github.com/BentoBoxWorld/AcidIsland</url>
<inceptionYear > 2017</inceptionYear>
2018-08-16 09:02:40 +02:00
2019-08-11 21:39:18 +02:00
<developers >
<developer >
<id > tastybento</id>
<email > tastybento@bentobox.world</email>
<timezone > -8</timezone>
<roles >
<role > Lead Developer</role>
</roles>
</developer>
</developers>
2018-08-16 09:02:40 +02:00
2019-08-11 21:39:18 +02:00
<scm >
<connection > scm:git:https://github.com/BentoBoxWorld/AcidIsland.git</connection>
<developerConnection > scm:git:git@github.com:BentoBoxWorld/AcidIsland.git</developerConnection>
<url > https://github.com/BentoBoxWorld/AcidIsland</url>
</scm>
2018-10-25 10:51:53 +02:00
2019-08-11 21:39:18 +02:00
<ciManagement >
<system > jenkins</system>
<url > http://ci.codemc.org/job/BentoBoxWorld/job/AcidIsland</url>
</ciManagement>
2018-08-16 09:02:40 +02:00
2019-08-11 21:39:18 +02:00
<issueManagement >
<system > GitHub</system>
<url > https://github.com/BentoBoxWorld/AcidIsland/issues</url>
</issueManagement>
2018-10-25 10:51:53 +02:00
2019-08-11 21:39:18 +02:00
<distributionManagement >
<snapshotRepository >
2024-11-08 23:59:21 +01:00
<id > codemc</id>
<url > https://repo.codemc.org/repository/bentoboxworld/</url>
2019-08-11 21:39:18 +02:00
</snapshotRepository>
</distributionManagement>
2018-08-16 09:02:40 +02:00
2019-08-11 21:39:18 +02:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
2024-11-08 03:19:40 +01:00
<java.version > 21</java.version>
2019-08-11 21:39:18 +02:00
<!-- Non - minecraft related dependencies -->
2021-06-20 18:10:29 +02:00
<powermock.version > 2.0.9</powermock.version>
2019-08-11 21:39:18 +02:00
<!-- More visible way how to change dependency versions -->
2024-11-08 03:19:40 +01:00
<spigot.version > 1.21.3-R0.1-SNAPSHOT</spigot.version>
2024-11-08 23:59:21 +01:00
<bentobox.version > 2.7.1-SNAPSHOT</bentobox.version>
2019-08-11 21:39:18 +02: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. -->
2024-02-24 07:14:47 +01:00
<build.version > 1.19.0</build.version>
2021-03-06 21:32:35 +01:00
<!-- Sonar Cloud -->
<sonar.projectKey > BentoBoxWorld_AcidIsland</sonar.projectKey>
<sonar.organization > bentobox-world</sonar.organization>
<sonar.host.url > https://sonarcloud.io</sonar.host.url>
2019-08-11 21:39:18 +02:00
</properties>
2018-08-25 00:39:02 +02:00
2019-08-11 21:39:18 +02:00
<!-- 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>
2018-08-25 00:39:02 +02:00
2019-08-11 21:39:18 +02:00
<repositories >
<repository >
<id > spigot-repo</id>
<url > https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
</repository>
<repository >
<id > codemc-repo</id>
2024-11-08 23:59:21 +01:00
<url > https://repo.codemc.io/repository/bentoboxworld/</url>
2021-11-14 01:47:21 +01:00
</repository>
2020-08-14 01:51:14 +02:00
<repository >
<id > ess-repo</id>
<url > https://ci.ender.zone/plugin/repository/everything/</url>
</repository>
2019-08-11 21:39:18 +02:00
</repositories>
2019-05-05 08:27:56 +02:00
2019-08-11 21:39:18 +02:00
<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>
2021-06-20 18:10:29 +02:00
<version > 3.11.1</version>
2019-08-11 21:39:18 +02:00
<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>
2019-11-03 22:37:29 +01:00
<!-- Static analysis -->
<!-- We are using Eclipse's annotations. If you're using IDEA, update
your project settings to take these into account for in real time static
analysis -->
<dependency >
<groupId > org.eclipse.jdt</groupId>
<artifactId > org.eclipse.jdt.annotation</artifactId>
2021-06-20 18:10:29 +02:00
<version > 2.2.600</version>
2019-11-03 22:37:29 +01:00
</dependency>
2020-08-14 01:51:14 +02:00
<!-- EssentialsX -->
<dependency >
<groupId > net.ess3</groupId>
<artifactId > EssentialsX</artifactId>
<version > 2.17.2</version>
<scope > provided</scope>
</dependency>
2019-08-11 21:39:18 +02:00
</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 >
2021-06-20 18:10:29 +02:00
<release > ${java.version}</release>
2019-08-11 21:39:18 +02:00
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
2021-06-20 17:37:38 +02:00
<version > 3.0.0-M5</version>
<configuration >
<argLine >
2023-02-10 00:10:58 +01:00
${argLine}
2021-10-02 02:44:09 +02:00
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.math=ALL-UNNAMED
--add-opens java.base/java.io=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens
java.base/java.util.stream=ALL-UNNAMED
--add-opens java.base/java.text=ALL-UNNAMED
--add-opens
java.base/java.util.regex=ALL-UNNAMED
--add-opens
java.base/java.nio.channels.spi=ALL-UNNAMED
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
--add-opens java.base/java.net=ALL-UNNAMED
--add-opens
java.base/java.util.concurrent=ALL-UNNAMED
--add-opens java.base/sun.nio.fs=ALL-UNNAMED
--add-opens java.base/sun.nio.cs=ALL-UNNAMED
--add-opens java.base/java.nio.file=ALL-UNNAMED
--add-opens
java.base/java.nio.charset=ALL-UNNAMED
--add-opens
java.base/java.lang.reflect=ALL-UNNAMED
--add-opens
java.logging/java.util.logging=ALL-UNNAMED
--add-opens java.base/java.lang.ref=ALL-UNNAMED
--add-opens java.base/java.util.jar=ALL-UNNAMED
--add-opens java.base/java.util.zip=ALL-UNNAMED
2021-06-20 17:37:38 +02:00
</argLine>
2021-10-02 02:44:09 +02:00
2021-06-20 17:37:38 +02:00
</configuration>
2019-08-11 21:39:18 +02:00
</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>
2023-01-01 18:00:35 +01:00
<version > 3.4.1</version>
2019-08-11 21:39:18 +02:00
<configuration >
2023-01-01 18:00:35 +01:00
<source > 17</source>
2019-08-11 21:39:18 +02:00
<show > public</show>
<failOnError > false</failOnError>
<additionalJOption > -Xdoclint:none</additionalJOption>
2021-06-20 18:10:29 +02:00
<javadocExecutable > ${java.home}/bin/javadoc</javadocExecutable>
2019-08-11 21:39:18 +02:00
</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-shade-plugin</artifactId>
<version > 3.1.1</version>
<configuration >
<minimizeJar > false</minimizeJar>
</configuration>
</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>
2023-07-11 06:19:55 +02:00
<version > 0.8.10</version>
2019-08-11 21:39:18 +02:00
<configuration >
<append > true</append>
<excludes >
2019-11-03 22:37:29 +01:00
<!-- This is required to prevent Jacoco from adding
synthetic fields to a JavaBean class (causes errors in testing) -->
2019-08-11 21:39:18 +02:00
<exclude > **/*Names*</exclude>
2023-12-10 19:29:06 +01:00
<!-- Prevents the Material is too large to mock error -->
<exclude > org/bukkit/Material*</exclude>
2019-08-11 21:39:18 +02:00
</excludes>
</configuration>
<executions >
<execution >
2023-02-10 01:52:31 +01:00
<id > prepare-agent</id>
2019-08-11 21:39:18 +02:00
<goals >
<goal > prepare-agent</goal>
</goals>
</execution>
<execution >
2023-02-10 01:52:31 +01:00
<id > report</id>
2019-08-11 21:39:18 +02:00
<goals >
<goal > report</goal>
</goals>
2023-02-10 01:52:31 +01:00
<configuration >
<formats >
<format > XML</format>
</formats>
</configuration>
2019-08-11 21:39:18 +02:00
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-03-10 16:50:37 +01:00
</project>