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

SIDM-9089 Dependency upgrade #109

Merged
merged 5 commits into from
Feb 22, 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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
java-version: '17'

- name: Build with Gradle
run: ./gradlew build
55 changes: 27 additions & 28 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
plugins {
id 'java-library'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "org.springframework.boot" version "2.6.3"
id 'io.spring.dependency-management' version '1.1.4'
id "org.springframework.boot" version "3.2.2"
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '5.2.0'
id "io.freefair.lombok" version "5.0.0-rc4"
id "com.gorylenko.gradle-git-properties" version "1.4.21"
id 'com.github.johnrengelman.shadow' version '8.1.1'
id "io.freefair.lombok" version "8.4"
id "com.gorylenko.gradle-git-properties" version "2.4.1"
}

group = 'uk.gov.hmcts.reform'
version = '2.3.4'
sourceCompatibility = 1.8
generateLombokConfig.enabled = false
version = '2.4.0'
sourceCompatibility = 17

repositories {
mavenCentral()
Expand All @@ -28,7 +27,7 @@ gitProperties {
}

ext {
springCloudVersion = "2021.0.1"
springCloudVersion = "2023.0.0"
}

dependencyManagement {
Expand All @@ -38,34 +37,34 @@ dependencyManagement {
}

dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'io.github.openfeign:feign-httpclient:13.2.1'

compile 'org.springframework.cloud:spring-cloud-starter-openfeign'
compile 'io.github.openfeign:feign-httpclient:11.8'
implementation 'com.microsoft.azure:azure-keyvault:1.2.6'
implementation 'com.microsoft.azure:adal4j:1.6.7'

compile 'com.microsoft.azure:azure-keyvault:1.0.0'
compile 'com.microsoft.azure:adal4j:1.5.0'
implementation 'org.springframework.ldap:spring-ldap-core:3.2.1'
implementation 'com.microsoft.azure:applicationinsights-core:3.4.19'
implementation 'com.microsoft.azure:applicationinsights-web:3.4.19'
implementation 'io.opentelemetry:opentelemetry-api:1.35.0'

compile 'org.springframework.ldap:spring-ldap-core:2.3.6.RELEASE'
compile 'com.microsoft.azure:applicationinsights-core:2.6.1'
compile 'com.microsoft.azure:applicationinsights-web:2.6.1'
compile 'com.microsoft.azure:applicationinsights-spring-boot-starter:2.6.1'
compile 'com.microsoft.azure:applicationinsights-logging-logback:2.6.1'
implementation 'org.apache.commons:commons-collections4:4.4'

compileOnly group: 'org.projectlombok', name: 'lombok'
annotationProcessor group: 'org.projectlombok', name: 'lombok'

testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'org.hamcrest:hamcrest-core'
testCompile 'org.hamcrest:hamcrest-library'
testCompile 'org.springframework:spring-test'
implementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.hamcrest:hamcrest-core'
implementation 'org.hamcrest:hamcrest-library'
implementation 'org.springframework:spring-test'

testCompile 'org.powermock:powermock-module-junit4:2.0.0-beta.5'

testCompile "com.github.tomakehurst:wiremock:2.19.0"
testCompile 'org.mockito:mockito-core:3.6.28'
implementation 'org.powermock:powermock-module-junit4:2.0.9'
implementation 'org.mockito:mockito-core:5.10.0'

testImplementation "jakarta.servlet:jakarta.servlet-api:4.0.4"
testImplementation "org.wiremock:wiremock-standalone:3.3.1"
}

publishing {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 4 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Mar 02 11:40:36 GMT 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading
Loading