Add self-activating profiles for building Vitro-languages and VIVO-l… (#245)
* Add self-activating profiles for compiling Vitro-languages and VIVO-languages in place of i18n profile * Remove trailing whitespace
This commit is contained in:
parent
109b5a4fe1
commit
09e4ea732a
2 changed files with 19 additions and 12 deletions
|
@ -18,10 +18,5 @@
|
||||||
|
|
||||||
<activeProfiles>
|
<activeProfiles>
|
||||||
<activeProfile>defaults</activeProfile>
|
<activeProfile>defaults</activeProfile>
|
||||||
<!-- <activeProfile>i18n</activeProfile> -->
|
|
||||||
<!-- Replace the "defaults" activeProfile with "i18n" to include
|
|
||||||
the Vitro-languages and VIVO-Languages repos in the Maven compilation and
|
|
||||||
installation process -->
|
|
||||||
|
|
||||||
</activeProfiles>
|
</activeProfiles>
|
||||||
</settings>
|
</settings>
|
||||||
|
|
20
pom.xml
20
pom.xml
|
@ -69,13 +69,25 @@
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>i18n</id>
|
<id>Vitro-languages</id>
|
||||||
|
<activation>
|
||||||
|
<file>
|
||||||
|
<exists>../Vitro-languages/pom.xml</exists>
|
||||||
|
</file>
|
||||||
|
</activation>
|
||||||
<modules>
|
<modules>
|
||||||
<module>../Vitro-languages</module>
|
<module>../Vitro-languages</module>
|
||||||
|
</modules>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>VIVO-languages</id>
|
||||||
|
<activation>
|
||||||
|
<file>
|
||||||
|
<exists>../VIVO-languages/pom.xml</exists>
|
||||||
|
</file>
|
||||||
|
</activation>
|
||||||
|
<modules>
|
||||||
<module>../VIVO-languages</module>
|
<module>../VIVO-languages</module>
|
||||||
<module>api</module>
|
|
||||||
<module>webapp</module>
|
|
||||||
<module>home</module>
|
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
|
|
Loading…
Add table
Reference in a new issue