2018-08-05 02:04:14 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2019-03-04 02:35:38 +01:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2019-10-31 22:12:44 +01: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-08-05 02:04:14 +02:00
2019-10-31 22:12:44 +01:00
<groupId > world.bentobox</groupId>
<artifactId > warps</artifactId>
2019-08-11 21:51:14 +02:00
<version > ${revision}</version>
2017-10-26 03:33:23 +02:00
2019-10-31 22:12:44 +01:00
<name > WelcomeWarpSigns</name>
<description > WelcomeWarpSigns is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like ASkyBlock or AcidIsland.</description>
<url > https://github.com/BentoBoxWorld/addon-welcomewarpsigns</url>
<inceptionYear > 2018</inceptionYear>
2018-08-05 02:04:14 +02:00
2019-08-11 21:51:14 +02:00
<developers >
2019-10-31 22:12:44 +01:00
<developer >
2019-08-11 21:51:14 +02:00
<id > tastybento</id>
<email > tastybento@bentobox.world</email>
<timezone > -8</timezone>
<roles >
<role > Lead Developer</role>
</roles>
</developer>
</developers>
2019-10-31 22:12:44 +01:00
<scm >
<connection > scm:git:https://github.com/BentoBoxWorld/addon-welcomewarpsigns.git</connection>
<developerConnection > scm:git:git@github.com:BentoBoxWorld/addon-welcomewarpsigns.git</developerConnection>
<url > https://github.com/BentoBoxWorld/addon-welcomewarpsigns</url>
</scm>
2018-08-05 02:04:14 +02:00
2019-10-31 22:12:44 +01:00
<ciManagement >
<system > jenkins</system>
<url > http://ci.codemc.org/job/BentoBoxWorld/job/addon-welcomewarpsigns</url>
</ciManagement>
2018-10-31 14:32:21 +01:00
2019-10-31 22:12:44 +01:00
<issueManagement >
<system > GitHub</system>
<url > https://github.com/BentoBoxWorld/addon-welcomewarpsigns/issues</url>
</issueManagement>
2018-08-05 02:04:14 +02:00
2019-10-31 22:12:44 +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-10-31 14:32:21 +01:00
2019-10-31 22:12:44 +01:00
<properties >
2019-08-11 21:51:14 +02:00
<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 -->
2019-08-20 16:50:11 +02:00
<spigot.version > 1.14.4-R0.1-SNAPSHOT</spigot.version>
<bentobox.version > 1.6.0</bentobox.version>
2019-08-11 21:51:14 +02:00
<level.version > 1.5.0</level.version>
<!-- 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. -->
2019-11-03 17:52:29 +01:00
<build.version > 1.8.1</build.version>
2019-10-31 22:12:44 +01:00
</properties>
2018-08-05 02:04:14 +02:00
2019-08-11 21:51:14 +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>
<profile >
<id > sonar</id>
<properties >
<sonar.host.url > https://sonarcloud.io</sonar.host.url>
2019-10-31 18:18:13 +01:00
<sonar.organization > bentobox-world</sonar.organization>
2019-08-11 21:51:14 +02:00
</properties>
<build >
<plugins >
<plugin >
<groupId > org.sonarsource.scanner.maven</groupId>
<artifactId > sonar-maven-plugin</artifactId>
2019-10-31 18:18:13 +01:00
<version > 3.6.0.1398</version>
2019-08-11 21:51:14 +02:00
<executions >
<execution >
<phase > verify</phase>
<goals >
<goal > sonar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2019-10-31 22:12:44 +01:00
<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-public</id>
<url > https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
2018-08-11 20:05:14 +02:00
2019-10-31 22:12:44 +01:00
<dependencies >
2019-08-11 21:51:14 +02:00
<!-- 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>
2019-10-31 22:12:44 +01:00
<dependency >
<groupId > world.bentobox</groupId>
<artifactId > level</artifactId>
<version > ${level.version}</version>
<scope > provided</scope>
</dependency>
<!-- 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>
<version > 2.2.200</version>
</dependency>
</dependencies>
2018-08-11 20:05:14 +02:00
2019-10-31 22:12:44 +01:00
<build >
2019-08-11 21:51:14 +02:00
<!-- 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>
2019-10-31 22:12:44 +01:00
<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>
</resource>
</resources>
2019-08-11 21:51:14 +02:00
<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 >
<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>
<version > 0.8.3</version>
<configuration >
<append > true</append>
<excludes >
2019-10-31 22:12:44 +01:00
<!-- This is required to prevent Jacoco from adding
synthetic fields to a JavaBean class (causes errors in testing) -->
2019-08-11 21:51:14 +02:00
<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>
2019-10-31 22:12:44 +01:00
</build>
2017-10-26 03:33:23 +02:00
</project>