25 lines
491 B
Groovy
25 lines
491 B
Groovy
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
|
|
}
|
|
}
|
|
|