|
@@ -91,26 +91,27 @@ project("service-system") {
|
|
|
dependencies {
|
|
|
implementation("com.github.oshi:oshi-core:6.1.4")
|
|
|
implementation(project(path = ":services:service-task", configuration = "lib"))
|
|
|
+ implementation(project(path = ":services:service-schedule", configuration = "lib"))
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
tasks.jar {
|
|
|
archiveBaseName.set("svs-core-${project.name}")
|
|
|
-// configure {
|
|
|
- from(tasks.withType<JavaCompile>())
|
|
|
- from(tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>())
|
|
|
- include("llh/**")
|
|
|
- exclude {
|
|
|
- it.name.endsWith("Application.class")
|
|
|
- }
|
|
|
- exclude {
|
|
|
- it.name.endsWith("ApplicationKt.class")
|
|
|
- }
|
|
|
- exclude {
|
|
|
- it.name.endsWith("Application${'$'}Companion.class")
|
|
|
+ configure(subprojects) {
|
|
|
+ from(tasks.withType<JavaCompile>())
|
|
|
+ from(tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>())
|
|
|
+ include("llh/**")
|
|
|
+ exclude {
|
|
|
+ it.name.endsWith("Application.class")
|
|
|
+ }
|
|
|
+ exclude {
|
|
|
+ it.name.endsWith("ApplicationKt.class")
|
|
|
+ }
|
|
|
+ exclude {
|
|
|
+ it.name.endsWith("Application${'$'}Companion.class")
|
|
|
+ }
|
|
|
}
|
|
|
-// }
|
|
|
}
|
|
|
publishing {
|
|
|
publications {
|