1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Use the correct directory for javadoc.

This commit is contained in:
Cedric Beust 2017-01-05 10:22:17 -08:00
parent f563d274dd
commit 5d31e55a4a
3 changed files with 3 additions and 3 deletions

View file

@ -221,7 +221,7 @@ open class JvmCompilerPlugin @Inject constructor(
fun taskJavadoc(project: Project): TaskResult {
val docGenerator = ActorUtils.selectAffinityActor(project, context, context.pluginInfo.docContributors)
if (docGenerator != null) {
val buildDirectory = File(project.buildDirectory, KFiles.JAVADOC_DIR)
val buildDirectory = File(project.buildDirectory, JvmCompilerPlugin.DOCS_DIRECTORY)
val contributors =
ActorUtils.selectAffinityActors(project, context, context.pluginInfo.compilerContributors)
var result: TaskResult? = null

View file

@ -71,7 +71,6 @@ class KFiles {
private val SRC = "src"
val TEST_CLASSES_DIR : String = "test-classes"
val JAVADOC_DIR: String = "docs/javadoc"
val NATIVES_DIR : String = "native"