Fixing the gmaven configuration for marvin/pom.xml For the marvin checkin test custom properties had a typo when run for the *nix environment.
Signed-off-by: Prasanna Santhanam <t...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b9f262aa Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b9f262aa Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b9f262aa Branch: refs/heads/object_store Commit: b9f262aa1c30b38b5a2135faa62818fcb32e73d6 Parents: 887f405 Author: Prasanna Santhanam <t...@apache.org> Authored: Tue May 7 17:06:15 2013 +0530 Committer: Prasanna Santhanam <t...@apache.org> Committed: Tue May 7 17:06:15 2013 +0530 ---------------------------------------------------------------------- tools/marvin/pom.xml | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b9f262aa/tools/marvin/pom.xml ---------------------------------------------------------------------- diff --git a/tools/marvin/pom.xml b/tools/marvin/pom.xml index 089c445..b8f7d74 100644 --- a/tools/marvin/pom.xml +++ b/tools/marvin/pom.xml @@ -232,9 +232,13 @@ <goal>execute</goal> </goals> <configuration> + <properties> + <resolved.user.dir>${user.dir}</resolved.user.dir> + <resolved.marvin.config>${marvin.config}</resolved.marvin.config> + </properties> <source> - pom.properties['resolved.userdir']='${user.dir}'.replace('\','/').replace('D:','/cyg/d'); - pom.properties['resolved.marvin.config']='${marvin.config}'.replace('\','/').replace('D:','/cyg/d'); + project.properties['resolved.user.dir']='${user.dir}'.replace('\','/').replace('D:','/cyg/d'); + project.properties['resolved.marvin.config']='${marvin.config}'.replace('\','/').replace('D:','/cyg/d'); </source> </configuration> </execution>