2018-08-16 05:23:38 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2018-04-15 07:30:04 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-11-26 03:17:16 +01:00
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-08-16 05:23:38 +02:00
2018-12-30 14:31:39 +01:00
<groupId > world.bentobox</groupId>
2018-12-30 14:32:12 +01:00
<artifactId > challenges</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${revision}</version>
2018-08-16 05:23:38 +02:00
<name > Challenges</name>
2019-02-13 12:08:32 +01:00
<description > Challenges is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like SkyBlock, AcidIsland or CaveBlock.</description>
2018-12-30 14:33:28 +01:00
<url > https://github.com/BentoBoxWorld/Challenges</url>
2018-08-16 05:23:38 +02:00
<inceptionYear > 2018</inceptionYear>
<scm >
2018-12-30 14:33:28 +01:00
<connection > scm:git:https://github.com/BentoBoxWorld/Challenges.git</connection>
<developerConnection > scm:git:git@github.com:BentoBoxWorld/Challenges.git</developerConnection>
<url > https://github.com/BentoBoxWorld/Challenges</url>
2018-08-16 05:23:38 +02:00
</scm>
2018-12-30 14:46:04 +01:00
<ciManagement >
<system > jenkins</system>
<url > http://ci.codemc.org/job/BentoBoxWorld/job/Challenges</url>
</ciManagement>
2018-08-16 05:23:38 +02:00
<issueManagement >
<system > GitHub</system>
2018-12-30 14:33:28 +01:00
<url > https://github.com/BentoBoxWorld/Challenges/issues</url>
2018-08-16 05:23:38 +02:00
</issueManagement>
2017-11-26 03:17:16 +01:00
<properties >
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
2018-08-16 05:23:38 +02:00
<project.reporting.outputEncoding > UTF-8</project.reporting.outputEncoding>
<java.version > 1.8</java.version>
<powermock.version > 1.7.4</powermock.version>
2019-03-05 09:30:19 +01:00
<!-- More visible way how to change dependency versions -->
<spigot.version > 1.13.2-R0.1-SNAPSHOT</spigot.version>
2019-03-28 23:32:56 +01:00
<bentobox.version > 1.4.0</bentobox.version>
2019-03-05 09:30:19 +01:00
<level.version > 1.3.0</level.version>
<vault.version > 68f14ec</vault.version>
<!-- Revision variable removes warning about dynamic version -->
2019-03-28 23:32:56 +01:00
<revision > ${build.version}-SNAPSHOT</revision>
2019-03-05 09:30:19 +01:00
<!-- This allows to change between versions and snapshots. -->
2019-03-31 22:30:50 +02:00
<build.version > 0.7.0</build.version>
2019-04-01 09:09:40 +02:00
<build.number > -LOCAL</build.number>
2017-11-26 03:17:16 +01:00
</properties>
2019-03-05 09:30:19 +01:00
<profiles >
<profile >
2019-03-28 23:32:56 +01:00
<id > ci</id>
2019-03-05 09:30:19 +01:00
<activation >
<property >
<name > env.BUILD_NUMBER</name>
</property>
</activation>
<properties >
<!-- Override only if necessary -->
2019-04-01 09:09:40 +02:00
<build.number > -#${env.BUILD_NUMBER}</build.number>
2019-03-05 09:30:19 +01:00
<!-- GIT_BRANCH -->
</properties>
</profile>
<profile >
<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>
2019-04-01 09:09:40 +02:00
<!-- Empties build number variable. -->
<build.number > </build.number>
2019-03-05 09:30:19 +01:00
</properties>
</profile>
</profiles>
2018-12-30 14:46:04 +01:00
<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>
2018-08-16 05:23:38 +02:00
<repositories >
<repository >
<id > spigot-repo</id>
<url > https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
</repository>
2018-12-02 05:44:19 +01:00
<repository >
2018-12-30 14:34:22 +01:00
<id > codemc-repo</id>
<url > https://repo.codemc.org/repository/maven-public/</url>
2018-12-02 05:44:19 +01:00
</repository>
2019-02-25 09:36:07 +01:00
<!-- Vault Repo is down. -->
<!-- <repository> -->
<!-- <id>vault - repo</id> -->
<!-- <url>http://nexus.hc.to/content/repositories/pub_releases</url> -->
<!-- </repository> -->
2018-12-30 14:47:58 +01:00
<repository >
2019-02-25 09:36:07 +01:00
<id > jitpack.io</id>
<url > https://jitpack.io</url>
2018-12-30 14:47:58 +01:00
</repository>
2019-01-18 18:15:50 +01:00
<repository >
<id > wesjd-repo</id>
<url > https://nexus.wesjd.net/repository/thirdparty/</url>
</repository>
2018-08-16 05:23:38 +02:00
</repositories>
2017-11-26 03:17:16 +01:00
<dependencies >
<dependency >
2018-08-16 05:23:38 +02:00
<groupId > org.spigotmc</groupId>
<artifactId > spigot-api</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${spigot.version}</version>
2018-02-20 04:50:34 +01:00
<scope > provided</scope>
</dependency>
2019-01-19 14:49:54 +01:00
<dependency >
<groupId > org.spigotmc</groupId>
<artifactId > spigot</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${spigot.version}</version>
2019-01-19 14:49:54 +01:00
<scope > provided</scope>
</dependency>
2018-04-15 07:30:04 +02:00
<dependency >
<groupId > org.mockito</groupId>
<artifactId > mockito-all</artifactId>
<version > 1.10.19</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-mockito</artifactId>
<version > ${powermock.version}</version>
<scope > test</scope>
</dependency>
2018-08-16 05:23:38 +02:00
<dependency >
<groupId > world.bentobox</groupId>
<artifactId > bentobox</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${bentobox.version}</version>
2019-01-10 10:36:06 +01:00
<scope > provided</scope>
</dependency>
2018-08-16 05:23:38 +02:00
<dependency >
2018-11-12 18:55:42 +01:00
<groupId > world.bentobox</groupId>
2018-12-30 14:40:45 +01:00
<artifactId > level</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${level.version}</version>
2018-12-30 21:13:50 +01:00
<scope > provided</scope>
2018-08-16 05:23:38 +02:00
</dependency>
2018-12-30 14:47:58 +01:00
<dependency >
2019-02-25 09:36:07 +01:00
<groupId > com.github.MilkBowl</groupId>
2018-12-30 14:47:58 +01:00
<artifactId > VaultAPI</artifactId>
2019-03-05 09:30:19 +01:00
<version > ${vault.version}</version>
2018-12-30 14:47:58 +01:00
<scope > provided</scope>
</dependency>
2019-01-18 18:15:50 +01:00
<dependency >
<groupId > net.wesjd</groupId>
<artifactId > anvilgui</artifactId>
<version > 1.2.1-SNAPSHOT</version>
</dependency>
2017-11-26 03:17:16 +01:00
</dependencies>
2018-08-16 05:23:38 +02:00
<build >
<defaultGoal > clean package</defaultGoal>
<resources >
<resource >
<directory > src/main/resources</directory>
2018-09-04 06:32:26 +02:00
<filtering > true</filtering>
2018-08-16 05:23:38 +02:00
</resource>
<resource >
<directory > src/main/resources/locales</directory>
<targetPath > ./locales</targetPath>
<filtering > false</filtering>
<includes >
<include > *.yml</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>
</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 >
<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-shade-plugin</artifactId>
<version > 3.1.1</version>
<configuration >
2019-01-19 14:49:54 +01:00
<minimizeJar > true</minimizeJar>
2018-08-16 05:23:38 +02:00
</configuration>
2019-01-19 14:49:54 +01:00
<executions >
<execution >
<phase > package</phase>
<goals >
<goal > shade</goal>
</goals>
</execution>
</executions>
2018-08-16 05:23:38 +02:00
</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.1</version>
<configuration >
<append > true</append>
</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>
2019-02-13 15:49:01 +01:00
</project>