Skip to content

Commit

Permalink
Put manual dependencies into version catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutz committed Sep 19, 2024
1 parent 7d3d298 commit c630498
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ retrofitVersion = "2.11.0"
jacksonVersion = "2.17.2"

[libraries]
asciidoctorBlockSwitch = { module = "io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch", version = "0.6.3" }
assertjCore = { module = "org.assertj:assertj-core", version = "3.26.3" }
bcprovJdk15on = { module = "org.bouncycastle:bcprov-jdk15on", version = "1.70" }
commonsIo = { module = "commons-io:commons-io", version = "2.16.1" }
Expand All @@ -29,5 +30,6 @@ webdrivermanager = { module = "io.github.bonigarcia:webdrivermanager", version =

[plugins]
asciidoctor = { id = "org.asciidoctor.jvm.convert", version = "4.0.3" }
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version = "2.0.20" }
nexusPublish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0" }
sonar = { id = "org.sonarqube", version = "5.1.0.4882" }
4 changes: 2 additions & 2 deletions manual/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ plugins {
alias(libs.plugins.asciidoctor)
`shakespeare-style`
java
kotlin("jvm") version "2.0.20"
alias(libs.plugins.kotlinJvm)
}

val asciidoctorExt by configurations.creating

dependencies {
asciidoctorExt("io.spring.asciidoctor:spring-asciidoctor-extensions-block-switch:0.6.3")
asciidoctorExt(libs.asciidoctorBlockSwitch)

implementation(libs.jsr305)

Expand Down

0 comments on commit c630498

Please sign in to comment.