Skip to content

Commit

Permalink
Merge pull request android#567 from SimonMarquis/build-gradle-kts
Browse files Browse the repository at this point in the history
Migrate last build.gradle to build.gradle.kts
  • Loading branch information
alexvanyo committed Feb 6, 2023
2 parents 8af261e + 9241720 commit eb532f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lint/build.gradle → lint/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -25,6 +25,6 @@ java {
}

dependencies {
compileOnly libs.kotlin.stdlib
compileOnly libs.lint.api
compileOnly(libs.kotlin.stdlib)
compileOnly(libs.lint.api)
}

0 comments on commit eb532f4

Please sign in to comment.