File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22.vscode
33.gradle
44build
5+ /plugin /run
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ repositories {
33}
44
55dependencies {
6- api(" studio.o7:octopus-sdk:0.3.3" )
7- compileOnly(" io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT" )
6+ api(" studio.o7:octopus-sdk:0.5.9" )
7+ api(" studio.o7:gentle:0.0.2" )
8+ compileOnly(" io.papermc.paper:paper-api:1.21.11-R0.1-SNAPSHOT" )
89}
910
1011information {
Original file line number Diff line number Diff line change 11import studio.o7.remora.RemoraPlugin
22
33plugins {
4- id(" studio.o7.remora" ) version " 0.3.6 "
4+ id(" studio.o7.remora" ) version " 0.4.0 "
55}
66
77allprojects {
Original file line number Diff line number Diff line change 1+ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
12import studio.o7.remora.plugin.ApiVersion
23import studio.o7.remora.plugin.Load
34
5+ plugins {
6+ id(" xyz.jpenilla.run-paper" ) version " 3.0.2"
7+ }
8+
49dependencies {
510 implementation(project(" :api" ))
11+
12+ implementation(" io.grpc:grpc-okhttp:1.78.0" )
13+ implementation(" io.grpc:grpc-protobuf:1.78.0" )
14+ implementation(" io.grpc:grpc-stub:1.78.0" )
615}
716
817information {
918 artifactId = " octopus"
10- description = " Octopus paper plugin"
19+ description = " Octopus-API paper plugin implementation"
20+ url = " https://github.com/o7studios/octopus-plugin"
1121}
1222
1323plugin {
@@ -16,3 +26,19 @@ plugin {
1626 apiVersion = ApiVersion .PAPER_1_21_8
1727 load.set(Load .POST_WORLD )
1828}
29+
30+ tasks.named<ShadowJar >(" shadowJar" ) {
31+ duplicatesStrategy = DuplicatesStrategy .EXCLUDE
32+ mergeServiceFiles()
33+
34+ filesMatching(" META-INF/services/**" ) {
35+ duplicatesStrategy = DuplicatesStrategy .INCLUDE
36+ }
37+ }
38+
39+ tasks {
40+ runServer {
41+ minecraftVersion(" 1.21.11" )
42+ args(" --port" , " 25565" )
43+ }
44+ }
You can’t perform that action at this time.
0 commit comments