27 lines
473 B
Groovy
27 lines
473 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.github.hdvtdev'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
implementation(project(":longpolling-okhttp"))
|
|
}
|
|
|
|
tasks.register('fat', Jar) {
|
|
archiveClassifier.set('all')
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
from sourceSets.main.output
|
|
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
}
|
|
|