These are not needed for the maven build process.
git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@383571 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.felix.framework/build.xml b/org.apache.felix.framework/build.xml
deleted file mode 100644
index 463fad6..0000000
--- a/org.apache.felix.framework/build.xml
+++ /dev/null
@@ -1,118 +0,0 @@
-<project name="felix" default="all" basedir=".">
-
- <!-- Set our global properties -->
- <property name="src.dir" value="src/main/java"/>
- <property name="lib.dir" value="lib"/>
- <property name="output.dir" value="classes"/>
- <property name="bundle.dir" value="bundle"/>
- <property name="etc.dir" value="etc"/>
- <property name="doc.dir" value="doc"/>
- <property name="apidoc.dir" value="${doc.dir}/api"/>
- <property name="dist.dir" value="dist"/>
- <property name="debug.value" value="on"/>
-
- <!-- Create class path from lib and output directories. -->
- <path id="classpath">
- <pathelement location="${output.dir}"/>
- <fileset dir="${lib.dir}">
- <include name="*.jar"/>
- </fileset>
- </path>
-
- <target name="init">
- <!-- Create lib directory. -->
- <mkdir dir="${lib.dir}"/>
- <!-- Create output directory. -->
- <mkdir dir="${output.dir}"/>
- <!-- Create bundle directory. -->
- <mkdir dir="${bundle.dir}"/>
- </target>
-
- <!-- Compile and JAR everything -->
- <target name="all" depends="init">
- <antcall target="compile"/>
- <antcall target="moduleloader"/>
- <antcall target="osgi"/>
- <antcall target="felix"/>
- <antcall target="bundle"/>
- </target>
-
- <!-- Compile everything. -->
- <target name="compile" depends="init">
- <javac srcdir="${src.dir}" destdir="${output.dir}"
- debug="${debug.value}" verbose="no" deprecation="no">
- <classpath refid="classpath"/>
- <include name="**/*.java"/>
- </javac>
- </target>
-
- <!-- Create module loader JAR file. -->
- <target name="moduleloader" depends="compile">
- <jar jarfile="${lib.dir}/moduleloader.jar"
- basedir="${output.dir}">
- <include name="org/apache/felix/moduleloader/"/>
- </jar>
- </target>
-
- <!-- Create OSGi JAR file. -->
- <target name="osgi" depends="compile">
- <jar jarfile="${lib.dir}/osgi.jar" basedir="${output.dir}">
- <include name="org/osgi/framework/**"/>
- <include name="org/osgi/service/packageadmin/**"/>
- <include name="org/osgi/service/startlevel/**"/>
- <include name="org/osgi/service/url/**"/>
- </jar>
- </target>
-
- <!-- Create Felix JAR file. -->
- <target name="felix" depends="compile">
- <jar manifest="${src.dir}/org/apache/felix/framework/manifest.mf"
- jarfile="${lib.dir}/felix.jar"
- basedir="${output.dir}">
- <include name="org/apache/felix/framework/"/>
- <exclude name="org/apache/felix/framework/installer/"/>
- </jar>
- </target>
-
- <!-- Create impl bundle JAR files. -->
- <target name="bundle" depends="compile">
-
- <!-- Shell -->
- <jar manifest="${src.dir}/org/apache/felix/shell/impl/manifest.mf"
- jarfile="${bundle.dir}/org.apache.felix.shell.jar"
- basedir="${output.dir}">
- <include name="org/apache/felix/shell/**"/>
- <include name="org/ungoverned/osgi/service/shell/**"/>
- <exclude name="org/apache/felix/shell/tui/**"/>
- </jar>
-
- <!-- Shell TUI -->
- <jar manifest="${src.dir}/org/apache/felix/shell/tui/manifest.mf"
- jarfile="${bundle.dir}/org.apache.felix.shell.tui.jar"
- basedir="${output.dir}">
- <include name="org/apache/felix/shell/tui/**"/>
- </jar>
-
- <!-- OBR -->
- <copy file="${lib.dir}/kxml.jar"
- todir="${output.dir}/org/apache/felix/bundlerepository/impl/"/>
-
- <jar manifest="${src.dir}/org/apache/felix/bundlerepository/impl/manifest.mf"
- jarfile="${bundle.dir}/org.apache.felix.bundlerepository.jar"
- basedir="${output.dir}">
- <include name="org/apache/felix/bundlerepository/**"/>
- </jar>
-
- </target>
-
-
- <!-- Clean up everything. -->
- <target name="clean">
- <delete dir="${output.dir}"/>
- <delete dir="${bundle.dir}"/>
- <delete file="${lib.dir}/osgi.jar"/>
- <delete file="${lib.dir}/moduleloader.jar"/>
- <delete file="${lib.dir}/felix.jar"/>
- </target>
-
-</project>
diff --git a/org.apache.felix.framework/lib/config.properties b/org.apache.felix.framework/lib/config.properties
deleted file mode 100644
index 9be1a57..0000000
--- a/org.apache.felix.framework/lib/config.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# Framework config properties.
-#
-org.osgi.framework.system.packages=javax.swing; \
- javax.swing.plaf; \
- javax.swing.event; \
- javax.swing.table; \
- javax.swing.border; \
- javax.swing.tree; \
- javax.swing.text; \
- version=1.4
-#felix.cache.profile=foo
-felix.auto.start.1= \
- file:bundle/org.apache.felix.shell.jar \
- file:bundle/org.apache.felix.shell.tui.jar \
- file:bundle/org.apache.felix.bundlerepository.jar
-felix.startlevel.framework=1
-felix.startlevel.bundle=1
-#framework.service.urlhandlers=false
-
-#
-# Bundle config properties.
-#
-org.osgi.service.http.port=8080
-osgi.shell.telnet=on
-#osgi.repository.url=file:/home/rickhall/projects/apache/repository.xml
-#osgi.repository.url=file:/home/rickhall/projects/apache/repository.xml http://www.knopflerfish.org/repo/repository.xml
diff --git a/org.apache.felix.framework/lib/kxml.jar b/org.apache.felix.framework/lib/kxml.jar
deleted file mode 100644
index e1fc6db..0000000
--- a/org.apache.felix.framework/lib/kxml.jar
+++ /dev/null
Binary files differ