File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,11 @@ tasks.withType(Javadoc).configureEach { Javadoc javadoc ->
120
120
javadoc. options. addStringOption(" -release" , java. targetCompatibility. majorVersion)
121
121
}
122
122
123
- testingConventions. enabled = false ;
123
+ testingConventions. enabled = false
124
124
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" ) }
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments