Migrate last build.gradle to build.gradle.kts

pull/567/head
Simon Marquis 2 years ago
parent 8a25efabfc
commit 92417207dc

@ -14,9 +14,9 @@
* limitations under the License.
*/
plugins {
id 'java-library'
id 'kotlin'
id 'com.android.lint'
`java-library`
kotlin("jvm")
id("com.android.lint")
}
java {
@ -25,6 +25,6 @@ java {
}
dependencies {
compileOnly libs.kotlin.stdlib
compileOnly libs.lint.api
compileOnly(libs.kotlin.stdlib)
compileOnly(libs.lint.api)
}
Loading…
Cancel
Save