-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
25 changed files
with
978 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,24 @@ | |
|
||
<groupId>world.bentobox</groupId> | ||
<artifactId>level</artifactId> | ||
<version>1.5.0</version> | ||
<version>${revision}</version> | ||
|
||
<name>Level</name> | ||
<description>Level 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/Level</url> | ||
<inceptionYear>2017</inceptionYear> | ||
|
||
<developers> | ||
<developer> | ||
<id>tastybento</id> | ||
<email>[email protected]</email> | ||
<timezone>-8</timezone> | ||
<roles> | ||
<role>Lead Developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/BentoBoxWorld/Level.git</connection> | ||
<developerConnection>scm:git:[email protected]:BentoBoxWorld/Level.git</developerConnection> | ||
|
@@ -41,12 +52,59 @@ | |
</distributionManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
<powermock.version>1.7.4</powermock.version> | ||
<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.13.2-R0.1-SNAPSHOT</spigot.version> | ||
<bentobox.version>1.6.0-SNAPSHOT</bentobox.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. --> | ||
<build.version>1.6.0</build.version> | ||
</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> | ||
|
@@ -62,40 +120,50 @@ | |
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.14.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<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> | ||
<dependency> | ||
<groupId>world.bentobox</groupId> | ||
<artifactId>bentobox</artifactId> | ||
<version>1.5.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
<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> | ||
</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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.