|
|
@ -40,7 +40,7 @@ allprojects { |
|
|
|
plugins.withType<ApplicationPlugin> { |
|
|
|
plugins.withType<ApplicationPlugin> { |
|
|
|
tasks.named<JavaExec>("run") { |
|
|
|
tasks.named<JavaExec>("run") { |
|
|
|
standardInput = System.`in` |
|
|
|
standardInput = System.`in` |
|
|
|
workingDir = rootProject.projectDir |
|
|
|
workingDir = rootDir |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -212,7 +212,7 @@ fun commitHash(): String { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
tasks.dokka { |
|
|
|
tasks.dokka { |
|
|
|
outputDirectory = "${project.buildDir}/kdoc" |
|
|
|
outputDirectory = "$buildDir/kdoc" |
|
|
|
outputFormat = "html" |
|
|
|
outputFormat = "html" |
|
|
|
|
|
|
|
|
|
|
|
subProjects = subprojects.filter { it.isFree && it.name != "deob-annotations" }.map { it.name } |
|
|
|
subProjects = subprojects.filter { it.isFree && it.name != "deob-annotations" }.map { it.name } |
|
|
|