diff --git a/help/workflow.txt b/help/workflow.txt index ffb45488ddba..8b35247fcfe7 100644 --- a/help/workflow.txt +++ b/help/workflow.txt @@ -25,11 +25,22 @@ Assemble a single module's JAR (here for lucene-core): gradlew -p lucene/core assemble ls lucene/core/build/libs +Assemble all Lucene artifacts (JARs, and so on): +gradlew assemble + Create all distributable packages, POMs, etc. and create a local maven repository for inspection: gradlew mavenLocal ls -R build/maven-local/ +Assemble Javdocs on a module: +gradlew -p lucene/core javadoc +ls lucene/core/build/docs + +Assemble entire documentation (including javadocs): +gradlew documentation +ls lucene/documentation/build/site + Other validation and checks ===========================