23 lines
553 B
Groovy
23 lines
553 B
Groovy
description = 'Kotlin Test Annotations Common'
|
|
|
|
apply plugin: 'kotlin-platform-common'
|
|
|
|
JvmToolchain.updateJvmTarget(project, "1.8")
|
|
|
|
dependencies {
|
|
api kotlinStdlib("common")
|
|
testApi project(":kotlin-test:kotlin-test-common")
|
|
kotlinCompilerClasspath project(':libraries:tools:stdlib-compiler-classpath')
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinCompile) {
|
|
kotlinOptions.freeCompilerArgs += "-Xallow-kotlin-package"
|
|
}
|
|
|
|
jar {
|
|
manifestAttributes(manifest, project, 'Test')
|
|
}
|
|
|
|
configureSourcesJar()
|
|
configureJavadocJar()
|