Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja committed Nov 13, 2024
1 parent f8cf2ae commit 2c9cdda
Show file tree
Hide file tree
Showing 10 changed files with 213 additions and 163 deletions.
13 changes: 4 additions & 9 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import org.jetbrains.dokka.gradle.DokkaTaskPartial
import java.net.URL
import java.net.URI

plugins {
alias(libs.plugins.android.library)
Expand Down Expand Up @@ -45,7 +44,7 @@ android {
}

kotlin {
jvmToolchain(17)
jvmToolchain(21)
explicitApi()

androidTarget {
Expand Down Expand Up @@ -139,16 +138,12 @@ publishing {
}
}

tasks.withType<DokkaTaskPartial>().configureEach {
dokka {
dokkaSourceSets.configureEach {
includes.from("MODULE.md")
externalDocumentationLink(
url = "https://developer.android.com/reference/kotlin/",
packageListUrl = "https://developer.android.com/reference/kotlin/androidx/package-list"
)
sourceLink {
localDirectory.set(projectDir.resolve("src"))
remoteUrl.set(URL("https://github.com/boswelja/compose-markdown/tree/main/core/src"))
remoteUrl.set(URI("https://github.com/boswelja/compose-markdown/tree/main/core/src"))
remoteLineSuffix.set("#L")
}
}
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ android.useAndroidX=true

kotlin.code.style=official

# Dokka 2
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled

# Below here is all packaging details, not build configuration.
version=1.1.0
group=io.github.boswelja.markdown
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[versions]
android-gradle-plugin = "8.4.1"
android-gradle-plugin = "8.7.2"
detekt = "1.23.7"
kotlin = "2.0.21"
dokka = "1.9.20"
dokka = "2.0.0-Beta"

compose = "1.7.0"
compose = "1.7.1"

coil = "3.0.2"

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Sat Sep 16 15:35:32 NZST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 2c9cdda

Please sign in to comment.