Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Move temporary workaround for #40
Browse files Browse the repository at this point in the history
  • Loading branch information
tlinkowski committed Sep 2, 2019
1 parent a617856 commit d458bd8
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ subprojects {
api(project(":pl.tlinkowski.unij.api"))
testImplementation(project(":pl.tlinkowski.unij.test"))
}
//region TEMPORARY WORKAROUND: https://github.com/tlinkowski/UniJ/issues/40
tasks {
"javadoc" {
enabled = false
}
}
//endregion
}
if (name.contains(".service.collect.") || name.contains(".service.misc.")) {
dependencies {
Expand Down Expand Up @@ -110,21 +117,3 @@ subprojects {
jvmArgsAppend = listOf("-Djmh.separateClasspathJAR=true") // https://bugs.openjdk.java.net/browse/CODETOOLS-7902106
}
}

//region TEMPORARY workaround for: https://github.com/tlinkowski/UniJ/issues/40 (TODO: remove this)
val namesOfYetEmptyProjects = listOf(
"pl.tlinkowski.unij.bundle.eclipse_jdk8",
"pl.tlinkowski.unij.bundle.guava_jdk8",
"pl.tlinkowski.unij.bundle.jdk8",
"pl.tlinkowski.unij.bundle.jdk11"
)
namesOfYetEmptyProjects.forEach {
project(":$it") {
tasks {
"javadoc" {
enabled = false
}
}
}
}
//endregion

0 comments on commit d458bd8

Please sign in to comment.