mirror of https://github.com/apache/lucene.git
Add some basic tasks to help/workflow (#811)
This commit is contained in:
parent
d322be52f2
commit
872349cef9
|
@ -25,11 +25,22 @@ Assemble a single module's JAR (here for lucene-core):
|
||||||
gradlew -p lucene/core assemble
|
gradlew -p lucene/core assemble
|
||||||
ls lucene/core/build/libs
|
ls lucene/core/build/libs
|
||||||
|
|
||||||
|
Assemble all Lucene artifacts (JARs, and so on):
|
||||||
|
gradlew assemble
|
||||||
|
|
||||||
Create all distributable packages, POMs, etc. and create a
|
Create all distributable packages, POMs, etc. and create a
|
||||||
local maven repository for inspection:
|
local maven repository for inspection:
|
||||||
gradlew mavenLocal
|
gradlew mavenLocal
|
||||||
ls -R build/maven-local/
|
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
|
Other validation and checks
|
||||||
===========================
|
===========================
|
||||||
|
|
Loading…
Reference in New Issue