Add compatibility artifact with Mutable and ReadOnly annotations into dist

#KT-26916 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2018-09-17 22:28:46 +03:00
parent ed7dd6fccb
commit 5229ed0217
6 changed files with 21 additions and 64 deletions
@@ -0,0 +1,20 @@
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()