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

[DT-400-gradle]: Bump the minor-patch-dependencies group with 8 updates #1913

Merged
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
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ plugins {
id 'org.gradle.test-retry' version '1.6.2'
id 'antlr'
id 'org.hidetake.swagger.generator' version '2.19.2'
id 'org.springframework.boot' version '3.4.2'
id 'org.springframework.boot' version '3.4.3'
id 'idea'
id 'java'
id 'io.spring.dependency-management' version '1.1.7'
Expand Down Expand Up @@ -164,7 +164,7 @@ dependencies {
implementation 'com.google.apis:google-api-services-oauth2:v2-rev20200213-2.0.0'
implementation 'com.google.apis:google-api-services-iam:v1-rev20230209-2.0.0'

implementation platform('com.google.cloud:libraries-bom:26.54.0')
implementation platform('com.google.cloud:libraries-bom:26.55.0')
implementation 'com.google.cloud:google-cloud-billing'
implementation 'com.google.cloud:google-cloud-resourcemanager'
implementation 'com.google.cloud:google-cloud-bigquery'
Expand Down Expand Up @@ -208,7 +208,7 @@ dependencies {
implementation 'org.broadinstitute.dsde.workbench:sam-client_2.13:v0.0.241'
implementation 'bio.terra:terra-policy-client:1.0.17-SNAPSHOT'
implementation 'bio.terra:terra-resource-buffer-client:0.198.42-SNAPSHOT'
implementation 'bio.terra:externalcreds-client-resttemplate:1.68.0-SNAPSHOT'
implementation 'bio.terra:externalcreds-client-resttemplate:1.69.0-SNAPSHOT'

implementation 'org.glassfish.jersey.inject:jersey-hk2'

Expand All @@ -222,20 +222,20 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind'

// Azure related dependencies
implementation 'com.azure:azure-identity:1.15.2'
implementation 'com.azure:azure-identity:1.15.3'
implementation 'com.azure.resourcemanager:azure-resourcemanager:2.47.0'
implementation 'com.azure.resourcemanager:azure-resourcemanager-loganalytics:1.1.0'
implementation 'com.azure.resourcemanager:azure-resourcemanager-securityinsights:1.0.0'
implementation 'com.azure:azure-storage-common:12.28.0'
implementation 'com.azure:azure-storage-file-datalake:12.22.0'
implementation 'com.azure:azure-data-tables:12.5.0'
implementation 'com.azure:azure-data-tables:12.5.1'

implementation platform('io.sentry:sentry-bom:8.2.0') //import bom
implementation('io.sentry:sentry-spring-boot-starter-jakarta')
implementation('io.sentry:sentry-logback')

// OpenTelemetry @WithSpan annotations:
implementation 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.13.0'
implementation 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:2.13.1'

testImplementation 'org.apache.parquet:parquet-common:1.15.0'
testImplementation 'org.apache.parquet:parquet-hadoop:1.15.0'
Expand Down Expand Up @@ -270,14 +270,14 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.zonky.test:embedded-database-spring-test:2.6.0'
testImplementation 'io.zonky.test:embedded-postgres:2.1.0'
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.6.0')
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.8.0')

generatedCompile 'org.springframework.boot:spring-boot-starter-web'
// boot-starter-validation required for jakarta.validation.Valid references, @Valid tags
generatedCompile 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.webjars:webjars-locator-core'
runtimeOnly 'org.webjars.npm:swagger-ui-dist:5.18.3'
runtimeOnly 'org.webjars.npm:swagger-ui-dist:5.19.0'
generatedCompile 'io.swagger.core.v3:swagger-annotations'

annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/bio/terra/app/configuration/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public void configurePathMatch(PathMatchConfigurer configurer) {
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/webjars/swagger-ui-dist/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/swagger-ui-dist/5.18.3/");
.addResourceLocations("classpath:/META-INF/resources/webjars/swagger-ui-dist/5.19.0/");
}
}
Loading