Started preparing PluginBridge for deployment

This commit is contained in:
Rsl1122 2017-12-06 12:30:22 +02:00
parent 19da6d58bc
commit 6cf652a5eb
2 changed files with 84 additions and 18 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.djrapitops</groupId>
<artifactId>Plan</artifactId>
<version>4.1.2</version>
<version>4.1.3</version>
<packaging>jar</packaging>
<repositories>
<repository>
@ -24,8 +24,8 @@
<!-- Framework for easier plugin development -->
<dependency>
<groupId>com.djrapitops</groupId>
<artifactId>abstract-plugin-framework</artifactId>
<version>3.0.0</version>
<artifactId>AbstractPluginFramework</artifactId>
<version>3.0.1</version>
<scope>compile</scope>
</dependency>
<!-- SoftDepended Plugins -->

View File

@ -4,8 +4,42 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.djrapitops</groupId>
<artifactId>PlanPluginBridge</artifactId>
<version>4.1.2</version>
<version>4.1.3</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Artifact for reducing requirements for manually installing artifacts for another project, Plan
</description>
<url>https://github.com/Rsl1122/Plan-PlayerAnalytics/tree/master/PlanPluginBridge</url>
<licenses>
<license>
<name>Player Analytics (Plan) License v.2.0.0</name>
<url>https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/resources/license.yml</url>
</license>
</licenses>
<developers>
<developer>
<name>Risto Lahtela (Rsl1122)</name>
<email>djrapitops@hotmail.com</email>
<organization>None</organization>
<organizationUrl>https://github.com/Rsl1122</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Rsl1122/Plan-PlayerAnalytics.git</connection>
<developerConnection>scm:git:ssh://github.com:Rsl1122/Plan-PlayerAnalytics.git</developerConnection>
<url>https://github.com/Rsl1122/Plan-PlayerAnalytics</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>vault-repo</id>
@ -20,11 +54,12 @@
<url>https://repo.viaversion.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.djrapitops</groupId>
<artifactId>Plan</artifactId>
<version>4.1.0</version>
<version>4.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -124,10 +159,10 @@
<scope>provided</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>com.github.MCE-Plugins</groupId>-->
<!--<artifactId>MinigamesLib-parent</artifactId>-->
<!--<version>1.14.18</version>-->
<!--<scope>provided</scope>-->
<!--<groupId>com.github.MCE-Plugins</groupId>-->
<!--<artifactId>MinigamesLib-parent</artifactId>-->
<!--<version>1.14.18</version>-->
<!--<scope>provided</scope>-->
<!--</dependency>-->
<dependency>
<groupId>com.github.ProtocolSupport</groupId>
@ -150,6 +185,46 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.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>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
@ -157,13 +232,4 @@
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<sonar.language>java</sonar.language>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPaths>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPaths>
</properties>
</project>