Updated pom to copy xmls to target location during build
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/50bfcc1f Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/50bfcc1f Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/50bfcc1f Branch: refs/heads/cisco-vnmc-api-integration Commit: 50bfcc1f752e9ca9b8330d2c4e3b8c5c9dd33155 Parents: 45bc92b Author: Koushik Das <[email protected]> Authored: Wed Mar 20 15:02:14 2013 +0530 Committer: Koushik Das <[email protected]> Committed: Wed Mar 20 15:02:14 2013 +0530 ---------------------------------------------------------------------- client/pom.xml | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/50bfcc1f/client/pom.xml ---------------------------------------------------------------------- diff --git a/client/pom.xml b/client/pom.xml index 300e798..dae0477 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -386,6 +386,11 @@ file="${basedir}/target/generated-webapp/WEB-INF/web.xml" match="classpath:componentContext.xml" replace="classpath:nonossComponentContext.xml" byline="true" /> + <exec executable="cp"> + <arg value="-r" /> + <arg value="${basedir}/../plugins/network-elements/cisco-vnmc/scripts" /> + <arg value="${basedir}/target/generated-webapp/WEB-INF/classes/" /> + </exec> </target> </configuration> </execution>
