SLING-7397 - Cleanup and generalize testing profiles

- remove the port-javaX profiles, the problem they were solving should be
  removed by using small, quick builds on Jenkins
- use just two profiles to augment the CLI arguments in case we're
  running on the JPMS and in case we want debug arguments
- remove the -XX:MaxPermSize flag as we only test on Java 8 or newer
1 file changed
tree: bded0f8dabefaad8aae262e7c89c4ba3e754814a
  1. src/
  2. .gitignore
  3. .sling-module.xml
  4. LICENSE
  5. pom.xml
  6. README.md
README.md

Apache Sling Launchpad Testing

This module is part of the Apache Sling project.

This module builds a Sling instance using bundles from the trunk, and runs integration tests against it via HTTP.

Default build with integration tests

The integration tests are provided by the sibling integration-tests module. By default the Sling instance to test is started, including a few test-specific bundles, the integration tests are executed and the instance is stopped.

Executing individual tests

To run individual tests against this instance, with the exact same setup used in the full build, use

mvn clean install -Dlaunchpad.keep.running=true -Dhttp.port=8080 -Ddebug

The -Ddebug option enables server-side debugging of the instance under test, on port 8000. It can be omitted, of course.

Use CTRL-C to stop that instance.

See the README.txt in the integration-tests module for how to run specific tests against that instance.