SLING-9548 - Remove support for o.a.s.jcr.jackrabbit.server from o.a.s.launchpad-test-services
diff --git a/pom.xml b/pom.xml
index dcba53f..e3902c7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,10 +55,6 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Import-Package>
-                            org.apache.sling.jcr.jackrabbit.server.*;resolution:=optional,
-                            *
-                        </Import-Package>
                         <Export-Package>
                           org.apache.sling.launchpad.testservices.exported,
                           org.apache.sling.launchpad.testservices.models,
@@ -155,11 +151,6 @@
         </dependency>        
         <dependency>
             <groupId>org.apache.sling</groupId>
-            <artifactId>org.apache.sling.jcr.jackrabbit.server</artifactId>
-            <version>2.1.0</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.api</artifactId>
             <version>2.21.0</version>
         </dependency>
diff --git a/src/main/java/org/apache/sling/launchpad/testservices/jcr/StartupTestContentLoader.java b/src/main/java/org/apache/sling/launchpad/testservices/jcr/StartupTestContentLoader.java
deleted file mode 100644
index d7997e3..0000000
--- a/src/main/java/org/apache/sling/launchpad/testservices/jcr/StartupTestContentLoader.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with this
- * work for additional information regarding copyright ownership. The ASF
- * licenses this file to You under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package org.apache.sling.launchpad.testservices.jcr;
-
-import java.io.IOException;
-
-import javax.jcr.RepositoryException;
-
-import org.apache.felix.scr.annotations.Component;
-import org.apache.felix.scr.annotations.Properties;
-import org.apache.felix.scr.annotations.Property;
-import org.apache.felix.scr.annotations.Reference;
-import org.apache.sling.jcr.jackrabbit.server.TestContentLoader;
-import org.osgi.service.component.ComponentContext;
-
-/**
- * Component which loads the JCR test content on startup.
- */
-@Component(enabled=false, metatype=false)
-@Properties({
-    @Property(name="service.description", value="Test Content Loader"),
-    @Property(name="service.vendor", value="The Apache Software Foundation")
-})
-public class StartupTestContentLoader {
-
-    @Reference
-    private TestContentLoader loader;
-
-    protected void activate(ComponentContext context) throws RepositoryException, IOException {
-        loader.loadTestContent();
-    }
-}
\ No newline at end of file