2017-05-20 23:30:12 +02:00
|
|
|
<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>us.tastybento</groupId>
|
|
|
|
<artifactId>bskyblock</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2017-08-01 14:21:32 +02:00
|
|
|
<version>alpha-0.0.1</version>
|
2017-05-20 23:30:12 +02:00
|
|
|
<name>BSkyBlock</name>
|
2017-05-24 17:23:38 +02:00
|
|
|
<description>The next generation of ASkyBlock</description>
|
2017-05-20 23:30:12 +02:00
|
|
|
<properties>
|
2017-11-21 01:05:52 +01:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2017-05-20 23:30:12 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-11-21 01:05:52 +01:00
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2018-01-29 05:44:57 +01:00
|
|
|
<powermock.version>1.7.1</powermock.version>
|
2017-05-20 23:30:12 +02:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<targetPath>schematics</targetPath>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<directory>${basedir}/schematics</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.schematic</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
2017-05-24 17:23:38 +02:00
|
|
|
<targetPath>locales</targetPath>
|
2017-05-20 23:30:12 +02:00
|
|
|
<filtering>false</filtering>
|
2017-05-24 17:23:38 +02:00
|
|
|
<directory>${basedir}/locales</directory>
|
2017-05-20 23:30:12 +02:00
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<nonFilteredFileExtensions>
|
|
|
|
<nonFilteredFileExtension>schematic</nonFilteredFileExtension>
|
|
|
|
</nonFilteredFileExtensions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5</version>
|
|
|
|
<configuration>
|
2017-05-20 23:52:52 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2017-05-20 23:30:12 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-03-31 18:24:00 +02:00
|
|
|
<!--
|
2018-03-19 05:54:24 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<mainClass>us.tastybento.bskyblock.BSkyBlock</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-03-31 18:24:00 +02:00
|
|
|
-->
|
2018-02-20 08:22:23 +01:00
|
|
|
<!-- I'm going to comment out these sections for now to speed up compilation
|
|
|
|
<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-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.0</version> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption>
|
|
|
|
</configuration> <executions> <execution> <id>attach-javadocs</id> <goals>
|
|
|
|
<goal>jar</goal> </goals> </execution> </executions> </plugin> -->
|
2017-05-20 23:30:12 +02:00
|
|
|
</plugins>
|
2018-02-20 08:22:23 +01:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonarsource.scanner.maven</groupId>
|
|
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
|
|
|
<version>3.3.0.603</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sonar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.7.9</version>
|
|
|
|
<configuration>
|
|
|
|
<append>true</append>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>prepare-agent-integration</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent-integration</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>jacoco-site</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2017-05-20 23:30:12 +02:00
|
|
|
</build>
|
2018-02-20 08:22:23 +01:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>sonar</id>
|
|
|
|
<properties>
|
|
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
|
|
<sonar.organization>tastybento-github</sonar.organization>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonarsource.scanner.maven</groupId>
|
|
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2017-05-20 23:30:12 +02:00
|
|
|
<dependencies>
|
2018-02-01 00:46:38 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-11-21 01:05:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
2017-12-29 05:36:04 +01:00
|
|
|
<version>1.10.19</version>
|
2017-11-21 01:05:52 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-05-20 23:30:12 +02:00
|
|
|
<dependency>
|
2018-02-01 00:46:38 +01:00
|
|
|
<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>
|
2017-05-20 23:30:12 +02:00
|
|
|
</dependency>
|
2018-03-19 05:54:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongodb-driver</artifactId>
|
|
|
|
<version>3.6.3</version>
|
|
|
|
</dependency>
|
2017-05-20 23:30:12 +02:00
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
2018-02-01 00:46:38 +01:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
|
2017-05-20 23:30:12 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2017-05-24 17:23:38 +02:00
|
|
|
</project>
|