idk some "cool" stuff

This commit is contained in:
hdvt
2025-06-22 03:19:06 +03:00
parent 8c55754509
commit 4802aeb4a6
11 changed files with 369 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
plugins {
id 'java'
id("xyz.jpenilla.run-paper") version "2.3.1"
id 'com.rikonardo.papermake' version '1.0.6'
}
group = 'hdvtdev'
@@ -8,6 +9,7 @@ version = '0.0.1-a'
repositories {
mavenCentral()
maven { url 'https://repo.md-5.net/content/groups/public/' }
maven {
name = "papermc-repo"
url = "https://repo.papermc.io/repository/maven-public/"
@@ -20,6 +22,7 @@ repositories {
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
implementation group: 'me.libraryaddict.disguises', name: 'libsdisguises', version: '11.0.6'
}
tasks {
@@ -31,7 +34,7 @@ tasks {
}
}
def targetJavaVersion = 17
def targetJavaVersion = 21
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
sourceCompatibility = javaVersion
@@ -57,3 +60,8 @@ processResources {
expand props
}
}
jar {
destinationDirectory.set(file("/home/hadvart/Documents/Minecraft/Pufferfish 1.20.4/plugins"))
}