2025-04-22 12:35:04 +03:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = 'com.github.hdvtdev'
|
|
|
|
|
version = '1.0.0'
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-11-03 21:18:28 +03:00
|
|
|
implementation platform('com.fasterxml.jackson:jackson-bom:2.18.3')
|
|
|
|
|
|
2025-04-22 12:35:04 +03:00
|
|
|
|
2025-11-03 21:18:28 +03:00
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-core'
|
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
|
|
|
|
|
|
//implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:5.2.1'
|
|
|
|
|
implementation(project(":core"))
|
2025-04-22 12:35:04 +03:00
|
|
|
}
|
|
|
|
|
|