dfkndsfjkdsjjdssdf

This commit is contained in:
hdvtdev
2025-04-22 12:35:04 +03:00
parent 8719e015ba
commit 52c9264253
398 changed files with 14324 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
plugins {
id 'java'
}
group = 'com.github.hdvtdev'
version = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.3'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation(project(":core"))
}
tasks.register('fat') {
jar {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
}