Skip to content
Open
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
8 changes: 4 additions & 4 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ repositories {
}

dependencies {
implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.1.0'
implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.4.0'
implementation 'com.felipefzdz.gradle.shellcheck:shellcheck:1.4.6'
implementation 'com.google.cloud.tools.jib:com.google.cloud.tools.jib.gradle.plugin:3.3.0'
implementation 'de.undercouch.download:de.undercouch.download.gradle.plugin:5.6.0'
implementation 'de.undercouch.download:de.undercouch.download.gradle.plugin:5.7.0'
implementation group: 'com.github.spotbugs.snom', name: 'spotbugs-gradle-plugin', version: '6.2.3'
implementation 'io.spring.dependency-management:io.spring.dependency-management.gradle.plugin:1.1.7'
implementation 'org.hidetake.swagger.generator:org.hidetake.swagger.generator.gradle.plugin:2.19.1'
implementation 'org.sonarqube:org.sonarqube.gradle.plugin:6.2.0.5505'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:3.5.7'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:3.5.14'

// Commons lib required by jib
implementation 'org.apache.commons:commons-lang3:3.20.0'

implementation 'org.yaml:snakeyaml:2.5'
implementation 'org.yaml:snakeyaml:2.6'

}
24 changes: 12 additions & 12 deletions service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id 'org.liquibase.gradle' version '3.1.0'
id 'org.hidetake.swagger.generator'
id 'io.spring.dependency-management'
id 'com.gorylenko.gradle-git-properties' version '2.5.4'
id 'com.gorylenko.gradle-git-properties' version '2.5.7'
}

apply from: 'publishing.gradle'
Expand All @@ -29,14 +29,14 @@ dependencyManagement {
}
}

def springBootVersion = '3.5.12'
def springBootVersion = '3.5.14'

dependencies {

implementation 'com.google.guava:guava:33.5.0-jre'
implementation 'com.google.guava:guava:33.6.0-jre'
implementation 'org.apache.taglibs:taglibs-standard-impl:1.2.5'
implementation 'org.json:json:20251224'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.20.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.21.3'
implementation 'com.google.oauth-client:google-oauth-client:1.39.0'
implementation 'org.scala-lang:scala-library:2.13.18' //required by the sam-client
// when updating terra-common-lib, also update the opentelemetry versions in Java common conventions
Expand All @@ -52,7 +52,7 @@ dependencies {

implementation 'org.apache.commons:commons-dbcp2:2.14.0'
implementation 'javax.ws.rs:javax.ws.rs-api:2.1.1'
implementation 'org.postgresql:postgresql:42.7.8'
implementation 'org.postgresql:postgresql:42.7.11'

implementation "org.springframework.boot:spring-boot-starter-data-jdbc:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
Expand All @@ -61,17 +61,17 @@ dependencies {
implementation 'org.springframework.retry:spring-retry:2.0.12'
implementation "org.springframework:spring-aop:6.2.12"
implementation 'org.springframework:spring-aspects:6.2.12'
implementation 'io.sentry:sentry-spring-boot-starter:8.29.0'
implementation 'ch.qos.logback:logback-classic:1.5.23'
implementation 'ch.qos.logback:logback-core:1.5.23'
implementation 'io.sentry:sentry-spring-boot-starter:8.40.0'
implementation 'ch.qos.logback:logback-classic:1.5.32'
implementation 'ch.qos.logback:logback-core:1.5.32'

implementation 'org.apache.commons:commons-lang3:3.20.0'

liquibaseRuntime 'org.liquibase:liquibase-core:4.33.0'
liquibaseRuntime 'info.picocli:picocli:4.7.7'
liquibaseRuntime 'org.postgresql:postgresql:42.7.8'
liquibaseRuntime 'ch.qos.logback:logback-classic:1.5.23'
liquibaseRuntime 'ch.qos.logback:logback-core:1.5.23'
liquibaseRuntime 'org.postgresql:postgresql:42.7.11'
liquibaseRuntime 'ch.qos.logback:logback-classic:1.5.32'
liquibaseRuntime 'ch.qos.logback:logback-core:1.5.32'

annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"

Expand All @@ -89,7 +89,7 @@ dependencies {

// Metrics collection
implementation "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
implementation 'io.micrometer:micrometer-registry-prometheus:1.16.1'
implementation 'io.micrometer:micrometer-registry-prometheus:1.16.5'

}

Expand Down
Loading