Add some basic tasks to help/workflow (#811)

This commit is contained in:
Tomoko Uchida 2022-04-18 11:34:28 +09:00 committed by GitHub
parent d322be52f2
commit 872349cef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -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
===========================