Skip to content

Commit

Permalink
Merge branch 'main' into lib-toml
Browse files Browse the repository at this point in the history
  • Loading branch information
cwperks committed Oct 11, 2024
2 parents aaee06f + fc78a4c commit 5a8f3d3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ subprojects {
}
}
repositories {
mavenCentral()
maven {
name = 'test'
url = "${rootProject.buildDir}/local-test-repo"
Expand Down
14 changes: 7 additions & 7 deletions buildSrc/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

include 'reaper'

dependencyResolutionManagement {
versionCatalogs {
libs {
from(files("../gradle/libs.versions.toml"))
}
}
}
//dependencyResolutionManagement {
// versionCatalogs {
// libs {
// from(files("../gradle/libs.versions.toml"))
// }
// }
//}
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@ resteasy = "6.2.4.Final"
opentelemetry = "1.41.0"
opentelemetrysemconv = "1.27.0-alpha"

#[libraries]
#joda-time = { group = "joda-time", name = "joda-time", version.ref = "joda" }
[libraries]
jodatime = { group = "joda-time", name = "joda-time", version.ref = "joda" }
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ dependencies {
api project(":libs:opensearch-cli")

// time handling, remove with java 8 time
api "joda-time:joda-time:${libs.versions.joda.get()}"
api(libs.jodatime)

// percentiles aggregation
api "com.tdunning:t-digest:${versions.tdigest}"
Expand Down

0 comments on commit 5a8f3d3

Please sign in to comment.