Results 1 to 2 of 2

Thread: SDN: Documentation on deploy to heroku

  1. #1
    Join Date
    Jan 2009
    Location
    Huntington Beach, CA
    Posts
    718

    Default SDN: Documentation on deploy to heroku

    So I was following the instructions to deploy to Heroku and made the changes to my pom file exactly as written, but when I go to build my app, I get the following error

    Code:
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 1:20.776s
    [INFO] Finished at: Mon Jul 30 19:14:27 PDT 2012
    [INFO] Final Memory: 21M/81M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.codehaus.mojo:appassembler-maven-plugin:1.1.1:assemble (default) on project eventgate: Unable to parse configuration of mojo org.codehaus.mojo:appassembler-maven-plugin:1.1.1:assemble for parameter program: Cannot find setter, adder nor field in org.codehaus.mojo.appassembler.Program for 'mainclass' -> [Help 1]
    one change though, I did not put Main class in the root of my classpath, but in an actual package.

    Also how do I now set

    Code:
    <constructor-arg index="1">
        <map>
            <entry key="allow_store_upgrade" value="${neo4j.upgrade}"/>
        </map>
    </constructor-arg>
    Thanks

    Mark

  2. #2
    Join Date
    Jan 2009
    Location
    Huntington Beach, CA
    Posts
    718

    Default

    I got it, the blog post I was following had all the pom xml in lowercase, so some tags needed camel case. Just had to fix mainclass to mainClass.

    Thanks

    Mark

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •