22 lines
422 B
Groovy
22 lines
422 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.github.hdvtdev'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform('com.fasterxml.jackson:jackson-bom:2.18.3')
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:5.2.1'
|
|
implementation(project(":core"))
|
|
}
|
|
|