5229ed0217
#KT-26916 Fixed
21 lines
310 B
Kotlin
21 lines
310 B
Kotlin
description = "Compatibility artifact with Mutable and ReadOnly annotations"
|
|
|
|
plugins {
|
|
java
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
tasks.withType<JavaCompile> {
|
|
sourceCompatibility = "1.6"
|
|
targetCompatibility = "1.6"
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
dist()
|