aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle-integration-tests/testData/multiplatformProject/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/multiplatformProject/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/multiplatformProject/build.gradle')
-rw-r--r--integration-tests/gradle-integration-tests/testData/multiplatformProject/build.gradle60
1 files changed, 0 insertions, 60 deletions
diff --git a/integration-tests/gradle-integration-tests/testData/multiplatformProject/build.gradle b/integration-tests/gradle-integration-tests/testData/multiplatformProject/build.gradle
deleted file mode 100644
index b5454c55..00000000
--- a/integration-tests/gradle-integration-tests/testData/multiplatformProject/build.gradle
+++ /dev/null
@@ -1,60 +0,0 @@
-buildscript {
- repositories {
- mavenCentral()
- jcenter()
- maven { url "https://dl.bintray.com/kotlin/kotlin-eap-1.1" }
- maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
- }
- dependencies {
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$test_kotlin_version"
- }
-}
-
-plugins {
- id 'org.jetbrains.dokka'
-}
-
-repositories {
- jcenter()
- mavenLocal()
-}
-
-group 'org.test'
-version '1.0-SNAPSHOT'
-
-apply plugin: "org.jetbrains.kotlin.multiplatform"
-
-kotlin {
- jvm() // Create a JVM target with the default name 'jvm'
- js()
- sourceSets {
- jsMain {
- dependencies{
- implementation "org.jetbrains.kotlin:kotlin-stdlib-js"
- }
- }
- jvmMain {
- dependencies {
- implementation kotlin('stdlib-jdk8')
- }
- }
- }
-}
-
-dependencies {
- dokkaRuntime files(dokka_fatjar)
-}
-
-apply plugin: 'org.jetbrains.dokka'
-
-dokka {
-
- multiplatform {
- javascript {
- targets = ["js"]
- platform = "js"
- kotlinTasks { [tasks.getByPath(":compileKotlinJs")] }
- }
- jvm {}
- }
-}