delete more files

git-svn-id: https://svn.apache.org/repos/asf/manifoldcf/integration/solr-3.x/branches/CONNECTORS-914@1583611 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
deleted file mode 100644
index b30e5a0..0000000
--- a/src/CHANGES.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-Apache ManifoldCF Plugin for Apache Solr 3.x
-Release Notes
-
-This file describes changes to the Apache ManifoldCF Plugin for Apache Solr 3.x security
-package (contrib/mcf) module.
-
-Introduction
-------------
-This module is intended to be used to restrict queries based on a user's authorization information.
-It includes a SearchComponent class org.apache.solr.mcf.ManifoldCFSearchComponent.  It also includes
-a Query Parser plugin class org.apache.solr.mcf.ManifoldCFQParserPlugin.  Both components
-require the argument "AuthorityServiceBaseURL", which describes the URL needed to reach
-the ManifoldCF Authority Service.  Other optional parameters are:
-
-AllowAttributePrefix - the first part of the 'allow' family of fields, e.g. "allow_token_document" or
-	"allow_token_share" or "allow_token_parent", defaulting to "allow_token_".
-DenyAttributePrefix - the first part of the 'deny' family of fields, e.g. "deny_token_document" or
-	"deny_token_share" or "deny_token_parent", defaulting to "deny_token_".
-ConnectionPoolSize - the size of the connection pool (default is 50).
-
-$Id$
-
-==================  4.0.0-dev ==============
-
-Initial Release
diff --git a/src/DEPENDENCIES.txt b/src/DEPENDENCIES.txt
deleted file mode 100644
index f910926..0000000
--- a/src/DEPENDENCIES.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Apache ManifoldCF Plugin for Apache Solr 3.x requires
----------------------------------------------------
-* Apache Solr 3.x
-* JRE 1.6 or above
-
-For running Apache ManifoldCF Plugin for Apache Solr 3.x:
--------------------------------------------------------
-
-* Look at README.txt
-
-
diff --git a/src/NOTICE.txt b/src/NOTICE.txt
deleted file mode 100644
index 86c74a4..0000000
--- a/src/NOTICE.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-Apache ManifoldCF Plugin for Apache Solr 3.x
-Copyright 2010-2013 The Apache Software Foundation
-
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).
diff --git a/src/build.xml b/src/build.xml
deleted file mode 100644
index 019d868..0000000
--- a/src/build.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.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.
- -->
-
-<project name="solr-mcf" default="default">
-
-  <description>
-    Solr Integration with ManifoldCF, for repository document authorization
-  </description>
-
-  <import file="../contrib-build.xml"/>
-
-  <path id="classpath">
-    <pathelement path="${queries.jar}"/>
-    <path refid="solr.base.classpath"/>
-  </path>
-
-  <target name="module-jars-to-solr" depends="jar-queries">
-    <mkdir dir="${build.dir}/lucene-libs"/>
-    <copy todir="${build.dir}/lucene-libs" preservelastmodified="true" flatten="true" failonerror="true" overwrite="true">
-      <fileset file="${queries.jar}"/>
-    </copy>
-  </target>
-
-  <target name="compile-core" depends="jar-queries, solr-contrib-build.compile-core"/>
-  <target name="dist" depends="module-jars-to-solr, common-solr.dist"/>
-
-</project>