You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by "Rohit Yadav (JIRA)" <ji...@apache.org> on 2013/02/20 09:55:12 UTC

[jira] [Resolved] (CLOUDSTACK-1318) Failed to parse variable when build devcloud

     [ https://issues.apache.org/jira/browse/CLOUDSTACK-1318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rohit Yadav resolved CLOUDSTACK-1318.
-------------------------------------

    Resolution: Fixed
      Assignee: Rohit Yadav

Hi Gavin, the issue was due to some move refactoring by Prasanna he moved apidoc, marvin, devcloud and devcloud-kvm in tools/pom.xml i.e. another parent introduced before the root pom. This was only on master and not on 4.1, therefore the bug but thanks for your fix.
Resolving this as closed.
                
> Failed to parse variable when build devcloud
> --------------------------------------------
>
>                 Key: CLOUDSTACK-1318
>                 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-1318
>             Project: CloudStack
>          Issue Type: Bug
>      Security Level: Public(Anyone can view this level - this is the default.) 
>          Components: Install and Setup
>    Affects Versions: 4.2.0
>         Environment: mac osx 10.8, devcloud
>            Reporter: gavin lee
>            Assignee: Rohit Yadav
>             Fix For: 4.2.0
>
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> On master branch, when deploy db for devcloud, the exception shows following:
> bash$mvn -pl developer,tools/devcloud -Ddeploydb -P developer
> [ERROR] Failed to execute goal org.codehaus.mojo:sql-maven-plugin:1.5:execute (create-schema) on project cloud-devcloud: Cannot load connection class because of underlying exception: 'java.lang.NumberFormatException: For input string: "${db.cloud.port}"'. -> [Help 1] 
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:sql-maven-plugin:1.5:execute (create-schema) on project cloud-devcloud: Cannot load connection class because of underlying exception: 'java.lang.NumberFormatException: For input string: "${db.cloud.port}"'. 
> The root cause is the variable to find db.properties should be ${project.parent.parent.basedir} in devcloud pom.xml, the diff:
> diff --git a/tools/devcloud/pom.xml b/tools/devcloud/pom.xml
> index b3fd79b..f45a86d 100644
> --- a/tools/devcloud/pom.xml
> +++ b/tools/devcloud/pom.xml
> @@ -62,8 +62,8 @@
>                  </goals>
>                  <configuration>
>                    <files>
> -                    <file>${project.parent.basedir}/utils/conf/db.properties</file>
> -                    <file>${project.parent.basedir}/utils/conf/db.properties.override</file>
> +                    <file>${project.parent.parent.basedir}/utils/conf/db.properties</file>
> +                    <file>${project.parent.parent.basedir}/utils/conf/db.properties.override</file>
>                    </files>
>                    <quiet>true</quiet>
>                  </configuration>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira