Skip to content

Commit

Permalink
Actually use correct artifact id for Paper API
Browse files Browse the repository at this point in the history
  • Loading branch information
DerEchtePilz committed Apr 11, 2024
1 parent bb15119 commit 4ae5ea8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/bukkit/commandtrees/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<!--This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/gradle-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {

dependencies {
// This adds the Spigot API artifact to the build
implementation 'org.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT'
implementation 'io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT'

// The CommandAPI dependency used for Bukkit and it's forks
implementation 'dev.jorel:commandapi-paper-plugin:9.4.0-SNAPSHOT'
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/gradle-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {

dependencies {
// This adds the Spigot API artifact to the build
implementation("org.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT")
implementation("io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT")

// The CommandAPI dependency used for Bukkit and it's forks
implementation("dev.jorel:commandapi-paper-plugin:9.4.0-SNAPSHOT")
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/kotlindsl-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))

// This adds the Spigot API artifact to the build
implementation("org.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT")
implementation("io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT")

// The CommandAPI dependency used for Bukkit and it's forks
implementation("dev.jorel:commandapi-paper-core:9.4.0-SNAPSHOT")
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/kotlindsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<!--This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/maven-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

<!-- This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/maven-shaded-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<!-- This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/maven-shaded-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

<!--This adds the Paper API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/maven-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<!--This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down
2 changes: 1 addition & 1 deletion examples/bukkit/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<!-- This adds the Spigot API artifact to the build -->
<dependency>
<groupId>org.papermc.paper</groupId>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
Expand Down

0 comments on commit 4ae5ea8

Please sign in to comment.