Files
kotlin-fork/plugins/parcelize/parcelize-runtime/build.gradle.kts
T
Alexander Udalov 0a9498f7e2 Build: suppress deprecated JVM target warning globally
There seems to be no point in configuring the compiler argument per
project. This argument will be deleted soon anyway, when we remove
support for JDK 1.6 & 1.7.

Also remove `disableDeprecatedJvmTargetWarning`. It didn't have any
effect in all modules where it was applied because these modules
reassign `freeCompilerArgs` anyway, with
`-Xsuppress-deprecated-jvm-target-warning` in it.
2021-07-27 13:35:39 +02:00

28 lines
478 B
Kotlin

description = "Runtime library for the Parcelize compiler plugin"
plugins {
kotlin("jvm")
id("jps-compatible")
}
project.updateJvmTarget("1.6")
dependencies {
compile(kotlinStdlib())
compile(project(":kotlin-android-extensions-runtime"))
compileOnly(commonDep("com.google.android", "android"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
publish {
artifactId = "kotlin-parcelize-runtime"
}
runtimeJar()
sourcesJar()
javadocJar()