Updated Branches: refs/heads/master 860d1bc73 -> 5e293f422
cli: add maven plugin to delete copied marvin folder on fresh install Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/5e293f42 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/5e293f42 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/5e293f42 Branch: refs/heads/master Commit: 5e293f422d155d9325b91af60fd51ef54bf35fe3 Parents: a5ad9c3 Author: Rohit Yadav <[email protected]> Authored: Wed Nov 7 16:06:01 2012 +0530 Committer: Rohit Yadav <[email protected]> Committed: Wed Nov 7 16:06:01 2012 +0530 ---------------------------------------------------------------------- tools/cli/pom.xml | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/5e293f42/tools/cli/pom.xml ---------------------------------------------------------------------- diff --git a/tools/cli/pom.xml b/tools/cli/pom.xml index e7d435b..c76cd65 100644 --- a/tools/cli/pom.xml +++ b/tools/cli/pom.xml @@ -33,6 +33,24 @@ <defaultGoal>install</defaultGoal> <plugins> <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>generate-resource</id> + <phase>generate-resources</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <delete dir="${basedir}/cloudmonkey/marvin"/> + </target> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version>
