Skip to content

Commit dd3a813

Browse files
committed
chore(minecraft): update groupId
1 parent ea194a7 commit dd3a813

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

docs/minecraft/bungee.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313

1414
## Installation
1515

16-
Cloud for BungeeCord is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-bungee).
16+
Cloud for BungeeCord is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-bungee).
1717

1818
<!-- prettier-ignore -->
1919
=== "Maven"
2020

2121
```xml
2222
<dependencies>
2323
<dependency>
24-
<groupId>cloud.commandframework</groupId>
24+
<groupId>org.incendo</groupId>
2525
<artifactId>cloud-bungee</artifactId>
2626
<version>2.0.0-SNAPSHOT</version>
2727
</dependency>
@@ -31,13 +31,13 @@ Cloud for BungeeCord is available through [Maven Central](https://central.sonaty
3131
=== "Gradle (Kotlin)"
3232

3333
```kotlin
34-
implementation("cloud.commandframework:cloud-bungee:2.0.0-SNAPSHOT")
34+
implementation("org.incendo:cloud-bungee:2.0.0-SNAPSHOT")
3535
```
3636

3737
=== "Gradle (Groovy)"
3838

3939
```groovy
40-
implementation 'cloud.commandframework:cloud-bungee:2.0.0-SNAPSHOT'
40+
implementation 'org.incendo:cloud-bungee:2.0.0-SNAPSHOT'
4141
```
4242

4343
## Usage

docs/minecraft/minecraft-extras.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919

2020
## Installation
2121

22-
Cloud Minecraft Extras is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-minecraft-extras).
22+
Cloud Minecraft Extras is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-minecraft-extras).
2323

2424
<!-- prettier-ignore -->
2525
=== "Maven"
2626

2727
```xml
2828
<dependencies>
2929
<dependency>
30-
<groupId>cloud.commandframework</groupId>
30+
<groupId>org.incendo</groupId>
3131
<artifactId>cloud-minecraft-extras</artifactId>
3232
<version>2.0.0-SNAPSHOT</version>
3333
</dependency>
@@ -37,13 +37,13 @@ Cloud Minecraft Extras is available through [Maven Central](https://central.sona
3737
=== "Gradle (Kotlin)"
3838

3939
```kotlin
40-
implementation("cloud.commandframework:cloud-minecraft-extras:2.0.0-SNAPSHOT")
40+
implementation("org.incendo:cloud-minecraft-extras:2.0.0-SNAPSHOT")
4141
```
4242

4343
=== "Gradle (Groovy)"
4444

4545
```groovy
46-
implementation 'cloud.commandframework:cloud-minecraft-extras:2.0.0-SNAPSHOT'
46+
implementation 'org.incendo:cloud-minecraft-extras:2.0.0-SNAPSHOT'
4747
```
4848

4949
## Minecraft Help

docs/minecraft/modded/fabric.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installation
44

5-
Cloud for Fabric is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-fabric).
5+
Cloud for Fabric is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-fabric).
66

77
=== "Gradle (Kotlin)"
88

@@ -12,7 +12,7 @@ Cloud for Fabric is available through [Maven Central](https://central.sonatype.c
1212
}
1313

1414
dependencies {
15-
val cloudFabric = "cloud.commandframework:cloud-fabric:VERSION"
15+
val cloudFabric = "org.incendo:cloud-fabric:VERSION"
1616
modImplementation(cloudFabric)
1717
include(cloudFabric)
1818
}
@@ -26,7 +26,7 @@ Cloud for Fabric is available through [Maven Central](https://central.sonatype.c
2626
}
2727

2828
dependencies {
29-
def cloudFabric = 'cloud.commandframework:cloud-fabric:VERSION'
29+
def cloudFabric = 'org.incendo:cloud-fabric:VERSION'
3030
modImplementation(cloudFabric)
3131
include(cloudFabric)
3232
}

docs/minecraft/modded/neoforge.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installation
44

5-
Cloud for NeoForge is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-neoforge).
5+
Cloud for NeoForge is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-neoforge).
66

77
=== "Gradle (Kotlin, NeoGradle)"
88

@@ -14,7 +14,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
1414
jarJar.enable()
1515

1616
dependencies {
17-
val cloudFabric = "cloud.commandframework:cloud-neoforge:VERSION"
17+
val cloudFabric = "org.incendo:cloud-neoforge:VERSION"
1818
implementation(cloudFabric)
1919
jarJar(cloudFabric)
2020
}
@@ -30,7 +30,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
3030
jarJar.enable()
3131

3232
dependencies {
33-
def cloudFabric = 'cloud.commandframework:cloud-neoforge:VERSION'
33+
def cloudFabric = 'org.incendo:cloud-neoforge:VERSION'
3434
implementation(cloudFabric)
3535
jarJar(cloudFabric)
3636
}
@@ -44,7 +44,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
4444
}
4545

4646
dependencies {
47-
val cloudFabric = "cloud.commandframework:cloud-neoforge:VERSION"
47+
val cloudFabric = "org.incendo:cloud-neoforge:VERSION"
4848
modImplementation(cloudFabric)
4949
include(cloudFabric)
5050
}
@@ -58,7 +58,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
5858
}
5959

6060
dependencies {
61-
def cloudFabric = 'cloud.commandframework:cloud-neoforge:VERSION'
61+
def cloudFabric = 'org.incendo:cloud-neoforge:VERSION'
6262
modImplementation(cloudFabric)
6363
include(cloudFabric)
6464
}

docs/minecraft/paper.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ The following documentation is written with the assumption that you have already
1717

1818
## Installation
1919

20-
Cloud for Paper is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-paper).
20+
Cloud for Paper is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-paper).
2121

2222
<!-- prettier-ignore -->
2323
=== "Maven"
2424

2525
```xml
2626
<dependencies>
2727
<dependency>
28-
<groupId>cloud.commandframework</groupId>
28+
<groupId>org.incendo</groupId>
2929
<artifactId>cloud-paper</artifactId>
3030
<version>2.0.0-SNAPSHOT</version>
3131
</dependency>
@@ -35,13 +35,13 @@ Cloud for Paper is available through [Maven Central](https://central.sonatype.co
3535
=== "Gradle (Kotlin)"
3636

3737
```kotlin
38-
implementation("cloud.commandframework:cloud-paper:2.0.0-SNAPSHOT")
38+
implementation("org.incendo:cloud-paper:2.0.0-SNAPSHOT")
3939
```
4040

4141
=== "Gradle (Groovy)"
4242

4343
```groovy
44-
implementation 'cloud.commandframework:cloud-paper:2.0.0-SNAPSHOT'
44+
implementation 'org.incendo:cloud-paper:2.0.0-SNAPSHOT'
4545
```
4646

4747
## Usage

docs/minecraft/velocity.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313

1414
## Installation
1515

16-
Cloud for Velocity is available through [Maven Central](https://central.sonatype.com/artifact/cloud.commandframework/cloud-paper).
16+
Cloud for Velocity is available through [Maven Central](https://central.sonatype.com/artifact/org.incendo/cloud-paper).
1717

1818
<!-- prettier-ignore -->
1919
=== "Maven"
2020

2121
```xml
2222
<dependencies>
2323
<dependency>
24-
<groupId>cloud.commandframework</groupId>
24+
<groupId>org.incendo</groupId>
2525
<artifactId>cloud-velocity</artifactId>
2626
<version>2.0.0-SNAPSHOT</version>
2727
</dependency>
@@ -31,13 +31,13 @@ Cloud for Velocity is available through [Maven Central](https://central.sonatype
3131
=== "Gradle (Kotlin)"
3232

3333
```kotlin
34-
implementation("cloud.commandframework:cloud-velocity:2.0.0-SNAPSHOT")
34+
implementation("org.incendo:cloud-velocity:2.0.0-SNAPSHOT")
3535
```
3636

3737
=== "Gradle (Groovy)"
3838

3939
```groovy
40-
implementation 'cloud.commandframework:cloud-velocity:2.0.0-SNAPSHOT'
40+
implementation 'org.incendo:cloud-velocity:2.0.0-SNAPSHOT'
4141
```
4242

4343
## Usage

0 commit comments

Comments
 (0)