Updated Branches: refs/heads/master bf2601f1e -> 575138544
do not activate cloud-client-ui by default as it needs nonoss modules too Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/57513854 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/57513854 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/57513854 Branch: refs/heads/master Commit: 5751385444cd7dae47677e3d9db0b039a732116e Parents: bf2601f Author: olivier lamy <ol...@apache.org> Authored: Wed Aug 29 18:40:24 2012 +0200 Committer: olivier lamy <ol...@apache.org> Committed: Wed Aug 29 18:40:24 2012 +0200 ---------------------------------------------------------------------- README.md | 4 ++-- pom.xml | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/57513854/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 8bab6b8..79980be 100644 --- a/README.md +++ b/README.md @@ -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 http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/57513854/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index dc50817..e36d3b3 100644 --- a/pom.xml +++ b/pom.xml @@ -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>