Remove no longer needed ExcludeBadRabbit profile

This commit is contained in:
GeorgH93 2023-02-02 19:59:19 +01:00
parent 350aaa60a6
commit a562ef2e44
No known key found for this signature in database
GPG Key ID: D1630D37F9E4B3C8
3 changed files with 2 additions and 37 deletions

View File

@ -32,7 +32,6 @@
<groupId>at.pcgamingfreaks</groupId>
<artifactId>BadRabbit-Bukkit</artifactId>
<version>1.11</version>
<scope>provided</scope>
</dependency>
<!-- Bukkit -->
<dependency>

View File

@ -53,12 +53,6 @@
<artifactId>PluginLib</artifactId>
<version>${pcgfPluginLibVersion}</version>
</dependency>
<!-- BadRabbit -->
<dependency>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>BadRabbit-Bukkit</artifactId>
<version>1.11</version>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
@ -119,34 +113,6 @@
</build>
<profiles>
<profile>
<id>ExcludeBadRabbit</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<excludes>
<exclude>at/pcgamingfreaks/Minepacks/Bukkit/MinepacksBadRabbit.class</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>Standalone</id>
<activation>

View File

@ -83,7 +83,7 @@ This version works without the PCGF-PluginLib, however some API features are not
```
git clone https://github.com/GeorgH93/Minepacks.git
cd Minepacks
mvn package -P Standalone,ExcludeBadRabbit
mvn package -P Standalone
```
The final file will be in the `Minepacks/target` folder, named `Minepacks-<CurrentVersion>-Standalone.jar`.
@ -92,7 +92,7 @@ This is the version of the plugin published on dev.bukkit.org and spigotmc.org.
```
git clone https://github.com/GeorgH93/Minepacks.git
cd Minepacks
mvn clean install -P Standalone,ExcludeBadRabbit
mvn clean install -P Standalone
mvn clean package -P Release
```
The final file will be in the `Minepacks/target` folder, named `Minepacks-<CurrentVersion>-Release.jar`.