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
4 changes: 2 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
// We let spring boot manage a few dependencies, even though we don't start a Spring application from this module.
implementation(platform("org.springframework.boot:spring-boot-dependencies:$springBootVersion"))
implementation("org.springframework.boot:spring-boot-starter-jooq")
implementation("net.devh:grpc-server-spring-boot-starter:2.15.0.RELEASE")
implementation("net.devh:grpc-server-spring-boot-starter:3.1.0.RELEASE")

implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
Expand All @@ -33,7 +33,7 @@ dependencies {
implementation(
"build.buf.gen:getstrm_pace_protocolbuffers_kotlin:25.3.0.2.$generatedBufDependencyVersion",
)
implementation("build.buf:protovalidate:0.2.0")
implementation("build.buf:protovalidate:1.0.0")

// Test dependencies
testImplementation("org.springframework.boot:spring-boot-starter-test") {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version = 1.0.0-alpha.72
kotlinVersion=1.9.23
kotlinVersion=2.2.20
postgresPort=5432
schema=pace
springBootVersion=3.2.3
jooqVersion=3.18.7
kotestVersion = 5.8.1
kotestVersion = 6.0.3
springCloudKubernetesVersion=3.1.0
flywayVersion=10.10.0
protobufJavaUtilVersion=3.25.3
flywayVersion=11.13.0
protobufJavaUtilVersion=4.32.1

dockertag = pace-local

Expand Down
12 changes: 6 additions & 6 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ dependencies {
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")

// Self-managed dependencies
implementation("net.devh:grpc-server-spring-boot-starter:2.15.0.RELEASE")
implementation("net.devh:grpc-server-spring-boot-starter:3.1.0.RELEASE")
implementation("com.databricks:databricks-sdk-java:0.20.0")
implementation("com.microsoft.sqlserver:mssql-jdbc:12.6.1.jre11")
implementation("com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre11")
implementation(
"org.springframework.cloud:spring-cloud-starter-kubernetes-fabric8-config:$springCloudKubernetesVersion"
)
implementation("com.nimbusds:nimbus-jose-jwt:9.37.3")
implementation("com.nimbusds:nimbus-jose-jwt:10.5")
implementation("org.bouncycastle:bcpkix-jdk18on:1.77")

implementation(enforcedPlatform("com.google.cloud:libraries-bom:26.34.0"))
Expand All @@ -95,12 +95,12 @@ dependencies {
implementation(
"build.buf.gen:getstrm_pace_protocolbuffers_java:25.3.0.2.$generatedBufDependencyVersion"
)
implementation("build.buf:protovalidate:0.2.0")
implementation("build.buf:protovalidate:1.0.0")

implementation("com.apollographql.apollo3:apollo-runtime:3.8.2")

implementation("com.aallam.openai:openai-client:3.7.0")
implementation(platform("io.ktor:ktor-bom:2.3.9"))
implementation("com.aallam.openai:openai-client:4.0.1")
implementation(platform("io.ktor:ktor-bom:3.3.0"))
runtimeOnly("io.ktor:ktor-client-okhttp")
implementation("io.ktor:ktor-client-logging")

Expand Down
Loading