Skip to content

Commit ce6e6c7

Browse files
authoredMay 17, 2023
Bumping gradle from 7.4 to 8.1 to unblock build pipeline (opensearch-project#892)
* Bumping gradle from 7.4 to 8.1 to unblock build pipeline Signed-off-by: Sicheng Song <sicheng.song@outlook.com> * Migration from ImmutableOpenMap to java builtin Map Signed-off-by: Sicheng Song <sicheng.song@outlook.com> * Ignore problematic IT to unblock build pipeline Signed-off-by: Sicheng Song <sicheng.song@outlook.com> * fix gradle build dependency problem Signed-off-by: Sicheng Song <sicheng.song@outlook.com> --------- Signed-off-by: Sicheng Song <sicheng.song@outlook.com>
1 parent 194fb59 commit ce6e6c7

File tree

72 files changed

+1218
-341
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1218
-341
lines changed
 

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ buildscript {
4040
}
4141

4242
plugins {
43-
id 'nebula.ospackage' version "8.3.0"
43+
id 'com.netflix.nebula.ospackage' version "11.1.0"
4444
id 'java'
45-
id "io.freefair.lombok" version "6.4.1"
45+
id "io.freefair.lombok" version "8.0.1"
4646
id 'jacoco'
4747
}
4848

‎client/build.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,19 @@ jacocoTestCoverageVerification {
4747
}
4848
check.dependsOn jacocoTestCoverageVerification
4949

50+
tasks.named("jar").configure { dependsOn("publishShadowPublicationToMavenLocal") }
5051

5152
shadowJar {
5253
archiveClassifier.set(null)
5354
}
5455

5556
task sourcesJar(type: Jar) {
56-
archiveClassifier.set 'sources'
57+
archiveClassifier.set("sources")
5758
from sourceSets.main.allJava
5859
}
5960

6061
task javadocJar(type: Jar) {
61-
archiveClassifier.set 'javadoc'
62+
archiveClassifier.set("javadoc")
6263
from javadoc.destinationDir
6364
dependsOn javadoc
6465
}

0 commit comments

Comments
 (0)
Please sign in to comment.