[maven-release-plugin] prepare for next development iteration
1 file changed
tree: 0efbf0b6c2e20d939ecb1b2e8ac5163d7c53c5b3
  1. src/
  2. .asf.yaml
  3. .gitignore
  4. CODE_OF_CONDUCT.md
  5. CONTRIBUTING.md
  6. Jenkinsfile
  7. LICENSE
  8. pom.xml
  9. Readme.md
Readme.md

Sling Start Feature Maven Plugin

This Maven Plugin is the Feature Model based version of the Slingstart Maven Plugin. It does not depend on its predecessor to keep the Provisioning Model and Feature Model code bases separate.

Build

This plugin is built as usual with:

mvn clean install

Usage

The plugin can be used like this:

<plugin>
    <groupId>org.apache.sling</groupId>
    <artifactId>sling-kickstart-maven-plugin</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <extensions>true</extensions>
    <executions>
        <execution>
            <id>start-container</id>
            <goals>
                <goal>start</goal>
                <goal>stop</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <launchpadJar>${project.build.directory}/${project.artifactId}-${project.version}.jar</launchpadJar>
        <parallelExecution>false</parallelExecution>
        <servers>
            <server>
                <port>${http.port}</port>
                <controlPort>${sling.control.port}</controlPort>
                <debug>true</debug>
                <stdOutFile>launchpad.out</stdOutFile>
            </server>
        </servers>
    </configuration>
</plugin>

Notes

For now this Plugin only supports the starting and stopping of a Sling instance for example to run IT tests.