Skip to content

Commit 6ab13c0

Browse files
committed
Move the percentiles dependencies versions into version.properties
Signed-off-by: LantaoJin <[email protected]>
1 parent 3de5d3c commit 6ab13c0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

buildSrc/version.properties

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ guava = 32.1.1-jre
2323
protobuf = 3.22.3
2424
jakarta_annotation = 1.3.5
2525
google_http_client = 1.44.1
26+
tdigest = 3.3
27+
hdrhistogram = 2.2.1
2628

2729
# when updating the JNA version, also update the version in buildSrc/build.gradle
2830
jna = 5.13.0

server/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ dependencies {
9696
api "joda-time:joda-time:${versions.joda}"
9797

9898
// percentiles aggregation
99-
api 'com.tdunning:t-digest:3.3'
100-
// precentil ranks aggregation
101-
api 'org.hdrhistogram:HdrHistogram:2.2.1'
99+
api "com.tdunning:t-digest:${versions.tdigest}"
100+
// percentile ranks aggregation
101+
api "org.hdrhistogram:HdrHistogram:${versions.hdrhistogram}"
102102

103103
// lucene spatial
104104
api "org.locationtech.spatial4j:spatial4j:${versions.spatial4j}", optional

0 commit comments

Comments
 (0)