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

Migrate last build.gradle to build.gradle.kts
pull/575/head
Alex Vanyo 3 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. * limitations under the License.
*/ */
plugins { plugins {
id 'java-library' `java-library`
id 'kotlin' kotlin("jvm")
id 'com.android.lint' id("com.android.lint")
} }
java { java {
@ -25,6 +25,6 @@ java {
} }
dependencies { dependencies {
compileOnly libs.kotlin.stdlib compileOnly(libs.kotlin.stdlib)
compileOnly libs.lint.api compileOnly(libs.lint.api)
} }
Loading…
Cancel
Save