20 lines
355 B
Groovy
20 lines
355 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'
|
||
|
|
}
|
||
|
|
|
||
|
|
jar {
|
||
|
|
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
|
||
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||
|
|
}
|