Skip to content

Commit

Permalink
Update markdown (#267)
Browse files Browse the repository at this point in the history
* Update compose-markdown

* Optimize dependency fetch
  • Loading branch information
boswelja authored Feb 9, 2025
1 parent 96e44af commit df9380d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ detekt = "1.23.7"

# Compose Markdown
# https://github.com/boswelja/compose-markdown.
composeMarkdown = "1.1.0"
composeMarkdown = "1.1.2"

# MaterialKolor
# https://github.com/jordond/MaterialKolor.
Expand Down
16 changes: 14 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,27 @@ import org.gradle.api.internal.FeaturePreviews.Feature.TYPESAFE_PROJECT_ACCESSOR
pluginManagement {
repositories {
gradlePluginPortal()
google()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
}
}

dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
}
}
Expand Down

0 comments on commit df9380d

Please sign in to comment.