Merge branch 'fix/12984-rpm-module'
This commit is contained in:
commit
449dfc8f56
|
@ -33,9 +33,6 @@
|
|||
<project.licenses.dir>${project.basedir}/../licenses</project.licenses.dir>
|
||||
<project.licenses.check_target>${integ.scratch}</project.licenses.check_target>
|
||||
|
||||
<!-- rpmbuild location : default to /usr/bin/rpmbuild -->
|
||||
<packaging.rpm.rpmbuild>/usr/bin/rpmbuild</packaging.rpm.rpmbuild>
|
||||
|
||||
<!-- we expect packaging formats to have integration tests, but not unit tests -->
|
||||
<skip.unit.tests>true</skip.unit.tests>
|
||||
</properties>
|
||||
|
@ -172,6 +169,11 @@
|
|||
</modules>
|
||||
|
||||
<profiles>
|
||||
<!--
|
||||
We include automatically RPM module when it's available in common locations.
|
||||
If your rpmbuild is in another location (but in path), run maven with rpm profile:
|
||||
mvn deploy -Prpm
|
||||
-->
|
||||
<profile>
|
||||
<id>macos_brew</id>
|
||||
<activation>
|
||||
|
@ -190,7 +192,7 @@
|
|||
<activation>
|
||||
<file>
|
||||
<!-- Folks having /usr/bin/rpmbuild available will be able to build the rpm module -->
|
||||
<exists>${packaging.rpm.rpmbuild}</exists>
|
||||
<exists>/usr/bin/rpmbuild</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<modules>
|
||||
|
|
Loading…
Reference in New Issue