Merge pull request #567 from SimonMarquis/build-gradle-kts

Migrate last build.gradle to build.gradle.kts
pull/575/head
Alex Vanyo 2 years ago committed by GitHub
commit eb532f49b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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