Skip to content

Commit

Permalink
chore(minecraft): update groupId
Browse files Browse the repository at this point in the history
  • Loading branch information
Citymonstret committed Jan 25, 2024
1 parent ea194a7 commit dd3a813
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions docs/minecraft/bungee.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

## Installation

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

<!-- prettier-ignore -->
=== "Maven"

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

```kotlin
implementation("cloud.commandframework:cloud-bungee:2.0.0-SNAPSHOT")
implementation("org.incendo:cloud-bungee:2.0.0-SNAPSHOT")
```

=== "Gradle (Groovy)"

```groovy
implementation 'cloud.commandframework:cloud-bungee:2.0.0-SNAPSHOT'
implementation 'org.incendo:cloud-bungee:2.0.0-SNAPSHOT'
```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions docs/minecraft/minecraft-extras.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@

## Installation

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

<!-- prettier-ignore -->
=== "Maven"

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

```kotlin
implementation("cloud.commandframework:cloud-minecraft-extras:2.0.0-SNAPSHOT")
implementation("org.incendo:cloud-minecraft-extras:2.0.0-SNAPSHOT")
```

=== "Gradle (Groovy)"

```groovy
implementation 'cloud.commandframework:cloud-minecraft-extras:2.0.0-SNAPSHOT'
implementation 'org.incendo:cloud-minecraft-extras:2.0.0-SNAPSHOT'
```

## Minecraft Help
Expand Down
6 changes: 3 additions & 3 deletions docs/minecraft/modded/fabric.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Installation

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

=== "Gradle (Kotlin)"

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

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

dependencies {
def cloudFabric = 'cloud.commandframework:cloud-fabric:VERSION'
def cloudFabric = 'org.incendo:cloud-fabric:VERSION'
modImplementation(cloudFabric)
include(cloudFabric)
}
Expand Down
10 changes: 5 additions & 5 deletions docs/minecraft/modded/neoforge.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Installation

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

=== "Gradle (Kotlin, NeoGradle)"

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

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

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

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

dependencies {
def cloudFabric = 'cloud.commandframework:cloud-neoforge:VERSION'
def cloudFabric = 'org.incendo:cloud-neoforge:VERSION'
modImplementation(cloudFabric)
include(cloudFabric)
}
Expand Down
8 changes: 4 additions & 4 deletions docs/minecraft/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ The following documentation is written with the assumption that you have already

## Installation

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

<!-- prettier-ignore -->
=== "Maven"

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

```kotlin
implementation("cloud.commandframework:cloud-paper:2.0.0-SNAPSHOT")
implementation("org.incendo:cloud-paper:2.0.0-SNAPSHOT")
```

=== "Gradle (Groovy)"

```groovy
implementation 'cloud.commandframework:cloud-paper:2.0.0-SNAPSHOT'
implementation 'org.incendo:cloud-paper:2.0.0-SNAPSHOT'
```

## Usage
Expand Down
8 changes: 4 additions & 4 deletions docs/minecraft/velocity.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

## Installation

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

<!-- prettier-ignore -->
=== "Maven"

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

```kotlin
implementation("cloud.commandframework:cloud-velocity:2.0.0-SNAPSHOT")
implementation("org.incendo:cloud-velocity:2.0.0-SNAPSHOT")
```

=== "Gradle (Groovy)"

```groovy
implementation 'cloud.commandframework:cloud-velocity:2.0.0-SNAPSHOT'
implementation 'org.incendo:cloud-velocity:2.0.0-SNAPSHOT'
```

## Usage
Expand Down

0 comments on commit dd3a813

Please sign in to comment.