Also, I found 2 plugins that seem to be similar,
http://docs.adobe.com/content/docs/en/dev-tools/aem-eclipse.html
http://sling.apache.org/documentation/development/ide-tooling.html
Which to people use?
I settled on the non-adobe one as I'm not using CQ.
Does anyone actually use the eclipse sling plugin to add/remove bundles to/from
a sling server?
I got a doPost SlingAllMethodsServlet working, but only through the maven
plugin, i.e.:
mvn org.apache.sling:maven-sling-plugin:install-file
-Dsling.file=ingest-2.2.2.jar
Connecting to a sling server from the plugin's server manager works, as does
the debugging. So just the deploy/undeploy seems broken.
I'm running on nonstandard ports (not 8080) for conflict reasons, is there
anything that needs to change other than in the server's config?
I do have the port setup in the pom:
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>maven-sling-plugin</artifactId>
<version>2.1.0</version>
<configuration>
<slingUrl>http://localhost:8090/system/console</slingUrl>
<user>admin</user>
<password>admin</password>
</configuration>
</plugin>
-Bruce