aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/build.gradle.kts1
-rw-r--r--integration-tests/gradle-integration-tests/build.gradle.kts3
2 files changed, 2 insertions, 2 deletions
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
index c8cae2d6..fbe9d563 100644
--- a/core/build.gradle.kts
+++ b/core/build.gradle.kts
@@ -1,7 +1,6 @@
import org.jetbrains.configureBintrayPublication
plugins {
- id("com.github.johnrengelman.shadow")
`maven-publish`
id("com.jfrog.bintray")
}
diff --git a/integration-tests/gradle-integration-tests/build.gradle.kts b/integration-tests/gradle-integration-tests/build.gradle.kts
index 0a1cb9e1..7fc945b5 100644
--- a/integration-tests/gradle-integration-tests/build.gradle.kts
+++ b/integration-tests/gradle-integration-tests/build.gradle.kts
@@ -14,7 +14,8 @@ dependencies {
testImplementation(gradleTestKit())
dokkaPlugin(project(path = ":runners:gradle-plugin"))
- dokkaCore(project(path = ":core", configuration = "shadow"))
+ dokkaCore(project(path = ":coreDependencies", configuration = "shadow"))
+ dokkaCore(project(path = ":core"))
kotlinGradle("org.jetbrains.kotlin:kotlin-gradle-plugin")
}