commit | 48efa0d0af779e7e450e46c74489906f9681b29d | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Thu May 26 02:07:26 2022 +0000 |
committer | Robert Munteanu <robert.munteanu@gmail.com> | Tue May 31 17:18:55 2022 +0200 |
tree | 23ab29d2d43ffc43f463f706e83dd5b6aebdd4e7 | |
parent | 39ba3d03f07cf1c15e1752fa4167c461b32427ed [diff] |
Bump maven-shared-utils from 3.2.1 to 3.3.3 Bumps [maven-shared-utils](https://github.com/apache/maven-shared-utils) from 3.2.1 to 3.3.3. - [Release notes](https://github.com/apache/maven-shared-utils/releases) - [Commits](https://github.com/apache/maven-shared-utils/compare/maven-shared-utils-3.2.1...maven-shared-utils-3.3.3) --- updated-dependencies: - dependency-name: org.apache.maven.shared:maven-shared-utils dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
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.8</version> <extensions>true</extensions> <executions> <execution> <id>start-container</id> <goals> <goal>start</goal> <goal>stop</goal> </goals> </execution> </executions> <configuration> <parallelExecution>false</parallelExecution> <servers> <server> <port>${http.port}</port> <controlPort>${sling.control.port}</controlPort> <debug>true</debug> <stdOutFile>kickstart.out</stdOutFile> </server> </servers> </configuration> </plugin>
The Plugin comes with the latest released version of the Kickstart dependency. That said it provides the ability to use a different Kickstart version. These are the two options:
For now this Plugin only supports the starting and stopping of a Sling instance for example to run IT tests.