Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Update server dependencies #9092

Merged
merged 2 commits into from
Jul 20, 2024
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
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
Loading