Files
kotlin-fork/idea/testData/gradle/configurator/configureJvmEAPWithBuildGradleKts/build.gradle.kts.after
T
Natalia Selezneva 648e8acbde Update testdata after the fix of KT-27095
(replace http with https configuring gradle project)
2018-10-15 12:28:43 +03:00

32 lines
649 B
Plaintext
Vendored

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
kotlin("jvm") version "1.2.40-eap-62"
}
group = "testgroup"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
}
dependencies {
testCompile("junit", "junit", "4.12")
compile(kotlin("stdlib-jdk8"))
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
jvmTarget = "1.8"
}
val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
jvmTarget = "1.8"
}