Skip to content

Commit

Permalink
change jar group to org.opensearch
Browse files Browse the repository at this point in the history
Signed-off-by: zane-neo <[email protected]>
  • Loading branch information
zane-neo committed Nov 30, 2023
1 parent 5fd486f commit 03a6f59
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ spotless {
}
}

project(':opensearch-sql-plugin'){
group = 'org.opensearch'
}

allprojects {
version = opensearch_version.tokenize('-')[0] + '.0'
if (buildVersionQualifier) {
Expand Down
6 changes: 3 additions & 3 deletions ppl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ check.dependsOn jacocoTestCoverageVerification
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'ppl'
groupId = 'org.opensearch'
artifactId = 'opensearch-ppl'
from components.java
pom {
name = 'ppl'
name = 'opensearch-ppl'
description = 'OpenSearch PPL'
groupId = "opensearch-sql"
licenses {
license {
name = 'The Apache License, Version 2.0'
Expand Down
8 changes: 4 additions & 4 deletions protocol/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ jacocoTestCoverageVerification.dependsOn jacocoTestReport
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'protocol'
groupId = 'org.opensearch'
artifactId = 'opensearch-protocol'
from components.java
pom {
name = 'protocol'
description = 'OpenSearch PPL'
groupId = "opensearch-sql"
name = 'opensearch-protocol'
description = 'OpenSearch Protocol'
licenses {
license {
name = 'The Apache License, Version 2.0'
Expand Down

0 comments on commit 03a6f59

Please sign in to comment.