Hi Julian, Apache Sling application is running perfectly in Wildfly 13.0.0.Final. I am having issues from Wildfly 14.0.0.Final to latest Wildfly 24.0.1.Final versions. Then I have checked from Wildfly14.0.0.Final version, stopped supporting Java EE 7 and it make sense that, Apache Sling is not running in Wildfly application server with Java EE 8 specifications, which are form Wildfly 14.0.0.Final onwards.
Similarly I have successfully deployed Sling application is WebLogic 12.2.1.4 (which is based on Java EE7). But when I tried deploy in WebLogic 14.1.1.0 (which is based on Java EE7). received same “Missing Requirement” errors. At present Apache Sling application runs only in Java EE 7 application servers and not Java EE 8 application servers.. Thanks Ravi Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows From: Julian Sedding<mailto:[email protected]> Sent: Thursday, September 9, 2021 5:26 AM To: Sling Developers List<mailto:[email protected]> Subject: Re: Apache Sling Deployment Issues in Wildfly 24.0.1-Final Hi Ravi For a reply I'll quote from the WildFly website. """ WildFly Preview As I announced in November when we released WildFly 22 Alpha1, along with our traditional Jakarta EE 8 distribution we want to give our users a preview of what will be coming in WildFly as we move on to EE 9 and later. We call this distribution "WildFly Preview". The WildFly 24.0.0.Final release includes an update to WildFly Preview. Even though this is coming from a .Final tag of the WildFly codebase, WildFly Preview should always be regarded as a tech-preview/beta distribution. EE 9 is primarily about implementing the necessary change in the Jakarta EE APIs from the javax.* package namespace to the jakarta.* namespace. This is a big change that is going to take a while to percolate through the EE ecosystem, e.g. for the many projects that compile against the EE APIs to provide versions that use jakarta.*. While this happens we want to continue to deliver new features and fixes to our community, so the primary WildFly distribution will continue to provide the EE 8 APIs. This will continue at least through WildFly 25. """ The gist is that they are creating preview builds that use Jakarta EE 9 APIs. That means e.g. javax.servlet.* is replaced by jakarta.servlet.*, a change that is NOT backwards compatible. AFAIK, OSGi specifications have so far not been adjusted to support this change. Since Sling runs in an OSGi container, there is currently little that can be done from a Sling perspective. Your best option is to choose the latest stable WildFly release that is NOT a preview and uses Jakarta EE 8 APIs. I don't know which version that is, but I don't imagine it will be difficult to find out. Regards Julian On Wed, Sep 8, 2021 at 10:09 PM Ravi Singareddy <[email protected]> wrote: > > Hi All, > We have developed custom Apache Sling application and deployed in Wildfly > 13.0.0-Final and running successfully. We are planning to upgrade the > Application Server to Wildfly 24.0.1Final version. While deploying custom > Apache Sling application in Wildfly 24.0.1-Final receiving following > deployment errors. > > 2021-09-08 15:23:13 ERROR servlet:392 - ERROR: Error starting > slinginstall:d:\mnt\SlingFileSystem\data\sling\startup\1\org.apache.felix.http.bridge-3.0.18.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > > We are tried Servlet version 3.1.0, 3.5.0 and 4.0.0, but still facing same > issues while deploying the application. Your help is greatly appreciated in > this regard. > Thanks > > Ravi Singareddy > Here is the complete error list > 15:22:47,848 INFO [javax.enterprise.resource.webcontainer.jsf.config] > (ServerService Thread Pool -- 106) Initializing Mojarra 2.3.14.SP04 for > context '' > 2021-09-08 15:23:13 ERROR servlet:392 - ERROR: Error starting > slinginstall:d:\mnt\SlingFileSystem\data\sling\startup\1\org.apache.felix.http.bridge-3.0.18.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.felix.webconsole-4.3.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole [28](R 28.0): missing requirement > [org.apache.felix.webconsole [28](R 28.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole [28](R 28.0): missing requirement > [org.apache.felix.webconsole [28](R 28.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.felix.webconsole.plugins.ds-2.0.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.ds [29](R 29.0): missing requirement > [org.apache.felix.webconsole.plugins.ds [29](R 29.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole.i18n)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.ds [29](R > 29.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole.i18n)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.ds [29](R 29.0): missing requirement > [org.apache.felix.webconsole.plugins.ds [29](R 29.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole.i18n)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.ds [29](R > 29.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole.i18n)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.felix.webconsole.plugins.obr-1.0.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.obr [32](R 32.0): missing requirement > [org.apache.felix.webconsole.plugins.obr [32](R 32.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.obr [32](R > 32.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.obr [32](R 32.0): missing requirement > [org.apache.felix.webconsole.plugins.obr [32](R 32.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.obr [32](R > 32.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.felix.webconsole.plugins.packageadmin-1.0.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.packageadmin [33](R 33.0): missing > requirement [org.apache.felix.webconsole.plugins.packageadmin [33](R 33.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.packageadmin > [33](R 33.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.webconsole.plugins.packageadmin [33](R 33.0): missing > requirement [org.apache.felix.webconsole.plugins.packageadmin [33](R 33.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.felix.webconsole.plugins.packageadmin > [33](R 33.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.sling.commons.log.webconsole-1.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.commons.log.webconsole [35](R 35.0): missing requirement > [org.apache.sling.commons.log.webconsole [35](R 35.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.commons.log.webconsole [35](R > 35.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.commons.log.webconsole [35](R 35.0): missing requirement > [org.apache.sling.commons.log.webconsole [35](R 35.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.commons.log.webconsole [35](R > 35.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/5/org.apache.sling.extensions.webconsolesecurityprovider-1.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.extensions.webconsolesecurityprovider [38](R 38.0): missing > requirement [org.apache.sling.extensions.webconsolesecurityprovider [38](R > 38.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)) [caused > by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): missing > requirement [org.apache.felix.webconsole [28](R 28.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: > [[org.apache.sling.extensions.webconsolesecurityprovider [38](R 38.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.extensions.webconsolesecurityprovider [38](R 38.0): missing > requirement [org.apache.sling.extensions.webconsolesecurityprovider [38](R > 38.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0)) [caused > by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): missing > requirement [org.apache.felix.webconsole [28](R 28.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: > [[org.apache.sling.extensions.webconsolesecurityprovider [38](R 38.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.1.0))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:14 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/10/org.apache.felix.http.sslfilter-1.2.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.sslfilter [41](R 41.0): missing requirement > [org.apache.felix.http.sslfilter [41](R 41.0)] osgi.implementation; > (&(osgi.implementation=osgi.http)(version=1.0)) [caused by: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.felix.http.sslfilter [41](R 41.0)] > osgi.implementation; (&(osgi.implementation=osgi.http)(version=1.0))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.sslfilter [41](R 41.0): missing requirement > [org.apache.felix.http.sslfilter [41](R 41.0)] osgi.implementation; > (&(osgi.implementation=osgi.http)(version=1.0)) [caused by: Unable to resolve > org.apache.felix.http.bridge [7](R 7.0): missing requirement > [org.apache.felix.http.bridge [7](R 7.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.felix.http.sslfilter [41](R 41.0)] > osgi.implementation; (&(osgi.implementation=osgi.http)(version=1.0))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/15/org.apache.sling.jcr.davex-1.3.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.davex [69](R 69.0): missing requirement > [org.apache.sling.jcr.davex [69](R 69.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.davex [69](R 69.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.davex [69](R 69.0): missing requirement > [org.apache.sling.jcr.davex [69](R 69.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.davex [69](R 69.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/15/org.apache.sling.jcr.jackrabbit.accessmanager-3.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.jackrabbit.accessmanager [70](R 70.0): missing > requirement [org.apache.sling.jcr.jackrabbit.accessmanager [70](R 70.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.jcr.jackrabbit.accessmanager > [70](R 70.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.jackrabbit.accessmanager [70](R 70.0): missing > requirement [org.apache.sling.jcr.jackrabbit.accessmanager [70](R 70.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.jcr.jackrabbit.accessmanager > [70](R 70.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/15/org.apache.sling.jcr.jackrabbit.usermanager-2.2.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.jackrabbit.usermanager [71](R 71.0): missing requirement > [org.apache.sling.jcr.jackrabbit.usermanager [71](R 71.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.jcr.jackrabbit.usermanager [71](R > 71.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.jackrabbit.usermanager [71](R 71.0): missing requirement > [org.apache.sling.jcr.jackrabbit.usermanager [71](R 71.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.jcr.jackrabbit.usermanager [71](R > 71.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/15/org.apache.sling.jcr.webconsole-1.0.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.webconsole [74](R 74.0): missing requirement > [org.apache.sling.jcr.webconsole [74](R 74.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.jcr.webconsole [74](R 74.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.webconsole [74](R 74.0): missing requirement > [org.apache.sling.jcr.webconsole [74](R 74.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0))) > [caused by: Unable to resolve org.apache.felix.webconsole [28](R 28.0): > missing requirement [org.apache.felix.webconsole [28](R 28.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.jcr.webconsole [74](R 74.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.felix.webconsole)(version>=3.0.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/15/org.apache.sling.jcr.webdav-2.3.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.webdav [75](R 75.0): missing requirement > [org.apache.sling.jcr.webdav [75](R 75.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.webdav [75](R 75.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.webdav [75](R 75.0): missing requirement > [org.apache.sling.jcr.webdav [75](R 75.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.felix.http.bridge [7](R 7.0): > missing requirement [org.apache.felix.http.bridge [7](R 7.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.webdav [75](R 75.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.osgi.service.http)(version>=1.2.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/composum-sling-core-commons-1.8.2.jar > (org.osgi.framework.BundleException: Unable to resolve > com.composum.core.commons [77](R 77.0): missing requirement > [com.composum.core.commons [77](R 77.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > com.composum.core.commons [77](R 77.0): missing requirement > [com.composum.core.commons [77](R 77.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/composum-sling-core-console-1.8.2.jar > (org.osgi.framework.BundleException: Unable to resolve > com.composum.core.console [79](R 79.0): missing requirement > [com.composum.core.console [79](R 79.0)] osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.config)(version>=1.8.0)(!(version>=2.0.0))) > [caused by: Unable to resolve com.composum.core.commons [77](R 77.0): > missing requirement [com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]]] > Unresolved requirements: [[com.composum.core.console [79](R 79.0)] > osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.config)(version>=1.8.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > com.composum.core.console [79](R 79.0): missing requirement > [com.composum.core.console [79](R 79.0)] osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.config)(version>=1.8.0)(!(version>=2.0.0))) > [caused by: Unable to resolve com.composum.core.commons [77](R 77.0): > missing requirement [com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]]] > Unresolved requirements: [[com.composum.core.console [79](R 79.0)] > osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.config)(version>=1.8.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/composum-sling-package-manager-1.8.2.jar > (org.osgi.framework.BundleException: Unable to resolve > com.composum.core.pckgmgr [81](R 81.0): missing requirement > [com.composum.core.pckgmgr [81](R 81.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[com.composum.core.pckgmgr [81](R 81.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > com.composum.core.pckgmgr [81](R 81.0): missing requirement > [com.composum.core.pckgmgr [81](R 81.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[com.composum.core.pckgmgr [81](R 81.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/composum-sling-user-management-1.8.2.jar > (org.osgi.framework.BundleException: Unable to resolve > com.composum.core.usermgnt [82](R 82.0): missing requirement > [com.composum.core.usermgnt [82](R 82.0)] osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.filter)(version>=1.8.0)(!(version>=2.0.0))) > [caused by: Unable to resolve com.composum.core.commons [77](R 77.0): > missing requirement [com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]]] > Unresolved requirements: [[com.composum.core.usermgnt [82](R 82.0)] > osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.filter)(version>=1.8.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > com.composum.core.usermgnt [82](R 82.0): missing requirement > [com.composum.core.usermgnt [82](R 82.0)] osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.filter)(version>=1.8.0)(!(version>=2.0.0))) > [caused by: Unable to resolve com.composum.core.commons [77](R 77.0): > missing requirement [com.composum.core.commons [77](R 77.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.event.jobs)(version>=1.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.event [141](R 141.0): missing > requirement [org.apache.sling.event [141](R 141.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]]] > Unresolved requirements: [[com.composum.core.usermgnt [82](R 82.0)] > osgi.wiring.package; > (&(osgi.wiring.package=com.composum.sling.core.filter)(version>=1.8.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/org.apache.sling.nosql.generic-1.1.1-SNAPSHOT.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.nosql.generic [84](R 84.0): missing requirement > [org.apache.sling.nosql.generic [84](R 84.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.wrappers)(version>=2.5.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.nosql.generic [84](R 84.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.wrappers)(version>=2.5.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.nosql.generic [84](R 84.0): missing requirement > [org.apache.sling.nosql.generic [84](R 84.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.wrappers)(version>=2.5.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.nosql.generic [84](R 84.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.wrappers)(version>=2.5.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/20/org.apache.sling.nosql.mongodb-resourceprovider-1.1.1-SNAPSHOT.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.nosql.mongodb-resourceprovider [85](R 85.0): missing > requirement [org.apache.sling.nosql.mongodb-resourceprovider [85](R 85.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.nosql.generic.resource)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.nosql.generic [84](R 84.0): > missing requirement [org.apache.sling.nosql.generic [84](R 84.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.nosql.mongodb-resourceprovider > [85](R 85.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.nosql.generic.resource)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.nosql.mongodb-resourceprovider [85](R 85.0): missing > requirement [org.apache.sling.nosql.mongodb-resourceprovider [85](R 85.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.nosql.generic.resource)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.nosql.generic [84](R 84.0): > missing requirement [org.apache.sling.nosql.generic [84](R 84.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.nosql.mongodb-resourceprovider > [85](R 85.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.nosql.generic.resource)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:19 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/cxf-rt-transports-http-3.1.11.jar > (java.lang.NoClassDefFoundError: org/osgi/service/http/HttpService) > java.lang.NoClassDefFoundError: org/osgi/service/http/HttpService > at > org.apache.cxf.transport.http.osgi.HTTPTransportActivator.start(HTTPTransportActivator.java:63) > at > org.apache.felix.framework.util.SecureAction.startActivator(SecureAction.java:697) > at org.apache.felix.framework.Felix.activateBundle(Felix.java:2239) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2145) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > Caused by: java.lang.ClassNotFoundException: > org.osgi.service.http.HttpService not found by > org.apache.cxf.cxf-rt-transports-http [98] > at > org.apache.felix.framework.BundleWiringImpl.findClassOrResourceByDelegation(BundleWiringImpl.java:1610) > at > org.apache.felix.framework.BundleWiringImpl.access$200(BundleWiringImpl.java:80) > at > org.apache.felix.framework.BundleWiringImpl$BundleClassLoader.loadClass(BundleWiringImpl.java:2018) > at java.lang.ClassLoader.loadClass(ClassLoader.java:357) > ... 7 more > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.felix.http.whiteboard-3.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.whiteboard [118](R 118.0): missing requirement > [org.apache.felix.http.whiteboard [118](R 118.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.whiteboard [118](R 118.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.felix.http.whiteboard [118](R 118.0): missing requirement > [org.apache.felix.http.whiteboard [118](R 118.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.felix.http.whiteboard [118](R 118.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.adapter-2.1.10.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.adapter [120](R 120.0): missing requirement > [org.apache.sling.adapter [120](R 120.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.adapter [120](R 120.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.adapter [120](R 120.0): missing requirement > [org.apache.sling.adapter [120](R 120.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.adapter [120](R 120.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.api-2.16.2.jar > (org.osgi.framework.BundleException: Unable to resolve org.apache.sling.api > [121](R 121.0): missing requirement [org.apache.sling.api [121](R 121.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.api [121](R 121.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve org.apache.sling.api > [121](R 121.0): missing requirement [org.apache.sling.api [121](R 121.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.api [121](R 121.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.auth.core-1.4.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.auth.core [122](R 122.0): missing requirement > [org.apache.sling.auth.core [122](R 122.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.auth.core [122](R 122.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.auth.core [122](R 122.0): missing requirement > [org.apache.sling.auth.core [122](R 122.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.auth.core [122](R 122.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.auth.form-1.0.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.auth.form [123](R 123.0): missing requirement > [org.apache.sling.auth.form [123](R 123.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.auth.core.spi)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.auth.core [122](R 122.0): > missing requirement [org.apache.sling.auth.core [122](R 122.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.auth)(version>=1.0.0)(!(version>=1.1.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.auth.form [123](R 123.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.auth.core.spi)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.auth.form [123](R 123.0): missing requirement > [org.apache.sling.auth.form [123](R 123.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.auth.core.spi)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.auth.core [122](R 122.0): > missing requirement [org.apache.sling.auth.core [122](R 122.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.auth)(version>=1.0.0)(!(version>=1.1.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.auth.form [123](R 123.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.auth.core.spi)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.bundleresource.impl-2.2.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.bundleresource.impl [124](R 124.0): missing requirement > [org.apache.sling.bundleresource.impl [124](R 124.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.bundleresource.impl [124](R > 124.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.2.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.bundleresource.impl [124](R 124.0): missing requirement > [org.apache.sling.bundleresource.impl [124](R 124.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.bundleresource.impl [124](R > 124.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.2.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.caconfig.api-1.1.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.api [125](R 125.0): missing requirement > [org.apache.sling.caconfig.api [125](R 125.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.caconfig.api [125](R 125.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.api [125](R 125.0): missing requirement > [org.apache.sling.caconfig.api [125](R 125.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.caconfig.api [125](R 125.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.caconfig.impl-1.4.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.impl [126](R 126.0): missing requirement > [org.apache.sling.caconfig.impl [126](R 126.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.caconfig.impl [126](R 126.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.impl [126](R 126.0): missing requirement > [org.apache.sling.caconfig.impl [126](R 126.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.caconfig.impl [126](R 126.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.caconfig.spi-1.3.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.spi [127](R 127.0): missing requirement > [org.apache.sling.caconfig.spi [127](R 127.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.caconfig.spi [127](R 127.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.caconfig.spi [127](R 127.0): missing requirement > [org.apache.sling.caconfig.spi [127](R 127.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.caconfig.spi [127](R 127.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.8.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.commons.fsclassloader-1.0.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.commons.fsclassloader [130](R 130.0): missing requirement > [org.apache.sling.commons.fsclassloader [130](R 130.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.commons.fsclassloader [130](R > 130.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.commons.fsclassloader [130](R 130.0): missing requirement > [org.apache.sling.commons.fsclassloader [130](R 130.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.commons.fsclassloader [130](R > 130.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.discovery.base-2.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.base [136](R 136.0): missing requirement > [org.apache.sling.discovery.base [136](R 136.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.commons.providers.spi)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.discovery.commons [137](R > 137.0): missing requirement [org.apache.sling.discovery.commons [137](R > 137.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.discovery.base [136](R 136.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.commons.providers.spi)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.base [136](R 136.0): missing requirement > [org.apache.sling.discovery.base [136](R 136.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.commons.providers.spi)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.discovery.commons [137](R > 137.0): missing requirement [org.apache.sling.discovery.commons [137](R > 137.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.discovery.base [136](R 136.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.commons.providers.spi)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.discovery.commons-1.0.20.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.commons [137](R 137.0): missing requirement > [org.apache.sling.discovery.commons [137](R 137.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.discovery.commons [137](R 137.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.commons [137](R 137.0): missing requirement > [org.apache.sling.discovery.commons [137](R 137.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.discovery.commons [137](R 137.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.discovery.oak-1.2.18.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.oak [138](R 138.0): missing requirement > [org.apache.sling.discovery.oak [138](R 138.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.base.connectors)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.discovery.base [136](R > 136.0): missing requirement [org.apache.sling.discovery.base [136](R 136.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.4.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.discovery.oak [138](R 138.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.base.connectors)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.discovery.oak [138](R 138.0): missing requirement > [org.apache.sling.discovery.oak [138](R 138.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.base.connectors)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.discovery.base [136](R > 136.0): missing requirement [org.apache.sling.discovery.base [136](R 136.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.4.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]] > Unresolved requirements: [[org.apache.sling.discovery.oak [138](R 138.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.discovery.base.connectors)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.engine-2.6.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.engine [140](R 140.0): missing requirement > [org.apache.sling.engine [140](R 140.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.descriptor)(version>=2.6.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.engine [140](R 140.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.descriptor)(version>=2.6.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve org.apache.sling.engine > [140](R 140.0): missing requirement [org.apache.sling.engine [140](R 140.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.descriptor)(version>=2.6.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.engine [140](R 140.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.descriptor)(version>=2.6.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.event-4.2.6.jar > (org.osgi.framework.BundleException: Unable to resolve org.apache.sling.event > [141](R 141.0): missing requirement [org.apache.sling.event [141](R 141.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.event [141](R 141.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve org.apache.sling.event > [141](R 141.0): missing requirement [org.apache.sling.event [141](R 141.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.event [141](R 141.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.9.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.event.dea-1.1.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.event.dea [142](R 142.0): missing requirement > [org.apache.sling.event.dea [142](R 142.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.event.dea [142](R 142.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.event.dea [142](R 142.0): missing requirement > [org.apache.sling.event.dea [142](R 142.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.event.dea [142](R 142.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.fsresource-2.1.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.fsresource [143](R 143.0): missing requirement > [org.apache.sling.fsresource [143](R 143.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.fsresource [143](R 143.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.fsresource [143](R 143.0): missing requirement > [org.apache.sling.fsresource [143](R 143.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.fsresource [143](R 143.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource.observation)(version>=1.0.0)(!(version>=2.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.hc.core-1.2.8.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.hc.core [145](R 145.0): missing requirement > [org.apache.sling.hc.core [145](R 145.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.0.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.hc.core [145](R 145.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.0.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.hc.core [145](R 145.0): missing requirement > [org.apache.sling.hc.core [145](R 145.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.0.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.hc.core [145](R 145.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.0.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.hc.webconsole-1.1.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.hc.webconsole [146](R 146.0): missing requirement > [org.apache.sling.hc.webconsole [146](R 146.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.hc.webconsole [146](R 146.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.1.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.hc.webconsole [146](R 146.0): missing requirement > [org.apache.sling.hc.webconsole [146](R 146.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.hc.webconsole [146](R 146.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.1.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.i18n-2.5.8.jar > (org.osgi.framework.BundleException: Unable to resolve org.apache.sling.i18n > [147](R 147.0): missing requirement [org.apache.sling.i18n [147](R 147.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.i18n [147](R 147.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve org.apache.sling.i18n > [147](R 147.0): missing requirement [org.apache.sling.i18n [147](R 147.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.i18n [147](R 147.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.jcr.resource-3.0.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.resource [152](R 152.0): missing requirement > [org.apache.sling.jcr.resource [152](R 152.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.resource [152](R 152.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api)(version>=2.3.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.jcr.resource [152](R 152.0): missing requirement > [org.apache.sling.jcr.resource [152](R 152.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.jcr.resource [152](R 152.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api)(version>=2.3.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.models.api-1.3.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.api [154](R 154.0): missing requirement > [org.apache.sling.models.api [154](R 154.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.api [154](R 154.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.api [154](R 154.0): missing requirement > [org.apache.sling.models.api [154](R 154.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.api [154](R 154.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.1.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.models.impl-1.4.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.impl [155](R 155.0): missing requirement > [org.apache.sling.models.impl [155](R 155.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.impl [155](R 155.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.impl [155](R 155.0): missing requirement > [org.apache.sling.models.impl [155](R 155.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.impl [155](R 155.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.models.jacksonexporter-1.0.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.jacksonexporter [156](R 156.0): missing requirement > [org.apache.sling.models.jacksonexporter [156](R 156.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.jacksonexporter [156](R > 156.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.3.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.models.jacksonexporter [156](R 156.0): missing requirement > [org.apache.sling.models.jacksonexporter [156](R 156.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.models.jacksonexporter [156](R > 156.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.request)(version>=2.3.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.resourceresolver-1.5.30.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.resourceresolver [159](R 159.0): missing requirement > [org.apache.sling.resourceresolver [159](R 159.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.resourceresolver [159](R 159.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.resourceresolver [159](R 159.0): missing requirement > [org.apache.sling.resourceresolver [159](R 159.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.resourceresolver [159](R 159.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.sample.slingshot-0.8.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.sample.slingshot [160](R 160.0): missing requirement > [org.apache.sling.sample.slingshot [160](R 160.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.sample.slingshot [160](R 160.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.sample.slingshot [160](R 160.0): missing requirement > [org.apache.sling.sample.slingshot [160](R 160.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.sample.slingshot [160](R 160.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.api-2.2.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.api [161](R 161.0): missing requirement > [org.apache.sling.scripting.api [161](R 161.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.10.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.scripting.api [161](R 161.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.10.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.api [161](R 161.0): missing requirement > [org.apache.sling.scripting.api [161](R 161.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.10.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.scripting.api [161](R 161.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.10.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.core-2.0.46.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.core [162](R 162.0): missing requirement > [org.apache.sling.scripting.core [162](R 162.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.core [162](R 162.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.core [162](R 162.0): missing requirement > [org.apache.sling.scripting.core [162](R 162.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.core [162](R 162.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.javascript-3.0.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.javascript [164](R 164.0): missing requirement > [org.apache.sling.scripting.javascript [164](R 164.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.javascript [164](R > 164.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.javascript [164](R 164.0): missing requirement > [org.apache.sling.scripting.javascript [164](R 164.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.javascript [164](R > 164.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.jsp-2.3.2.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.jsp [165](R 165.0): missing requirement > [org.apache.sling.scripting.jsp [165](R 165.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.jsp [165](R 165.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.jsp [165](R 165.0): missing requirement > [org.apache.sling.scripting.jsp [165](R 165.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.jsp [165](R 165.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.jsp.taglib-2.2.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.jsp.taglib [167](R 167.0): missing requirement > [org.apache.sling.scripting.jsp.taglib [167](R 167.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.scripting.jsp.taglib [167](R > 167.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.1.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.jsp.taglib [167](R 167.0): missing requirement > [org.apache.sling.scripting.jsp.taglib [167](R 167.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.1.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.scripting.jsp.taglib [167](R > 167.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.1.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:20 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.sightly-1.0.40.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly [168](R 168.0): missing requirement > [org.apache.sling.scripting.sightly [168](R 168.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly [168](R 168.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly [168](R 168.0): missing requirement > [org.apache.sling.scripting.sightly [168](R 168.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly [168](R 168.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.sightly.js.provider-1.0.24.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.js.provider [171](R 171.0): missing > requirement [org.apache.sling.scripting.sightly.js.provider [171](R 171.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.js.provider > [171](R 171.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.js.provider [171](R 171.0): missing > requirement [org.apache.sling.scripting.sightly.js.provider [171](R 171.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.js.provider > [171](R 171.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet.http)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.sightly.models.provider-1.0.6.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.models.provider [172](R 172.0): missing > requirement [org.apache.sling.scripting.sightly.models.provider [172](R > 172.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.models.provider > [172](R 172.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.models.provider [172](R 172.0): missing > requirement [org.apache.sling.scripting.sightly.models.provider [172](R > 172.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.models.provider > [172](R 172.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.scripting.sightly.repl-1.0.4.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.repl [173](R 173.0): missing requirement > [org.apache.sling.scripting.sightly.repl [173](R 173.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.repl [173](R > 173.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.scripting.sightly.repl [173](R 173.0): missing requirement > [org.apache.sling.scripting.sightly.repl [173](R 173.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.scripting.sightly.repl [173](R > 173.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.servlets.get-2.1.26.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.get [175](R 175.0): missing requirement > [org.apache.sling.servlets.get [175](R 175.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.get [175](R 175.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.get [175](R 175.0): missing requirement > [org.apache.sling.servlets.get [175](R 175.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.get [175](R 175.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.servlets.post-2.3.22.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.post [176](R 176.0): missing requirement > [org.apache.sling.servlets.post [176](R 176.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.post [176](R 176.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.post [176](R 176.0): missing requirement > [org.apache.sling.servlets.post [176](R 176.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.post [176](R 176.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.servlets.resolver-2.4.14.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.resolver [177](R 177.0): missing requirement > [org.apache.sling.servlets.resolver [177](R 177.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.resolver [177](R 177.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.servlets.resolver [177](R 177.0): missing requirement > [org.apache.sling.servlets.resolver [177](R 177.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.servlets.resolver [177](R 177.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.validation.api-1.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.validation.api [178](R 178.0): missing requirement > [org.apache.sling.validation.api [178](R 178.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.validation.api [178](R 178.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.3.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.validation.api [178](R 178.0): missing requirement > [org.apache.sling.validation.api [178](R 178.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.3.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.validation.api [178](R 178.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.resource)(version>=2.3.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.validation.core-1.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.validation.core [179](R 179.0): missing requirement > [org.apache.sling.validation.core [179](R 179.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.validation.core [179](R 179.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve > org.apache.sling.validation.core [179](R 179.0): missing requirement > [org.apache.sling.validation.core [179](R 179.0)] osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0))) > [caused by: Unable to resolve org.apache.sling.api [121](R 121.0): missing > requirement [org.apache.sling.api [121](R 121.0)] osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > Unresolved requirements: [[org.apache.sling.validation.core [179](R 179.0)] > osgi.wiring.package; > (&(osgi.wiring.package=org.apache.sling.api.adapter)(version>=2.2.0)(!(version>=3.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748) > 2021-09-08 15:23:21 ERROR servlet:392 - ERROR: Error starting > launchpad:/resources/install/0/org.apache.sling.xss-2.0.0.jar > (org.osgi.framework.BundleException: Unable to resolve org.apache.sling.xss > [180](R 180.0): missing requirement [org.apache.sling.xss [180](R 180.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.xss [180](R 180.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))]) > org.osgi.framework.BundleException: Unable to resolve org.apache.sling.xss > [180](R 180.0): missing requirement [org.apache.sling.xss [180](R 180.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0))) > Unresolved requirements: [[org.apache.sling.xss [180](R 180.0)] > osgi.wiring.package; > (&(osgi.wiring.package=javax.servlet)(version>=3.1.0)(!(version>=4.0.0)))] > at > org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4148) > at org.apache.felix.framework.Felix.startBundle(Felix.java:2118) > at > org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1372) > at > org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:308) > at java.lang.Thread.run(Thread.java:748)
