diff --git a/idea/testData/gradle/configurator/addLibraryGSK/build.gradle.kts.3.5.after b/idea/testData/gradle/configurator/addLibraryGSK/build.gradle.kts.3.5.after deleted file mode 100644 index 8c19bd760ec..00000000000 --- a/idea/testData/gradle/configurator/addLibraryGSK/build.gradle.kts.3.5.after +++ /dev/null @@ -1,9 +0,0 @@ -plugins { - kotlin("jvm") version "1.2.50" -} - -dependencies { - testCompile("junit:junit:4.12") - compile(kotlinModule("stdlib-jre8")) - implementation(kotlinModule("reflect", "1.0.0")) -} diff --git a/idea/testData/gradle/configurator/addTestLibraryGSK/build.gradle.kts.3.5.after b/idea/testData/gradle/configurator/addTestLibraryGSK/build.gradle.kts.3.5.after deleted file mode 100644 index 7c475da4828..00000000000 --- a/idea/testData/gradle/configurator/addTestLibraryGSK/build.gradle.kts.3.5.after +++ /dev/null @@ -1,9 +0,0 @@ -plugins { - kotlin("jvm") version "1.2.50" -} - -dependencies { - compile(kotlinModule("stdlib-jre8")) - testImplementation("junit:junit:4.12") - testImplementation(kotlinModule("test", "1.1.2")) -} diff --git a/idea/testData/gradle/configurator/configure10/build.gradle.3.5.after b/idea/testData/gradle/configurator/configure10/build.gradle.3.5.after deleted file mode 100644 index 3a362c4cdd1..00000000000 --- a/idea/testData/gradle/configurator/configure10/build.gradle.3.5.after +++ /dev/null @@ -1,17 +0,0 @@ -buildscript { - ext.kotlin_version = '1.0.6' - repositories { - jcenter() - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} -apply plugin: 'kotlin' -repositories { - mavenCentral() -} -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" -} diff --git a/idea/testData/gradle/configurator/configureGSK/build.gradle.kts.3.5.after b/idea/testData/gradle/configurator/configureGSK/build.gradle.kts.3.5.after deleted file mode 100644 index f862a3a0f71..00000000000 --- a/idea/testData/gradle/configurator/configureGSK/build.gradle.kts.3.5.after +++ /dev/null @@ -1,31 +0,0 @@ -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - -val kotlin_version: String by extra -buildscript { - var kotlin_version: String by extra - kotlin_version = "1.1.2" - repositories { - jcenter() - mavenCentral() - } - dependencies { - classpath(kotlinModule("gradle-plugin", kotlin_version)) - } -} -apply { - plugin("kotlin") -} -dependencies { - implementation(kotlinModule("stdlib-jre8", kotlin_version)) -} -repositories { - mavenCentral() -} -val compileKotlin: KotlinCompile by tasks -compileKotlin.kotlinOptions { - jvmTarget = "1.8" -} -val compileTestKotlin: KotlinCompile by tasks -compileTestKotlin.kotlinOptions { - jvmTarget = "1.8" -} diff --git a/idea/testData/gradle/configurator/configureGradleKtsKotlinDevVersion/build.gradle.kts.3.5.after b/idea/testData/gradle/configurator/configureGradleKtsKotlinDevVersion/build.gradle.kts.3.5.after deleted file mode 100644 index c18c22acede..00000000000 --- a/idea/testData/gradle/configurator/configureGradleKtsKotlinDevVersion/build.gradle.kts.3.5.after +++ /dev/null @@ -1,34 +0,0 @@ -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - -val kotlin_version: String by extra -buildscript { - var kotlin_version: String by extra - kotlin_version = "1.2.60-dev-286" - repositories { - maven { setUrl("https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_KotlinPublic_Compiler),number:1.2.60-dev-286,branch:(default:any)/artifacts/content/maven") } - mavenCentral() - } - dependencies { - classpath(kotlinModule("gradle-plugin", kotlin_version)) - } -} -group = "testgroup" -version = "1.0-SNAPSHOT" -apply { - plugin("kotlin") -} -dependencies { - implementation(kotlinModule("stdlib-jdk8", kotlin_version)) -} -repositories { - maven { setUrl("https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_KotlinPublic_Compiler),number:1.2.60-dev-286,branch:(default:any)/artifacts/content/maven") } - mavenCentral() -} -val compileKotlin: KotlinCompile by tasks -compileKotlin.kotlinOptions { - jvmTarget = "1.8" -} -val compileTestKotlin: KotlinCompile by tasks -compileTestKotlin.kotlinOptions { - jvmTarget = "1.8" -} diff --git a/idea/testData/gradle/configurator/configureKotlinDevVersion/build.gradle.3.5.after b/idea/testData/gradle/configurator/configureKotlinDevVersion/build.gradle.3.5.after deleted file mode 100644 index feef524f7dc..00000000000 --- a/idea/testData/gradle/configurator/configureKotlinDevVersion/build.gradle.3.5.after +++ /dev/null @@ -1,34 +0,0 @@ -group 'testgroup' -version '1.0-SNAPSHOT' -buildscript { - ext.kotlin_version = '1.2.60-dev-286' - repositories { - maven { - url 'https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_KotlinPublic_Compiler),number:1.2.60-dev-286,branch:(default:any)/artifacts/content/maven' - } - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} -apply plugin: 'kotlin' -repositories { - maven { - url 'https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_KotlinPublic_Compiler),number:1.2.60-dev-286,branch:(default:any)/artifacts/content/maven' - } - mavenCentral() -} -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" -} -compileKotlin { - kotlinOptions { - jvmTarget = "1.8" - } -} -compileTestKotlin { - kotlinOptions { - jvmTarget = "1.8" - } -} diff --git a/idea/testData/gradle/configurator/configureKotlinWithPluginsBlock/build.gradle.3.5.after b/idea/testData/gradle/configurator/configureKotlinWithPluginsBlock/build.gradle.3.5.after deleted file mode 100644 index 8bbf3aeab32..00000000000 --- a/idea/testData/gradle/configurator/configureKotlinWithPluginsBlock/build.gradle.3.5.after +++ /dev/null @@ -1,27 +0,0 @@ -buildscript { - ext.kotlin_version = '1.0.6' - repositories { - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} -plugins { - id 'java' -} -apply plugin: 'kotlin' - -group 'testgroup' -version '1.0-SNAPSHOT' - -sourceCompatibility = 1.8 - -repositories { - mavenCentral() -} - -dependencies { - testCompile group: 'junit', name: 'junit', version: '4.12' - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" -}