Move installing sample to the attic

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1810129 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/simple-launchpad/.gitignore b/simple-launchpad/.gitignore
deleted file mode 100644
index 3a86d90..0000000
--- a/simple-launchpad/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/sling/
diff --git a/simple-launchpad/pom.xml b/simple-launchpad/pom.xml
deleted file mode 100644
index e4031c4..0000000
--- a/simple-launchpad/pom.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-    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.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>sample</groupId>
-    <artifactId>sample-war</artifactId>
-    <packaging>war</packaging>
-    <version>1-SNAPSHOT</version>
-
-    <name>Sample Launchpad War</name>
-    <description>
-        A Sample Launchpad War...
-    </description>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.sling</groupId>
-                <artifactId>maven-launchpad-plugin</artifactId>
-                <version>2.1.2</version>
-                <executions>
-                    <execution>
-                        <id>prepare-package</id>
-                        <goals>
-                            <goal>prepare-package</goal>
-                        </goals>
-                    </execution>
-                </executions>    
-                <configuration>
-                    <defaultBundleList>
-                        <!-- only need this until the next release -->
-                        <version>7</version>
-                    </defaultBundleList>
-                    <additionalBundles>
-                        <bundle>
-                            <groupId>org.apache.felix</groupId>
-                            <artifactId>org.apache.felix.shell</artifactId>
-                            <version>1.4.2</version>
-                            <startLevel>20</startLevel>
-                        </bundle>
-                    </additionalBundles>
-                </configuration>
-            </plugin>
-            
-            <plugin>
-            <groupId>org.mortbay.jetty</groupId>
-            <artifactId>maven-jetty-plugin</artifactId>
-                <version>6.1.23</version>
-                <configuration>
-                    <contextPath>/</contextPath>
-                    <webAppSourceDirectory>
-                        target/${artifactId}-${project.version}
-                    </webAppSourceDirectory>
-                </configuration>
-            </plugin>
-            
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-war-plugin</artifactId>
-                <configuration>
-                    <webResources>
-                        <resource>
-                            <directory>
-                                ${project.build.directory}/launchpad-bundles
-                            </directory>
-                            <targetPath>WEB-INF</targetPath>
-                        </resource>
-                    </webResources>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.sling</groupId>
-            <artifactId>org.apache.sling.launchpad.base</artifactId>
-            <version>2.4.0</version>
-            <classifier>webapp</classifier>
-            <type>war</type>
-            <scope>runtime</scope>
-        </dependency>
-    </dependencies>
-</project>