aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-07 07:47:11 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-07-07 08:29:04 +0200
commit33cf9d62f409dd5d98678fdcd29227763af11586 (patch)
treecc48eb6879648aeeea7177b640f8031971df5dc0 /integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle
parentdaadf8431b9280d5f96cfce2698b83c5e11524f6 (diff)
downloaddokka-33cf9d62f409dd5d98678fdcd29227763af11586.tar.gz
dokka-33cf9d62f409dd5d98678fdcd29227763af11586.tar.bz2
dokka-33cf9d62f409dd5d98678fdcd29227763af11586.zip
Remove old integration tests folder
Diffstat (limited to 'integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle')
-rw-r--r--integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle39
1 files changed, 0 insertions, 39 deletions
diff --git a/integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle b/integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle
deleted file mode 100644
index b1ee52ab..00000000
--- a/integration-tests/gradle-integration-tests/testData/androidLibDependsOnJavaLib/lib/build.gradle
+++ /dev/null
@@ -1,39 +0,0 @@
-buildscript {
- dependencies {
- classpath "com.android.tools.build:gradle:$abt_plugin_version"
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$test_kotlin_version"
- }
-}
-
-
-plugins {
- id 'org.jetbrains.dokka'
-}
-
-
-apply plugin: 'com.android.library'
-apply plugin: 'kotlin-android'
-
-
-android {
- compileSdkVersion Integer.parseInt(sdk_version)
- buildToolsVersion abt_version
-
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
-}
-
-dependencies {
- api(project(":jlib"))
- dokkaRuntime files(dokka_fatjar)
-}
-
-dokka {
- configuration {
- externalDocumentationLink {
- url = new URL("https://example.com")
- packageListUrl = file("$rootDir/package-list").toURI().toURL()
- }
- }
-} \ No newline at end of file