Files
TeleJ/longpolling-okhttp/build.gradle

22 lines
422 B
Groovy
Raw Permalink Normal View History

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')
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"))
2025-04-22 12:35:04 +03:00
}