8000 Clean up NMS_Common to make it compile for all supported versions by DerEchtePilz · Pull Request #641 · CommandAPI/CommandAPI · GitHub
[go: up one dir, main page]

Skip to content

Clean up NMS_Common to make it compile for all supported versions #641

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 22, 2025
Prev Previous commit
Next Next commit
Make sure specialsource uses the correct version
  • Loading branch information
DerEchtePilz committed Apr 22, 2025
commit 75ad0e1a24d73c33a0fa4419d28f00979778a9a6
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<plugin>
<groupId>net.md-5</groupId>
<artifactId>specialsource-maven-plugin</artifactId>
<version>1.2.4</version>
<version>2.0.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -135,6 +135,9 @@
<profiles>
<profile>
<id>Spigot_1_21_R4</id>
<properties>
<minecraft.mappings>1.21.5-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -147,6 +150,9 @@
</profile>
<profile>
<id>Spigot_1_21_R3</id>
<properties>
<minecraft.mappings>1.21.4-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -159,6 +165,9 @@
</profile>
<profile>
<id>Spigot_1_21_R2</id>
<properties>
<minecraft.mappings>1.21.3-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -171,6 +180,9 @@
</profile>
<profile>
<id>Spigot_1_21_R1</id>
<properties>
<minecraft.mappings>1.21.1-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -183,6 +195,9 @@
</profile>
<profile>
<id>Spigot_1_20_R4</id>
<properties>
<minecraft.mappings>1.20.6-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -195,6 +210,9 @@
</profile>
<profile>
<id>Spigot_1_20_R3</id>
<properties>
<minecraft.mappings>1.20.4-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -207,6 +225,9 @@
</profile>
<profile>
<id>Spigot_1_20_R2</id>
<properties>
<minecraft.mappings>1.20.2-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -219,6 +240,9 @@
</profile>
<profile>
<id>Spigot_1_20_R1</id>
<properties>
<minecraft.mappings>1.20.1-R0.1-SNAPSHOT</minecraft.mappings>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
Expand Down
0