KT-34795 Remove obsolete Gradle 3.5 test data

- Tests do not run with Gradle 3.5 anymore
This commit is contained in:
Roman Golyshev
2020-01-22 12:35:25 +03:00
committed by Roman Golyshev
parent 7627834dd0
commit 3dbc058db9
7 changed files with 0 additions and 161 deletions
@@ -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"))
}
@@ -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"))
}
@@ -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"
}
@@ -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"
}
@@ -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"
}
@@ -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"
}
}
@@ -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"
}