Allow an external project to replace the standard installer
This commit is contained in:
parent
e8613dc5ae
commit
3323673ee1
1 changed files with 17 additions and 2 deletions
19
pom.xml
19
pom.xml
|
@ -22,7 +22,6 @@
|
|||
<module>api</module>
|
||||
<module>webapp</module>
|
||||
<module>home</module>
|
||||
<module>installer</module>
|
||||
</modules>
|
||||
|
||||
<profiles>
|
||||
|
@ -38,11 +37,27 @@
|
|||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>vivo-installer</id>
|
||||
<id>installer</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>!installer-dir</name>
|
||||
</property>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>installer</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>external-installer</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>installer-dir</name>
|
||||
</property>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>${installer-dir}</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<dependencyManagement>
|
||||
|
|
Loading…
Add table
Reference in a new issue