This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-launchpad-integration-tests.git
commit 124e901f64801bcae8bf3bd5077eade08f26bc8e Author: Robert Munteanu <[email protected]> AuthorDate: Fri Apr 1 17:48:47 2022 +0200 SLING-7935 - Move launchpad-testing module into the main starter repository Don't check the version of the scripting.jsp bundle. This check was added a long time ago, and in the current version of the Starter the bundle version is recent enough. Additionally, this pulls in the OSGi core jar as a provided dependency of the commons.testing jar, and that needs to be declared as a dependency specifically by all consumers of this test. --- src/main/java/org/apache/sling/launchpad/webapp/jsp/TagFileTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/org/apache/sling/launchpad/webapp/jsp/TagFileTest.java b/src/main/java/org/apache/sling/launchpad/webapp/jsp/TagFileTest.java index b0493e1..ff08a74 100644 --- a/src/main/java/org/apache/sling/launchpad/webapp/jsp/TagFileTest.java +++ b/src/main/java/org/apache/sling/launchpad/webapp/jsp/TagFileTest.java @@ -68,11 +68,6 @@ public class TagFileTest { assertTaglibInstalled(); - if ( !H.isBundleVersionAtLeast("org.apache.sling.scripting.jsp", "2.3.1") ) { - System.out.println("Bundle version is too old, skipping"); - return; - } - H.getTestClient().createNode(H.HTTP_BASE_URL + "/content/tagtest", Collections.singletonMap("sling:resourceType", "sling/test/tagfile")); H.getTestClient().mkdirs(H.HTTP_BASE_URL, "/apps/sling/test/tagfile"); H.getTestClient().upload(H.HTTP_BASE_URL + "/apps/sling/test/tagfile/html.jsp", new ByteArrayInputStream(TAG_FILE_SCRIPT.getBytes(Charset.forName("UTF-8"))));
