Skip to content

Commit

Permalink
Merge pull request #99 from hmcts/PUB-2265-Monthly-Dependency-Updates
Browse files Browse the repository at this point in the history
PUB-2265 - Updated dependencies
  • Loading branch information
ChrisS1512 authored Dec 11, 2023
2 parents ce9d491 + ce059b7 commit 1715386
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand Down
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ plugins {
id 'checkstyle'
id 'pmd'
id 'jacoco'
id 'io.spring.dependency-management' version '1.1.3'
id 'org.owasp.dependencycheck' version '8.4.2'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.owasp.dependencycheck' version '8.4.3'
id 'com.github.ben-manes.versions' version '0.50.0'
id 'org.sonarqube' version '4.4.1.3373'
id 'io.freefair.lombok' version '8.4'
id 'maven-publish'
Expand All @@ -20,7 +20,7 @@ publishing {
}

group = 'com.github.hmcts'
version = '2.1.12'
version = '2.1.13'

java {
toolchain {
Expand Down Expand Up @@ -51,7 +51,7 @@ test {

checkstyle {
maxWarnings = 0
toolVersion = '10.12.4'
toolVersion = '10.12.5'
getConfigDirectory().set(new File(rootDir, 'config/checkstyle'))
}

Expand Down Expand Up @@ -124,7 +124,7 @@ def versions = [
junit : '5.10.1',
junitPlatform : '1.9.3',
reformLogging : '5.1.7',
spring : '3.1.5'
spring : '3.1.6'
]

configurations.all {
Expand All @@ -139,12 +139,12 @@ dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: "${versions.spring}"
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: "${versions.spring}"
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-oauth2-client', version: "${versions.spring}"
implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.2.0'
implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.3.0'

implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.15.3"
implementation 'com.opencsv:opencsv:5.8'
implementation 'com.opencsv:opencsv:5.9'

testImplementation(platform('org.junit:junit-bom:5.10.0'))
testImplementation(platform('org.junit:junit-bom:5.10.1'))
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${versions.spring}", {
exclude group: 'junit', module: 'junit'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
14 changes: 7 additions & 7 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -202,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down

0 comments on commit 1715386

Please sign in to comment.