do not activate cloud-client-ui by default as it needs nonoss modules too

This commit is contained in:
olivier lamy 2012-08-29 18:40:24 +02:00
parent bf2601f1ea
commit 5751385444
2 changed files with 11 additions and 3 deletions

View File

@ -47,11 +47,11 @@ So install it with: cd deps&&sh ./install-non-oss.sh
Now you are able to activate nonoss build with adding -Dnonoss to maven cli.
to run webapp client:
mvn org.apache.tomcat.maven:tomcat7-maven-plugin:2.0-beta-1:run -pl :cloud-client-ui -am
mvn org.apache.tomcat.maven:tomcat7-maven-plugin:2.0-beta-1:run -pl :cloud-client-ui -am -Pclient -Dnonoss
then hit: http://localhost:8080/cloud-client-ui/
or add in your ~/.m2/settings.xml
<pluginGroups>
<pluginGroup>org.apache.tomcat.maven</pluginGroup>
</pluginGroups>
and save your fingers with mvn tomcat7:run -pl :cloud-client-ui -am
and save your fingers with mvn tomcat7:run -pl :cloud-client-ui -am -Pclient -Dnonoss

10
pom.xml
View File

@ -157,7 +157,6 @@
<module>vmware-base</module>
<module>plugins</module>
<module>awsapi</module>
<module>client</module>
</modules>
<dependencies>
@ -213,4 +212,13 @@
</pluginManagement>
</build>
<profiles>
<profile>
<id>client</id>
<modules>
<module>client</module>
</modules>
</profile>
</profiles>
</project>