Skip to content

Commit e895405

Browse files
authored
fix maven group (#170)
Signed-off-by: Yaliang Wu <[email protected]>
1 parent ba9735c commit e895405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ext {
4141
}
4242

4343
allprojects {
44-
group = 'org.opensearch.ml'
44+
group = 'org.opensearch'
4545
version = opensearch_version - "-SNAPSHOT" + ".0"
4646
if (isSnapshot) {
4747
version += "-SNAPSHOT"

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fi
6565
./gradlew publishToMavenLocal -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
6666
./gradlew publishAllPublicationsToStagingRepository -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
6767
mkdir -p $OUTPUT/maven/org/opensearch
68-
cp -r ./build/local-staging-repo/org/opensearch/ml/. $OUTPUT/maven/org/opensearch
68+
cp -r ./build/local-staging-repo/org/opensearch/. $OUTPUT/maven/org/opensearch
6969

7070
./gradlew assemble --no-daemon --refresh-dependencies -DskipTests=true -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
7171
[ -z "$OUTPUT" ] && OUTPUT=artifacts

0 commit comments

Comments
 (0)