aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-multimodule-1/second/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/gradle/projects/it-multimodule-1/second/build.gradle')
-rw-r--r--integration-tests/gradle/projects/it-multimodule-1/second/build.gradle14
1 files changed, 0 insertions, 14 deletions
diff --git a/integration-tests/gradle/projects/it-multimodule-1/second/build.gradle b/integration-tests/gradle/projects/it-multimodule-1/second/build.gradle
deleted file mode 100644
index 2b62f963..00000000
--- a/integration-tests/gradle/projects/it-multimodule-1/second/build.gradle
+++ /dev/null
@@ -1,14 +0,0 @@
-dependencies {
- implementation project(":first")
-}
-dokkaHtml {
- dependsOn(":first:dokkaHtml")
- dokkaSourceSets {
- "main" {
- externalDocumentationLink {
- url.set(new URL("file://" + rootProject.rootDir.toPath().toAbsolutePath().resolve("first/build/dokka/html/")))
- packageListUrl.set(new URL("file://" + rootProject.rootDir.toPath().toAbsolutePath().resolve("first/build/dokka/html/first/package-list")))
- }
- }
- }
-}