tag | c0b59dd63bbd015729933512a4dc49c1641c7b64 | |
---|---|---|
tagger | Andreas Schaefer <schaefa@iMac.local> | Thu May 07 16:44:28 2020 -0700 |
object | 28f9573755d7c6deafbb26f0bc56396465dee70a |
[maven-release-plugin] copy for tag sling-kickstart-maven-plugin-0.0.2
commit | 28f9573755d7c6deafbb26f0bc56396465dee70a | [log] [tgz] |
---|---|---|
author | Andreas Schaefer <schaefa@iMac.local> | Thu May 07 16:31:09 2020 -0700 |
committer | Andreas Schaefer <schaefa@iMac.local> | Thu May 07 16:31:09 2020 -0700 |
tree | 0ff07ca80749e7f44b76de1b0b14cd9be22f10bf | |
parent | da43d1f9b1a5d6dd2d88538a3399b10558c397df [diff] |
[maven-release-plugin] prepare release sling-kickstart-maven-plugin-0.0.2
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.
This plugin is built as usual with:
mvn clean install
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>
For now this Plugin only supports the starting and stopping of a Sling instance for example to run IT tests.