18 lines
219 B
Groovy
18 lines
219 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
}
|
||
|
|
|
||
|
|
group = 'com.github.hdvtdev'
|
||
|
|
version = '1.0.0'
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(project(":core"))
|
||
|
|
implementation(project(":longpolling-okhttp"))
|
||
|
|
}
|
||
|
|
|
||
|
|
|