MavenPackage: allow additional build args (#19676)

This commit is contained in:
Adam J. Stewart
2020-11-12 14:57:49 -06:00
committed by GitHub
parent f46bd411f4
commit 02281a891d
2 changed files with 24 additions and 2 deletions

View File

@@ -76,6 +76,24 @@ should add:
depends_on('maven@3.5.4:', type='build')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Passing arguments to the build phase
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The default build and install phases should be sufficient to install
most packages. However, you may want to pass additional flags to
the build phase. For example:
.. code-block:: python
def build_args(self):
return [
'-Pdist,native',
'-Dtar',
'-Dmaven.javadoc.skip=true'
]
^^^^^^^^^^^^^^^^^^^^^^
External documentation
^^^^^^^^^^^^^^^^^^^^^^