rename LICENSE.txt/NOTICE.txt to LICENSE/NOTICE to follow maven convention and make sure the source package defined in apache parent pom includes our licensing stuff instead of maven defaults.
remove src.xml descriptor from assemble module: we don't need to generate a source package because the "apache-release" profile already creates a correct one for the main pom.
alter bin.xml assembly descriptor to include all of our generated jars (previously it only included core jars).

git-svn-id: https://svn.apache.org/repos/asf/james/mime4j/trunk@1148697 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/assemble/src/assemble/src.xml b/assemble/src/assemble/src.xml
deleted file mode 100644
index d7bfade..0000000
--- a/assemble/src/assemble/src.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<assembly>

-  <!--

-  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.

-  -->

-  <id>src</id>

-  <!-- 

-  Generates a file including all the source tree excluding files/folders

-  starting with "." , *.bak and the target

-  -->

-  <formats>

-    <format>zip</format>

-    <format>tar.gz</format>

-  </formats>

-  <fileSets>

-    <fileSet>

-      <directory>..</directory>

-      <outputDirectory></outputDirectory>

-      <excludes>

-        <exclude>**/target/**</exclude>

-        <exclude>.*</exclude>

-        <exclude>.*/**</exclude>

-        <exclude>**.bak</exclude>

-        <exclude>lib/**</exclude>

-      </excludes>

-      <useDefaultExcludes>true</useDefaultExcludes>

-    </fileSet>

-  </fileSets>

-</assembly>