Skip to content

Commit eb532f4

Browse files
authored
Merge pull request #567 from SimonMarquis/build-gradle-kts
Migrate last build.gradle to build.gradle.kts
2 parents 8af261e + 9241720 commit eb532f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616
plugins {
17-
id 'java-library'
18-
id 'kotlin'
19-
id 'com.android.lint'
17+
`java-library`
18+
kotlin("jvm")
19+
id("com.android.lint")
2020
}
2121

2222
java {
@@ -25,6 +25,6 @@ java {
2525
}
2626

2727
dependencies {
28-
compileOnly libs.kotlin.stdlib
29-
compileOnly libs.lint.api
28+
compileOnly(libs.kotlin.stdlib)
29+
compileOnly(libs.lint.api)
3030
}

0 commit comments

Comments
 (0)