diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-05-06 12:23:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 06:53:53 +0000 |
commit | 0f465d4b95c7e05dbd62311a3ba034c6dbcd9b50 (patch) | |
tree | edfbf4578815ca1ea7bde023cbd21af3000b54da /buildSrc | |
parent | db77ceccadd6e868b1c6e34a581e1bc0ef9d8592 (diff) |
Upgrade Kotlin and AndroidX dependencies (#1402)
Diffstat (limited to 'buildSrc')
-rw-r--r-- | buildSrc/build.gradle.kts | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 003bbd6f..21eb81ba 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -12,6 +12,18 @@ repositories { google() gradlePluginPortal() mavenCentral() + // Dokka's transitive kotlinx-html dependency is only published to their Space repo + // https://github.com/Kotlin/dokka/releases/tag/v1.4.32 + maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") { + name = "KotlinX HTML Maven" + content { + includeModule("org.jetbrains.kotlinx", "kotlinx-html") + includeModule("org.jetbrains.kotlinx", "kotlinx-html-assembly") + includeModule("org.jetbrains.kotlinx", "kotlinx-html-common") + includeModule("org.jetbrains.kotlinx", "kotlinx-html-js") + includeModule("org.jetbrains.kotlinx", "kotlinx-html-jvm") + } + } } ktfmt { @@ -37,9 +49,9 @@ gradlePlugin { } dependencies { - implementation("com.android.tools.build:gradle:4.1.3") + implementation("com.android.tools.build:gradle:4.2.0") implementation("org.jetbrains.kotlinx:binary-compatibility-validator:0.5.0") - implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30") + implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.4.32") implementation("de.undercouch:gradle-download-task:4.1.1") implementation("com.google.dagger:hilt-android-gradle-plugin:2.35.1") implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0") |