
Integrate in a single Maven call the compilation and installation of VIVO-Languages and Vitro-Languages in VIVO.
27 lines
947 B
XML
27 lines
947 B
XML
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>defaults</id>
|
|
<properties>
|
|
<app-name>vivo</app-name>
|
|
|
|
<vivo-dir>/usr/local/vivo/home</vivo-dir>
|
|
<tomcat-dir>/usr/local/tomcat</tomcat-dir>
|
|
|
|
<default-theme>wilma</default-theme>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<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>
|
|
</settings>
|