22 lines
509 B
Groovy
22 lines
509 B
Groovy
description = 'Kotlin Test Annotations Common'
|
|
|
|
apply plugin: 'kotlin-platform-common'
|
|
|
|
JvmToolchain.updateJvmTarget(project, "1.8")
|
|
|
|
dependencies {
|
|
api RepoDependencies.kotlinStdlib(project, "common")
|
|
testApi project(":kotlin-test:kotlin-test-common")
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinCompile) {
|
|
kotlinOptions.freeCompilerArgs += "-Xallow-kotlin-package"
|
|
}
|
|
|
|
jar {
|
|
manifestAttributes(manifest, project, 'Test')
|
|
}
|
|
|
|
configureSourcesJar()
|
|
RepoArtifacts.javadocJar(project)
|