diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-07 13:12:05 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-07 13:31:38 +0200 |
commit | 14b9352b9b7a4084f72209ba686170e313f7863b (patch) | |
tree | 1745bb01d22926a7a7927788b4b8a89562dfb3dc /integration-tests/cli/build.gradle.kts | |
parent | f542ceb8014437a089175eac463e1fbf7cf520fd (diff) | |
download | dokka-14b9352b9b7a4084f72209ba686170e313f7863b.tar.gz dokka-14b9352b9b7a4084f72209ba686170e313f7863b.tar.bz2 dokka-14b9352b9b7a4084f72209ba686170e313f7863b.zip |
Lazily configure integration test tasks
Diffstat (limited to 'integration-tests/cli/build.gradle.kts')
-rw-r--r-- | integration-tests/cli/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-tests/cli/build.gradle.kts b/integration-tests/cli/build.gradle.kts index c3e98d0a..f825a148 100644 --- a/integration-tests/cli/build.gradle.kts +++ b/integration-tests/cli/build.gradle.kts @@ -23,7 +23,7 @@ val basePluginShadow: Configuration by configurations.creating dependencies { basePluginShadow(project(":plugins:base")) } -val basePluginShadowJar = tasks.create("basePluginShadowJar", ShadowJar::class) { +val basePluginShadowJar by tasks.register("basePluginShadowJar", ShadowJar::class) { configurations = listOf(basePluginShadow) archiveFileName.set("fat-base-plugin-$dokka_version.jar") archiveClassifier.set("") |