File tree Expand file tree Collapse file tree 15 files changed +26
-26
lines changed
bukkit-adventure-platform
src/main/java/dev/rollczi/example/velocity
litecommands-fabric/src/main/resources Expand file tree Collapse file tree 15 files changed +26
-26
lines changed Original file line number Diff line number Diff line change 11{
2- "versionRelease" : " 3.10.7 " ,
3- "versionSnapshot" : " 3.10.8-SNAPSHOT"
4- }
2+ "versionRelease" : " 3.10.8 " ,
3+ "versionSnapshot" : " 3.10.8-SNAPSHOT"
4+ }
Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ maven("https://repo.panda-lang.org/releases")
9191
9292#### ➕ Add LiteCommands to dependencies
9393``` kts
94- implementation(" dev.rollczi:{artifact}:3.10.7 " )
94+ implementation(" dev.rollczi:{artifact}:3.10.8 " )
9595```
9696``` xml
9797<dependency >
9898 <groupId >dev.rollczi</groupId >
9999 <artifactId >{artifact}</artifactId >
100- <version >3.10.7 </version >
100+ <version >3.10.8 </version >
101101</dependency >
102102```
103103> ⚠️ Replace ` {artifact} ` with [ platform artifact] ( https://docs.rollczi.dev/documentation/litecommands/platforms.html#supported-platforms )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66group = " dev.rollczi"
7- version = " 3.10.8-SNAPSHOT "
7+ version = " 3.10.8"
88
99publishing {
1010 java {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id(" xyz.jpenilla.run-paper" ) version " 3.0.2"
66}
77
8- version = " 3.10.7 "
8+ version = " 3.10.8 "
99
1010repositories {
1111 mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.10.7 ") // <-- uncomment in your project
20- // implementation("dev.rollczi:litecommands-adventure-platform:3.10.7 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.10.8 ") // <-- uncomment in your project
20+ // implementation("dev.rollczi:litecommands-adventure-platform:3.10.8 ") // <-- uncomment in your project
2121 implementation(" net.kyori:adventure-platform-bukkit:4.4.1" )
2222 implementation(" net.kyori:adventure-text-minimessage:4.26.1" )
2323
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id(" xyz.jpenilla.run-paper" ) version " 3.0.2"
66}
77
8- version = " 3.10.7 "
8+ version = " 3.10.8 "
99
1010repositories {
1111 mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.10.7 ") // <-- uncomment in your project
20- // implementation("dev.rollczi:litecommands-chatgpt:3.10.7 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.10.8 ") // <-- uncomment in your project
20+ // implementation("dev.rollczi:litecommands-chatgpt:3.10.8 ") // <-- 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}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id(" xyz.jpenilla.run-paper" ) version " 3.0.2"
66}
77
8- version = " 3.10.7 "
8+ version = " 3.10.8 "
99
1010repositories {
1111 mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.10.7 ") // <-- uncomment in your project
20- // implementation("dev.rollczi:litecommands-folia:3.10.7 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.10.8 ") // <-- uncomment in your project
20+ // implementation("dev.rollczi:litecommands-folia:3.10.8 ") // <-- 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}
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ dependencies {
2929 modLocalRuntime(" maven.modrinth:luckperms:5.4.36-forge" )
3030 modLocalRuntime(" com.terraformersmc:modmenu:15.0.1" )
3131
32- // modImplementation("dev.rollczi:litecommands-fabric:3.10.7 ") <-- uncomment in your project
33- // modImplementation("dev.rollczi:litecommands-luckperms:3.10.7 ") <-- uncomment in your project
32+ // modImplementation("dev.rollczi:litecommands-fabric:3.10.8 ") <-- uncomment in your project
33+ // modImplementation("dev.rollczi:litecommands-luckperms:3.10.8 ") <-- uncomment in your project
3434 implementation(project(path = " :litecommands-fabric" , configuration = " namedElements" )) // <-- REMOVE THIS
3535 implementation(project(" :litecommands-luckperms" )) // <-- REMOVE THIS
3636}
Original file line number Diff line number Diff line change 11{
22 "schemaVersion" : 1 ,
33 "id" : " litecommands_example" ,
4- "version" : " 3.10.7 " ,
4+ "version" : " 3.10.8 " ,
55 "name" : " LiteCommands Fabric Example" ,
66 "description" : " Annotation based command framework for Fabric." ,
77 "authors" : [
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ plugins {
55}
66
77group = " dev.rollczi"
8- version = " 3.10.7 "
8+ version = " 3.10.8 "
99
1010repositories {
1111 mavenCentral()
1212 maven(" https://repo.panda-lang.org/releases" )
1313}
1414
1515dependencies {
16- // implementation("dev.rollczi:litecommands-jda:3.10.7 ") // <-- uncomment in your project
16+ // implementation("dev.rollczi:litecommands-jda:3.10.8 ") // <-- uncomment in your project
1717 implementation(project(" :litecommands-jda" )) // don't use this line in your build.gradle
1818
1919 implementation(" net.dv8tion:JDA:6.3.0" )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ dependencies {
1818 implementation(" net.minestom:minestom:${Versions .MINESTOM } " )
1919 implementation(" net.kyori:adventure-text-minimessage:4.26.1" )
2020
21- // implementation("dev.rollczi:litecommands-minestom:3.10.7 ") // <-- uncomment in your project
21+ // implementation("dev.rollczi:litecommands-minestom:3.10.8 ") // <-- uncomment in your project
2222 implementation(project(" :litecommands-minestom" )) // don't use this line in your build.gradle
2323}
2424
You can’t perform that action at this time.
0 commit comments