Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id "idea"
id "org.springframework.boot" version "${springBootVersion}" apply false
id "org.owasp.dependencycheck" version "9.0.10" apply false
id "org.domaframework.doma.compile" version "2.0.0" apply false
id "org.domaframework.doma.compile" version "3.0.1" apply false
id "com.google.cloud.tools.jib" version "3.2.1" apply false
id "com.avast.gradle.docker-compose" version "0.17.12" apply false
id "com.diffplug.spotless" version "${spotlessVersion}"
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ org.gradle.jvmargs=-Duser.language=ja -Duser.country=JP \
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
springBootVersion=3.2.12
domaVersion=3.1.0
springBootVersion=3.4.1
domaVersion=3.2.0
groovyVersion=4.0.10
spockVersion=2.4-M4-groovy-4.0
spockVersion=2.4-M5-groovy-4.0
spotlessVersion=6.18.0
2 changes: 1 addition & 1 deletion it/sample-web-front/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
spockVersion=2.4-M1-groovy-4.0
spockVersion=2.4-M5-groovy-4.0
gebVersion=7.0
seleniumVersion=3.141.59
6 changes: 3 additions & 3 deletions sample-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ dependencies {
api "org.springframework.boot:spring-boot-starter"

api "org.apache.commons:commons-lang3"
api "org.apache.commons:commons-text:1.11.0"
api "org.apache.commons:commons-compress:1.25.0"
api "org.apache.commons:commons-text:1.13.0"
api "org.apache.commons:commons-compress:1.27.1"
api "commons-codec:commons-codec"
api "org.apache.commons:commons-digester3:3.2"
api "commons-io:commons-io:2.18.0"
api "com.ibm.icu:icu4j:74.2"
api "com.ibm.icu:icu4j:76.1"
}
2 changes: 1 addition & 1 deletion sample-domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
api "com.fasterxml.jackson.dataformat:jackson-dataformat-csv"

// modelmapper
api "org.modelmapper:modelmapper:3.2.0"
api "org.modelmapper:modelmapper:3.2.2"

// mysql database
api "com.mysql:mysql-connector-j"
Expand Down
6 changes: 3 additions & 3 deletions sample-web-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ dependencies {
api "org.thymeleaf.extras:thymeleaf-extras-springsecurity6"
api "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
api "com.fasterxml.jackson.dataformat:jackson-dataformat-csv"
api "org.modelmapper:modelmapper:3.2.0"
api "org.modelmapper:modelmapper:3.2.2"
api "net.sf.jasperreports:jasperreports:6.21.2"
api "org.apache.poi:poi:5.2.5"
api "org.apache.poi:poi-ooxml:5.2.5"
api "org.apache.poi:poi:5.3.0"
api "org.apache.poi:poi-ooxml:5.3.0"
api "com.github.ben-manes.caffeine:caffeine"
}
Loading