Skip to content

Commit

Permalink
Seeing if applying plugins removes javadoc requirement
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Alfonsi <[email protected]>
  • Loading branch information
Peter Alfonsi committed Jan 29, 2024
1 parent ce88ee8 commit 8201696
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions modules/roaringbitmap-keystore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
* compatible open source license.
*/

apply plugin: 'opensearch.yaml-rest-test'
apply plugin: 'opensearch.internal-cluster-test'

opensearchplugin {
description 'Roaring bitmap-based implementation of a key lookup store, used for tiered caching.'
classname 'org.opensearch.cache.RoaringBitmapKeystoreModulePlugin'
Expand All @@ -16,3 +19,11 @@ dependencies {
api 'org.roaringbitmap:RoaringBitmap:0.9.49'
runtimeOnly 'org.roaringbitmap:shims:0.9.49'
}

/*tasks {
javadoc {
options {
(this as CoreJavadocOptions).addStringOption('Xdoclint:none', '-quiet')
}
}
}*/

0 comments on commit 8201696

Please sign in to comment.