Skip to content

Commit

Permalink
Update orchid dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
serpro69 committed Aug 13, 2024
1 parent f860740 commit f8fbfa9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
10 changes: 9 additions & 1 deletion buildSrc/repositories.settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ dependencyResolutionManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
// orchid...
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
}

pluginManagement {
repositories {
gradlePluginPortal()
maven {
// orchid...
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
mavenCentral()
gradlePluginPortal()
}
}
}
22 changes: 14 additions & 8 deletions docs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,24 @@ plugins {
}

repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
mavenCentral()
jcenter() // orchid...
}

dependencies {
orchidImplementation("io.github.javaeden.orchid:OrchidCore:0.21.1")
orchidImplementation("io.github.javaeden.orchid:OrchidCopper:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidDocs:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidPluginDocs:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidKotlindoc:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidGithub:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidSnippets:0.21.1")
orchidRuntimeOnly("io.github.javaeden.orchid:OrchidAsciidoc:0.21.1")
// Looks like a snapshot version was published to central before active development stopped
// https://s01.oss.sonatype.org/content/repositories/snapshots/io/github/copper-leaf/orchid/
orchidImplementation("io.github.copper-leaf.orchid:orchid-core:1.0.0-SNAPSHOT")
orchidImplementation("io.github.copper-leaf.orchid:orchid-copper-theme:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-docs-bundle:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-plugin-docs-feature:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-kotlindoc-feature:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-github-feature:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-snippets-feature:1.0.0-SNAPSHOT")
orchidRuntimeOnly("io.github.copper-leaf.orchid:orchid-asciidoc-feature:1.0.0-SNAPSHOT")
}

project.version = "${project.version}"
Expand Down
2 changes: 0 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ include(
val extensions =
listOf(
"kotest-property",
"kotest-property-ksp",
"kotest-property-test",
)
extensions.forEach { include(":extension:$it") }

Expand Down

0 comments on commit f8fbfa9

Please sign in to comment.