File tree 3 files changed +66
-49
lines changed
3 files changed +66
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -148,6 +148,11 @@ shadowJar {
148
148
classifier = null
149
149
}
150
150
151
+ shadowJar. doLast {
152
+ ant. checksum algorithm : ' md5' , file : it. archivePath
153
+ ant. checksum algorithm : ' sha1' , file : it. archivePath
154
+ }
155
+
151
156
task sourcesJar (type : Jar ) {
152
157
classifier = ' sources'
153
158
from sourceSets. main. allJava
@@ -197,9 +202,4 @@ publishing {
197
202
198
203
gradle. startParameter. setShowStacktrace(ShowStacktrace . ALWAYS )
199
204
gradle. startParameter. setLogLevel(LogLevel . DEBUG )
200
-
201
- signing {
202
- required { gradle. taskGraph. hasTask(" publishShadowPublicationToSonatype-stagingRepository" ) }
203
- sign publishing. publications. shadow
204
- }
205
205
}
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Copyright OpenSearch Contributors.
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ set -ex
7
+
8
+ function usage() {
9
+ echo " Usage: $0 [args]"
10
+ echo " "
11
+ echo " Arguments:"
12
+ echo -e " -v VERSION\t[Required] OpenSearch version."
13
+ echo -e " -s SNAPSHOT\t[Optional] Build a snapshot, default is 'false'."
14
+ echo -e " -a ARCHITECTURE\t[Optional] Build architecture, ignored."
15
+ echo -e " -o OUTPUT\t[Optional] Output path, default is 'artifacts'."
16
+ echo -e " -h help"
17
+ }
18
+
19
+ while getopts " :h:v:s:o:a:" arg; do
20
+ case $arg in
21
+ h)
22
+ usage
23
+ exit 1
24
+ ;;
25
+ v)
26
+ VERSION=$OPTARG
27
+ ;;
28
+ s)
29
+ SNAPSHOT=$OPTARG
30
+ ;;
31
+ o)
32
+ OUTPUT=$OPTARG
33
+ ;;
34
+ a)
35
+ ARCHITECTURE=$OPTARG
36
+ ;;
37
+ :)
38
+ echo " Error: -${OPTARG} requires an argument"
39
+ usage
40
+ exit 1
41
+ ;;
42
+ ? )
43
+ echo " Invalid option: -${arg} "
44
+ exit 1
45
+ ;;
46
+ esac
47
+ done
48
+
49
+ if [ -z " $VERSION " ]; then
50
+ echo " Error: You must specify the OpenSearch version"
51
+ usage
52
+ exit 1
53
+ fi
54
+
55
+ [[ " $SNAPSHOT " == " true" ]] && VERSION=$VERSION -SNAPSHOT
56
+ [ -z " $OUTPUT " ] && OUTPUT=artifacts
57
+
58
+ ./gradlew build -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
59
+ ./gradlew publishShadowPublicationToMavenLocal -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
60
+ mkdir -p $OUTPUT /maven/org/opensearch
61
+ cp -r ./build/libs $OUTPUT /maven/org/opensearch/common-utils
You can’t perform that action at this time.
0 commit comments