changed pixelblock item and added item to recipe book

This commit is contained in:
2024-08-31 19:58:57 +02:00
parent 2ad3f135c3
commit e35145f8ed
5 changed files with 84 additions and 27 deletions

View File

@ -18,7 +18,7 @@ repositories {
}
dependencies {
compileOnly "io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT"
compileOnly "io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT"
}
def targetJavaVersion = 21
@ -47,3 +47,10 @@ processResources {
expand props
}
}
tasks.register('copyJarToTestServer', Exec) {
dependsOn jar
mustRunAfter jar
commandLine 'cp', 'build/libs/PixelBlocks-1.0-SNAPSHOT.jar', '/home/elias/Dokumente/mcTestServer/plugins/pixelblocks.jar'
}