Files
TeleJ/build.gradle

27 lines
473 B
Groovy
Raw Normal View History

2025-04-02 19:25:40 +03:00
plugins {
id 'java'
}
group = 'com.github.hdvtdev'
version = '1.0.0'
2025-04-02 19:25:40 +03:00
repositories {
mavenCentral()
}
dependencies {
2025-04-22 12:36:22 +03:00
implementation(project(":core"))
implementation(project(":longpolling-okhttp"))
2025-04-02 19:25:40 +03:00
}
2025-04-22 12:36:22 +03:00
tasks.register('fat', Jar) {
archiveClassifier.set('all')
2025-04-02 19:25:40 +03:00
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
2025-04-22 12:36:22 +03:00
from sourceSets.main.output
2025-04-02 19:25:40 +03:00
2025-04-22 12:36:22 +03:00
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
2025-04-02 19:25:40 +03:00
}
2025-04-22 12:36:22 +03:00