Hi, On Wed, Sep 3, 2008 at 3:39 AM, Joshua Oransky <[EMAIL PROTECTED]> wrote: > ...When I run mvn -P autoInstallBundle > -Dsling.url=http://localhost:8080/ctx/system/console clean install I get a > build error. Nothing shows up in the $sling.home/logs/error.log...
Looks like your sling.url is wrong, if you open it from a browser you should see the OSGi console. I guess the correct one is http://localhost:8080/system/console >... [INFO] Installing Bundle > org.apache.sling.scripting.ruby(/Users/joshuaoransky/Downloads/slingsrc/sling/scripting/ruby/target/org.apache.sling.scripting.ruby-2.0.0-incubator-SNAPSHOT.jar) > to http://localhost:8080/ctx/system/console > [ERROR] Installation failed, cause: Created... I guess the install plugin gets a "created" HTTP response instead of what it expects, which would be the case if using a wrong install URL: in this case the SlingPostServlet will create a new node. -Bertrand
