Skip to content

Commit

Permalink
Development: Update server dependencies (#9092)
Browse files Browse the repository at this point in the history
  • Loading branch information
krusche authored Jul 20, 2024
1 parent 4f297d3 commit 0ba98b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ plugins {
id "com.github.ben-manes.versions" version "0.51.0"
id "com.github.andygoossens.modernizer" version "${modernizer_plugin_version}"
id "com.gorylenko.gradle-git-properties" version "2.4.2"
id "org.owasp.dependencycheck" version "10.0.2"
id "org.owasp.dependencycheck" version "10.0.3"
id "com.adarshr.test-logger" version "4.0.0"
}

Expand Down Expand Up @@ -313,7 +313,7 @@ dependencies {
implementation "org.apache.santuario:xmlsec:4.0.2"

implementation "org.jsoup:jsoup:1.18.1"
implementation "commons-codec:commons-codec:1.17.0" // needed for spring security saml2
implementation "commons-codec:commons-codec:1.17.1" // needed for spring security saml2

implementation "org.springdoc:springdoc-openapi-ui:1.8.0"
implementation "com.vdurmont:semver4j:3.1.0"
Expand Down Expand Up @@ -348,7 +348,7 @@ dependencies {

implementation "com.hazelcast:hazelcast:${hazelcast_version}"
implementation "com.hazelcast:hazelcast-spring:${hazelcast_version}"
implementation "com.hazelcast:hazelcast-hibernate53:5.1.0"
implementation "com.hazelcast:hazelcast-hibernate53:5.2.0"
implementation "javax.cache:cache-api:1.1.1"
implementation "org.hibernate.orm:hibernate-core:${hibernate_version}"
implementation "com.zaxxer:HikariCP:5.1.0"
Expand Down Expand Up @@ -384,7 +384,7 @@ dependencies {
implementation "org.springframework.cloud:spring-cloud-starter-config:4.1.3"
implementation "org.springframework.cloud:spring-cloud-commons:4.1.4"

implementation "io.netty:netty-all:4.1.111.Final"
implementation "io.netty:netty-all:4.1.112.Final"
implementation "io.projectreactor.netty:reactor-netty:1.1.21"
implementation "org.springframework:spring-messaging:6.1.11"
implementation "org.springframework.retry:spring-retry:2.0.7"
Expand Down Expand Up @@ -489,6 +489,8 @@ dependencies {
strictly "1.14.18"
}
}
// cannot update due to "Syntax error in SQL statement "WITH ids_to_delete"
// testImplementation "com.h2database:h2:2.3.230"
testImplementation "com.h2database:h2:2.2.224"

// Lightweight JSON library needed for the internals of the MockRestServiceServer
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ npm_version=10.7.0

# Dependency versions
jhipster_dependencies_version=8.6.0
spring_boot_version=3.3.1
spring_boot_version=3.3.2
spring_security_version=6.3.1
# TODO: before we upgrade to 6.5.x, we need to make sure that there are no performance issues with empty sets or lists
hibernate_version=6.4.9.Final
Expand All @@ -24,7 +24,7 @@ sshd_version=2.13.1
checkstyle_version=10.17.0
jplag_version=5.1.0
slf4j_version=2.0.13
sentry_version=7.11.0
sentry_version=7.12.0
liquibase_version=4.28.0
docker_java_version=3.4.0
logback_version=1.5.6
Expand All @@ -33,7 +33,7 @@ logback_version=1.5.6
gradle_node_plugin_version=7.0.2
apt_plugin_version=0.21
liquibase_plugin_version=2.1.1
modernizer_plugin_version=1.9.2
modernizer_plugin_version=1.9.3

org.gradle.jvmargs=-Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en \
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
Expand Down

0 comments on commit 0ba98b4

Please sign in to comment.