File tree Expand file tree Collapse file tree 6 files changed +24
-24
lines changed Expand file tree Collapse file tree 6 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 13
13
14
14
## Installation
15
15
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 ) .
17
17
18
18
<!-- prettier-ignore -->
19
19
=== "Maven"
20
20
21
21
```xml
22
22
<dependencies>
23
23
<dependency>
24
- <groupId>cloud.commandframework </groupId>
24
+ <groupId>org.incendo </groupId>
25
25
<artifactId>cloud-bungee</artifactId>
26
26
<version>2.0.0-SNAPSHOT</version>
27
27
</dependency>
@@ -31,13 +31,13 @@ Cloud for BungeeCord is available through [Maven Central](https://central.sonaty
31
31
=== "Gradle (Kotlin)"
32
32
33
33
```kotlin
34
- implementation("cloud.commandframework :cloud-bungee:2.0.0-SNAPSHOT")
34
+ implementation("org.incendo :cloud-bungee:2.0.0-SNAPSHOT")
35
35
```
36
36
37
37
=== "Gradle (Groovy)"
38
38
39
39
```groovy
40
- implementation 'cloud.commandframework :cloud-bungee:2.0.0-SNAPSHOT'
40
+ implementation 'org.incendo :cloud-bungee:2.0.0-SNAPSHOT'
41
41
```
42
42
43
43
## Usage
Original file line number Diff line number Diff line change 19
19
20
20
## Installation
21
21
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 ) .
23
23
24
24
<!-- prettier-ignore -->
25
25
=== "Maven"
26
26
27
27
```xml
28
28
<dependencies>
29
29
<dependency>
30
- <groupId>cloud.commandframework </groupId>
30
+ <groupId>org.incendo </groupId>
31
31
<artifactId>cloud-minecraft-extras</artifactId>
32
32
<version>2.0.0-SNAPSHOT</version>
33
33
</dependency>
@@ -37,13 +37,13 @@ Cloud Minecraft Extras is available through [Maven Central](https://central.sona
37
37
=== "Gradle (Kotlin)"
38
38
39
39
```kotlin
40
- implementation("cloud.commandframework :cloud-minecraft-extras:2.0.0-SNAPSHOT")
40
+ implementation("org.incendo :cloud-minecraft-extras:2.0.0-SNAPSHOT")
41
41
```
42
42
43
43
=== "Gradle (Groovy)"
44
44
45
45
```groovy
46
- implementation 'cloud.commandframework :cloud-minecraft-extras:2.0.0-SNAPSHOT'
46
+ implementation 'org.incendo :cloud-minecraft-extras:2.0.0-SNAPSHOT'
47
47
```
48
48
49
49
## Minecraft Help
Original file line number Diff line number Diff line change 2
2
3
3
## Installation
4
4
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 ) .
6
6
7
7
=== "Gradle (Kotlin)"
8
8
@@ -12,7 +12,7 @@ Cloud for Fabric is available through [Maven Central](https://central.sonatype.c
12
12
}
13
13
14
14
dependencies {
15
- val cloudFabric = "cloud.commandframework :cloud-fabric:VERSION"
15
+ val cloudFabric = "org.incendo :cloud-fabric:VERSION"
16
16
modImplementation(cloudFabric)
17
17
include(cloudFabric)
18
18
}
@@ -26,7 +26,7 @@ Cloud for Fabric is available through [Maven Central](https://central.sonatype.c
26
26
}
27
27
28
28
dependencies {
29
- def cloudFabric = 'cloud.commandframework :cloud-fabric:VERSION'
29
+ def cloudFabric = 'org.incendo :cloud-fabric:VERSION'
30
30
modImplementation(cloudFabric)
31
31
include(cloudFabric)
32
32
}
Original file line number Diff line number Diff line change 2
2
3
3
## Installation
4
4
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 ) .
6
6
7
7
=== "Gradle (Kotlin, NeoGradle)"
8
8
@@ -14,7 +14,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
14
14
jarJar.enable()
15
15
16
16
dependencies {
17
- val cloudFabric = "cloud.commandframework :cloud-neoforge:VERSION"
17
+ val cloudFabric = "org.incendo :cloud-neoforge:VERSION"
18
18
implementation(cloudFabric)
19
19
jarJar(cloudFabric)
20
20
}
@@ -30,7 +30,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
30
30
jarJar.enable()
31
31
32
32
dependencies {
33
- def cloudFabric = 'cloud.commandframework :cloud-neoforge:VERSION'
33
+ def cloudFabric = 'org.incendo :cloud-neoforge:VERSION'
34
34
implementation(cloudFabric)
35
35
jarJar(cloudFabric)
36
36
}
@@ -44,7 +44,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
44
44
}
45
45
46
46
dependencies {
47
- val cloudFabric = "cloud.commandframework :cloud-neoforge:VERSION"
47
+ val cloudFabric = "org.incendo :cloud-neoforge:VERSION"
48
48
modImplementation(cloudFabric)
49
49
include(cloudFabric)
50
50
}
@@ -58,7 +58,7 @@ Cloud for NeoForge is available through [Maven Central](https://central.sonatype
58
58
}
59
59
60
60
dependencies {
61
- def cloudFabric = 'cloud.commandframework :cloud-neoforge:VERSION'
61
+ def cloudFabric = 'org.incendo :cloud-neoforge:VERSION'
62
62
modImplementation(cloudFabric)
63
63
include(cloudFabric)
64
64
}
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ The following documentation is written with the assumption that you have already
17
17
18
18
## Installation
19
19
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 ) .
21
21
22
22
<!-- prettier-ignore -->
23
23
=== "Maven"
24
24
25
25
```xml
26
26
<dependencies>
27
27
<dependency>
28
- <groupId>cloud.commandframework </groupId>
28
+ <groupId>org.incendo </groupId>
29
29
<artifactId>cloud-paper</artifactId>
30
30
<version>2.0.0-SNAPSHOT</version>
31
31
</dependency>
@@ -35,13 +35,13 @@ Cloud for Paper is available through [Maven Central](https://central.sonatype.co
35
35
=== "Gradle (Kotlin)"
36
36
37
37
```kotlin
38
- implementation("cloud.commandframework :cloud-paper:2.0.0-SNAPSHOT")
38
+ implementation("org.incendo :cloud-paper:2.0.0-SNAPSHOT")
39
39
```
40
40
41
41
=== "Gradle (Groovy)"
42
42
43
43
```groovy
44
- implementation 'cloud.commandframework :cloud-paper:2.0.0-SNAPSHOT'
44
+ implementation 'org.incendo :cloud-paper:2.0.0-SNAPSHOT'
45
45
```
46
46
47
47
## Usage
Original file line number Diff line number Diff line change 13
13
14
14
## Installation
15
15
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 ) .
17
17
18
18
<!-- prettier-ignore -->
19
19
=== "Maven"
20
20
21
21
```xml
22
22
<dependencies>
23
23
<dependency>
24
- <groupId>cloud.commandframework </groupId>
24
+ <groupId>org.incendo </groupId>
25
25
<artifactId>cloud-velocity</artifactId>
26
26
<version>2.0.0-SNAPSHOT</version>
27
27
</dependency>
@@ -31,13 +31,13 @@ Cloud for Velocity is available through [Maven Central](https://central.sonatype
31
31
=== "Gradle (Kotlin)"
32
32
33
33
```kotlin
34
- implementation("cloud.commandframework :cloud-velocity:2.0.0-SNAPSHOT")
34
+ implementation("org.incendo :cloud-velocity:2.0.0-SNAPSHOT")
35
35
```
36
36
37
37
=== "Gradle (Groovy)"
38
38
39
39
```groovy
40
- implementation 'cloud.commandframework :cloud-velocity:2.0.0-SNAPSHOT'
40
+ implementation 'org.incendo :cloud-velocity:2.0.0-SNAPSHOT'
41
41
```
42
42
43
43
## Usage
You can’t perform that action at this time.
0 commit comments