Skip to content

Commit 3a9c369

Browse files
Fix plugin publication name (#26) (#28)
(cherry picked from commit 4fc51af) Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent d587cd3 commit 3a9c369

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

build.gradle

+7-2
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ tasks.withType(Javadoc).configureEach { Javadoc javadoc ->
120120
javadoc.options.addStringOption("-release", java.targetCompatibility.majorVersion)
121121
}
122122

123-
testingConventions.enabled = false;
123+
testingConventions.enabled = false
124124
loggerUsageCheck.enabled = false
125-
validateNebulaPom.enabled = false
125+
126+
tasks.matching {it.path in [":validateMavenPom", ":validateNebulaPom", ":validatePluginZipPom"]}.all { task ->
127+
task.dependsOn ':generatePomFileForNebulaPublication', ':generatePomFileForPluginZipPublication'
128+
}
129+
130+
tasks.named("publishNebulaPublicationToMavenLocal").configure { dependsOn("generatePomFileForPluginZipPublication") }

settings.gradle

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
* SPDX-License-Identifier: Apache-2.0
3+
*
4+
* The OpenSearch Contributors require contributions made to
5+
* this file be licensed under the Apache-2.0 license or a
6+
* compatible open source license.
7+
*/
8+
9+
rootProject.name = "opensearch-custom-codecs"

0 commit comments

Comments
 (0)