Skip to content

Commit d778bc7

Browse files
committed
Refactor merge system and Release 3.10.5
1 parent f3c6bcd commit d778bc7

File tree

19 files changed

+200
-69
lines changed

19 files changed

+200
-69
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ maven("https://repo.panda-lang.org/releases")
9191

9292
#### ➕ Add LiteCommands to dependencies
9393
```kts
94-
implementation("dev.rollczi:{artifact}:3.10.4")
94+
implementation("dev.rollczi:{artifact}:3.10.5")
9595
```
9696
```xml
9797
<dependency>

buildSrc/src/main/kotlin/litecommands-publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "dev.rollczi"
7-
version = "3.10.5-SNAPSHOT"
7+
version = "3.10.5"
88

99
publishing {
1010
java {

examples/bukkit-adventure-platform/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.10.4"
8+
version = "3.10.5"
99

1010
repositories {
1111
mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.10.4") // <-- uncomment in your project
20-
// implementation("dev.rollczi:litecommands-adventure-platform:3.10.4") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.10.5") // <-- uncomment in your project
20+
// implementation("dev.rollczi:litecommands-adventure-platform:3.10.5") // <-- uncomment in your project
2121
implementation("net.kyori:adventure-platform-bukkit:4.4.1")
2222
implementation("net.kyori:adventure-text-minimessage:4.24.0")
2323

examples/bukkit-chatgpt/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.10.4"
8+
version = "3.10.5"
99

1010
repositories {
1111
mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.10.4") // <-- uncomment in your project
20-
// implementation("dev.rollczi:litecommands-chatgpt:3.10.4") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.10.5") // <-- uncomment in your project
20+
// implementation("dev.rollczi:litecommands-chatgpt:3.10.5") // <-- uncomment in your project
2121
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2222
implementation(project(":litecommands-chatgpt")) // don't use this line in your build.gradle
2323
}

examples/bukkit/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.10.4"
8+
version = "3.10.5"
99

1010
repositories {
1111
mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.10.4") // <-- uncomment in your project
20-
// implementation("dev.rollczi:litecommands-folia:3.10.4") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.10.5") // <-- uncomment in your project
20+
// implementation("dev.rollczi:litecommands-folia:3.10.5") // <-- uncomment in your project
2121
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2222
implementation(project(":litecommands-folia")) // don't use this line in your build.gradle
2323
}

examples/fabric/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ dependencies {
2929
modLocalRuntime("maven.modrinth:luckperms:5.4.36-forge")
3030
modLocalRuntime("com.terraformersmc:modmenu:13.0.3")
3131

32-
// modImplementation("dev.rollczi:litecommands-fabric:3.10.4") <-- uncomment in your project
33-
// modImplementation("dev.rollczi:litecommands-luckperms:3.10.4") <-- uncomment in your project
32+
// modImplementation("dev.rollczi:litecommands-fabric:3.10.5") <-- uncomment in your project
33+
// modImplementation("dev.rollczi:litecommands-luckperms:3.10.5") <-- uncomment in your project
3434
implementation(project(path = ":litecommands-fabric", configuration = "namedElements")) // <-- REMOVE THIS
3535
implementation(project(":litecommands-luckperms")) // <-- REMOVE THIS
3636
}

examples/fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "litecommands_example",
4-
"version": "3.10.4",
4+
"version": "3.10.5",
55
"name": "LiteCommands Fabric Example",
66
"description": "Annotation based command framework for Fabric.",
77
"authors": [

examples/jda/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ plugins {
55
}
66

77
group = "dev.rollczi"
8-
version = "3.10.4"
8+
version = "3.10.5"
99

1010
repositories {
1111
mavenCentral()
1212
maven("https://repo.panda-lang.org/releases")
1313
}
1414

1515
dependencies {
16-
// implementation("dev.rollczi:litecommands-jda:3.10.4") // <-- uncomment in your project
16+
// implementation("dev.rollczi:litecommands-jda:3.10.5") // <-- uncomment in your project
1717
implementation(project(":litecommands-jda")) // don't use this line in your build.gradle
1818

1919
implementation("net.dv8tion:JDA:5.6.1")

examples/minestom/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
implementation("net.minestom:minestom:${Versions.MINESTOM}")
1919
implementation("net.kyori:adventure-text-minimessage:4.24.0")
2020

21-
// implementation("dev.rollczi:litecommands-minestom:3.10.4") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-minestom:3.10.5") // <-- uncomment in your project
2222
implementation(project(":litecommands-minestom")) // don't use this line in your build.gradle
2323
}
2424

examples/paper/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repositories {
1414
dependencies {
1515
compileOnly("io.papermc.paper:paper-api:1.21.5-R0.1-SNAPSHOT")
1616

17-
// implementation("dev.rollczi:litecommands-bukkit:3.10.4") // <-- uncomment in your project
17+
// implementation("dev.rollczi:litecommands-bukkit:3.10.5") // <-- uncomment in your project
1818
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
1919
}
2020

0 commit comments

Comments
 (0)