Skip to content

Commit

Permalink
Force 32... (#2937) (#2974)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8ab7cb4)

Signed-off-by: Stephen Crawford <[email protected]>
Signed-off-by: Darshit Chanpura <[email protected]>
Co-authored-by: Stephen Crawford <[email protected]>
  • Loading branch information
DarshitChanpura and stephen-crawford authored Jul 10, 2023
1 parent 58a7e20 commit e5605ba
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ configurations.all {
force "org.apache.bcel:bcel:6.6.0" // This line should be removed once Spotbugs is upgraded to 4.7.4
force "com.github.luben:zstd-jni:${versions.zstd}"
force "org.xerial.snappy:snappy-java:1.1.10.1"
force 'com.google.guava:guava:32.0.1-jre'
}
}

Expand All @@ -289,7 +290,7 @@ dependencies {
implementation "org.opensearch.client:opensearch-rest-high-level-client:${opensearch_version}"
implementation 'com.google.guava:guava:32.0.1-jre'
implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'commons-cli:commons-cli:1.3.1'
implementation 'commons-cli:commons-cli:1.5.0'
implementation "org.bouncycastle:bcprov-jdk15to18:${versions.bouncycastle}"
implementation 'org.ldaptive:ldaptive:1.2.3'
implementation "org.apache.httpcomponents:httpclient-cache:${versions.httpclient}"
Expand Down Expand Up @@ -412,6 +413,14 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}"

compileOnly "org.opensearch:opensearch:${opensearch_version}"

//Checkstyle
checkstyle 'com.puppycrawl.tools:checkstyle:10.12.1'

//spotless
implementation('com.google.googlejavaformat:google-java-format:1.17.0') {
exclude group: 'com.google.guava'
}
}

jar {
Expand Down

0 comments on commit e5605ba

Please sign in to comment.