From c89ba121cc5b90d4ec54a352df38de96625e4e98 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Mon, 4 Jul 2016 11:16:48 -0700 Subject: [PATCH] Documentation. --- .../main/kotlin/com/beust/kobalt/internal/KobaltPluginXml.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/KobaltPluginXml.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/KobaltPluginXml.kt index 03f4f620..087b3a59 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/KobaltPluginXml.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/KobaltPluginXml.kt @@ -89,12 +89,12 @@ class PluginInfo(val xml: KobaltPluginXml, val pluginClassLoader: ClassLoader?, val taskContributors = arrayListOf() val assemblyContributors = arrayListOf() val incrementalAssemblyContributors = arrayListOf() + val incrementalTaskContributors = arrayListOf() // Not documented yet val buildConfigContributors = arrayListOf() val mavenIdInterceptors = arrayListOf() val jvmFlagContributors = arrayListOf() - val incrementalTaskContributors = arrayListOf() // Note: intentionally repeating them here even though they are defined by our base class so // that this class always contains the full list of contributors and interceptors @@ -204,12 +204,12 @@ class PluginInfo(val xml: KobaltPluginXml, val pluginClassLoader: ClassLoader?, if (this is IBuildConfigContributor) buildConfigContributors.add(this) if (this is IAssemblyContributor) assemblyContributors.add(this) if (this is IIncrementalAssemblyContributor) incrementalAssemblyContributors.add(this) + if (this is IIncrementalTaskContributor) incrementalTaskContributors.add(this) // Not documented yet if (this is ITestJvmFlagContributor) testJvmFlagContributors.add(this) if (this is ITestJvmFlagInterceptor) testJvmFlagInterceptors.add(this) if (this is IJvmFlagContributor) jvmFlagContributors.add(this) - if (this is IIncrementalTaskContributor) incrementalTaskContributors.add(this) } } }