Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Upgrade Spring Boot versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bclozel committed Apr 1, 2022
1 parent 4029a7e commit 1995913
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions sagan-renderer/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '2.6.1'
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
Expand All @@ -19,10 +19,10 @@ bootJar {

dependencies {
implementation 'org.pegdown:pegdown:1.6.0'
implementation('org.asciidoctor:asciidoctorj:2.5.2') {
implementation('org.asciidoctor:asciidoctorj:2.5.3') {
exclude group: 'org.jruby'
}
implementation 'org.jruby:jruby-complete:9.3.1.0'
implementation 'org.jruby:jruby-complete:9.3.4.0'
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
Expand Down
10 changes: 5 additions & 5 deletions sagan-site/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.8'
id 'org.springframework.boot' version '2.5.12'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.asciidoctor.jvm.convert' version '3.3.2'
id 'com.gorylenko.gradle-git-properties' version '2.3.1'
Expand Down Expand Up @@ -50,13 +50,13 @@ dependencies {
// for use in on-the-fly database setup and migrations
implementation 'org.flywaydb:flyway-core'
implementation 'org.apache.httpcomponents:httpclient'
implementation 'org.modelmapper:modelmapper:2.4.4'
implementation 'org.modelmapper:modelmapper:2.4.5'
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'org.yaml:snakeyaml'
// for XML manipulation
implementation 'org.xmlbeam:xmlprojector:1.4.20'
// for use in generating blog atom feeds
implementation 'com.rometools:rome:1.16.0'
implementation 'com.rometools:rome:1.18.0'
// for use in serving redirects; see urlrewrite.xml
implementation 'org.tuckey:urlrewritefilter:4.0.4'

Expand All @@ -77,8 +77,8 @@ dependencies {

developmentOnly 'org.springframework.boot:spring-boot-devtools'

testImplementation "org.testcontainers:testcontainers:1.16.2"
testImplementation "org.testcontainers:junit-jupiter:1.16.2"
testImplementation "org.testcontainers:testcontainers:1.16.3"
testImplementation "org.testcontainers:junit-jupiter:1.16.3"

testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
Expand Down

0 comments on commit 1995913

Please sign in to comment.