mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2025-02-14 01:22:41 +01:00
Move paper module to Components dir
This commit is contained in:
parent
f12d2c6f1c
commit
4d111eca9d
@ -1,17 +1,17 @@
|
||||
<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>
|
||||
<artifactId>Minepacks-Paper</artifactId>
|
||||
<artifactId>Minepacks-Bootstrap-Paper</artifactId>
|
||||
<parent>
|
||||
<artifactId>Minepacks-Parent</artifactId>
|
||||
<groupId>at.pcgamingfreaks</groupId>
|
||||
<version>${revision}</version>
|
||||
<relativePath>..</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<version>${revision}</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>Minepacks-Paper</name>
|
||||
<name>Minepacks-Bootstrap-Paper</name>
|
||||
<description>Paper API extension for Minepacks.</description>
|
||||
|
||||
<repositories>
|
||||
@ -22,6 +22,16 @@
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>at.pcgamingfreaks.pcgf_pluginlib</groupId>
|
||||
<artifactId>pcgf_pluginlib-version</artifactId>
|
||||
<version>${pcgfPluginLibVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>at.pcgamingfreaks.pcgf_pluginlib</groupId>
|
||||
<artifactId>pcgf_pluginlib-version_detection</artifactId>
|
||||
<version>${pcgfPluginLibVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.papermc.paper</groupId>
|
||||
<artifactId>paper-api</artifactId>
|
||||
@ -48,6 +58,28 @@
|
||||
<release>17</release>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>${mavenShade.version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
<minimizeJar>false</minimizeJar>
|
||||
<artifactSet>
|
||||
<includes>
|
||||
<include>at.pcgamingfreaks.pcgf_pluginlib:pcgf_pluginlib-version_detection</include>
|
||||
</includes>
|
||||
</artifactSet>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
@ -25,7 +25,6 @@
|
||||
<mainClass>${project.groupId}.${project.artifactId}.Bukkit.${project.artifactId}</mainClass>
|
||||
<releaseType>Normal</releaseType>
|
||||
<updateChannel>Release</updateChannel>
|
||||
<mavenShade.version>3.3.0</mavenShade.version>
|
||||
</properties>
|
||||
|
||||
<pluginRepositories>
|
||||
@ -239,7 +238,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>at.pcgamingfreaks</groupId>
|
||||
<artifactId>Minepacks-Paper</artifactId>
|
||||
<artifactId>Minepacks-Bootstrap-Paper</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
@ -264,7 +263,7 @@
|
||||
<includes>
|
||||
<include>at.pcgamingfreaks:Minepacks-API</include>
|
||||
<include>at.pcgamingfreaks:Minepacks-MagicValues</include>
|
||||
<include>at.pcgamingfreaks:Minepacks-Paper</include>
|
||||
<include>at.pcgamingfreaks:Minepacks-Bootstrap-Paper</include>
|
||||
<include>at.pcgamingfreaks:BadRabbit-Bukkit</include>
|
||||
<include>at.pcgamingfreaks:Minepacks-BadRabbit-Bukkit</include>
|
||||
<include>at.pcgamingfreaks:Minepacks</include>
|
||||
|
3
pom.xml
3
pom.xml
@ -16,6 +16,7 @@
|
||||
<pcgfPluginLibVersion>1.0.39-SNAPSHOT</pcgfPluginLibVersion>
|
||||
|
||||
<bukkitVersion>1.15.2-R0.1-SNAPSHOT</bukkitVersion>
|
||||
<mavenShade.version>3.4.1</mavenShade.version>
|
||||
|
||||
<sonar.organization>georgh93</sonar.organization>
|
||||
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
||||
@ -162,7 +163,7 @@
|
||||
|
||||
<modules>
|
||||
<module>Components/Minepacks-BadRabbit-Bukkit</module>
|
||||
<module>Minepacks-Paper</module>
|
||||
<module>Components/Minepacks-Bootstrap-Paper</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
Loading…
Reference in New Issue
Block a user