Fixed POM

This commit is contained in:
tastybento 2018-08-10 15:10:31 +09:00
parent a6acb4f1cf
commit fd9c271df7
1 changed files with 208 additions and 176 deletions

380
pom.xml
View File

@ -1,189 +1,221 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
<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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>us.tastybento</groupId> <groupId>us.tastybento</groupId>
<artifactId>bskyblock</artifactId> <artifactId>BSkyBlock</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>BSkyBlock</name> <name>BSkyBlock</name>
<description>The next generation of ASkyBlock</description> <description>BSkyBlock is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like ASkyBlock or AcidIsland.</description>
<properties> <url>https://github.com/BentoBoxWorld/addon-bskyblock</url>
<maven.compiler.source>1.8</maven.compiler.source> <inceptionYear>2018</inceptionYear>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <scm>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <connection>scm:git:https://github.com/BentoBoxWorld/addon-bskyblock.git</connection>
<powermock.version>1.7.4</powermock.version> <developerConnection>scm:git:git@github.com:BentoBoxWorld/addon-bskyblock.git</developerConnection>
</properties> <url>https://github.com/BentoBoxWorld/addon-bskyblock</url>
<build> </scm>
<defaultGoal>clean package install</defaultGoal>
<resources> <issueManagement>
<resource> <system>GitHub</system>
<targetPath>.</targetPath> <url>https://github.com/BentoBoxWorld/addon-bskyblock/issues</url>
<filtering>false</filtering> </issueManagement>
<directory>${basedir}</directory>
<includes> <properties>
<include>*.yml</include> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</includes> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</resource> <java.version>1.8</java.version>
<resource> <powermock.version>1.7.4</powermock.version>
<targetPath>schems</targetPath> </properties>
<filtering>false</filtering>
<directory>${basedir}/schems</directory> <repositories>
<includes> <repository>
<include>*.schem</include> <id>spigot-repo</id>
</includes> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
</resource> </repository>
<resource> </repositories>
<targetPath>locales</targetPath>
<filtering>false</filtering> <dependencies>
<directory>${basedir}/locales</directory> <dependency>
<includes> <groupId>org.spigotmc</groupId>
<include>*.yml</include> <artifactId>spigot-api</artifactId>
</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>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- <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> -->
<!-- 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> -->
</plugins>
<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.8.1</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>
</build>
<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>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.13-R0.1-SNAPSHOT</version> <version>1.13-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<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>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.8.0</version>
</dependency>
<dependency>
<groupId>world.bentobox</groupId> <groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId> <artifactId>bentobox</artifactId>
<version>FC-0.9</version> <version>FC-0.9</version>
</dependency> </dependency>
</dependencies>
<dependency> <build>
<groupId>org.mockito</groupId> <defaultGoal>clean package</defaultGoal>
<artifactId>mockito-all</artifactId> <resources>
<version>1.10.19</version> <resource>
<scope>test</scope> <directory>src/main/resources</directory>
</dependency> <filtering>true</filtering>
<dependency> </resource>
<groupId>org.powermock</groupId> <resource>
<artifactId>powermock-module-junit4</artifactId> <directory>src/main/resources/locales</directory>
<version>${powermock.version}</version> <targetPath>./locales</targetPath>
<scope>test</scope> <filtering>false</filtering>
</dependency> </resource>
<dependency> </resources>
<groupId>org.powermock</groupId> <plugins>
<artifactId>powermock-api-mockito</artifactId> <plugin>
<version>${powermock.version}</version> <groupId>org.apache.maven.plugins</groupId>
<scope>test</scope> <artifactId>maven-clean-plugin</artifactId>
</dependency> <version>3.1.0</version>
<dependency> </plugin>
<groupId>org.mongodb</groupId> <plugin>
<artifactId>mongodb-driver</artifactId> <groupId>org.apache.maven.plugins</groupId>
<version>3.6.3</version> <artifactId>maven-resources-plugin</artifactId>
</dependency> <version>3.1.0</version>
</dependencies> </plugin>
<repositories> <plugin>
<repository> <groupId>org.apache.maven.plugins</groupId>
<id>spigot-repo</id> <artifactId>maven-compiler-plugin</artifactId>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> <version>3.7.0</version>
</repository> <configuration>
</repositories> <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.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>
<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.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>5.1</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sonar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> </project>