Uploaded image for project: 'Sling'
  1. Sling
  2. SLING-861

Add HTTP PUT support for maven-sling-plugin

    XMLWordPrintableJSON

Details

    Description

      In addition to the standard POST that is tailored for the felix webconsole in the maven-sling-plugin install goal, it can also be useful to support simple PUT uploads of the bundle jar. This is useful in combination with the jcrinstall extension, where you could PUT the jar file via Jackrabbit's or Sling's WebDAV into a folder that is watched by jcrinstall.

      Therefore I implemented this feature, using PUT for the install goal and DELETE for the uninstall goal. There is a new config option "sling.usePut" that must be set to "true" for using PUT or DELETE - by default it is false, so that the POST behaviour stays default.

      To make the configuration of the plugin in a multi-module POM structure simpler, I also added a new config "sling.urlSuffix" that (if present) will be appended to the "sling.url" (in all cases, POST, PUT and DELETE). That allows you to specify a base path in your parent POM (sling.url=http://localhost:8080) and define a different path for each project (sling.urlSuffix=/libs/myproject/install), because with jcrinstall you can place them at different locations in the repository, if you wish.

      There is also a "sling.mimeTypeForPut" option to set the content-type for the PUT request (by default it is "application/java-archive").

      Just for reference, since the config names are different if you specify them in the pom (using the java field name in the Mojo rather than the defined expression....), here is a sample configuration:

      <plugin>
      <groupId>org.apache.sling</groupId>
      <artifactId>maven-sling-plugin</artifactId>
      <version>2.0.3-incubator-SNAPSHOT</version>
      <configuration>
      <slingUrl>http://localhost:8080</slingUrl>
      <slingUrlSuffix>/libs/myproject/install/</slingUrlSuffix>
      <usePut>true</usePut>
      </configuration>
      </plugin>

      Attachments

        1. sling-install-PUT-support.patch
          7 kB
          Alexander Klimetschek

        Activity

          People

            cziegeler Carsten Ziegeler
            alexander.klimetschek Alexander Klimetschek
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: