Add source and binary distro descriptors.
 * The source distro packages up most artifacts (with the exception of things like the DOAP).
 * The binary distro packages:
   - L&N
   - Taglib jar file
   - Examples and sample apps war file
   - TLD for human readability
   - Taglib source Javadocs
   - Examples war Javadocs
   - TLD doc plain HTML (not with site style)
This is pretty close to what we had before, with the exception that the docs are now packaged outside of a war file (which incidently also happens to be better IMO).


git-svn-id: https://svn.apache.org/repos/asf/jakarta/taglibs/proper/rdc/trunk@733550 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/taglibs-rdc-dist/src/assembly/bin.xml b/taglibs-rdc-dist/src/assembly/bin.xml
new file mode 100644
index 0000000..b297349
--- /dev/null
+++ b/taglibs-rdc-dist/src/assembly/bin.xml
@@ -0,0 +1,72 @@
+<?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.
+-->
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>taglibs-rdc-${version}</baseDirectory>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <directory>../taglibs-rdc</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc/src/main/tld</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.tld</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc/target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc-examples/target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.war</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc/target/site/apidocs</directory>
+            <outputDirectory>apidocs</outputDirectory>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc/target/site</directory>
+            <outputDirectory>tlddocs</outputDirectory>
+            <includes>
+              <include>tlddoc-plain.html</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc-examples/target/site/apidocs</directory>
+            <outputDirectory>examples-apidocs</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>
diff --git a/taglibs-rdc-dist/src/assembly/src.xml b/taglibs-rdc-dist/src/assembly/src.xml
new file mode 100644
index 0000000..be28da1
--- /dev/null
+++ b/taglibs-rdc-dist/src/assembly/src.xml
@@ -0,0 +1,68 @@
+<?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.
+-->
+<assembly>
+    <id>src</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <baseDirectory>taglibs-rdc-${version}-src</baseDirectory>
+    <fileSets>
+        <fileSet>
+            <directory>..</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>README.txt</include>
+                <include>pom.xml</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc</directory>
+            <outputDirectory>taglibs-rdc</outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc-examples</directory>
+            <outputDirectory>taglibs-rdc-examples</outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>../taglibs-rdc-dist</directory>
+            <outputDirectory>taglibs-rdc-dist</outputDirectory>
+            <includes>
+                <include>LICENSE.txt</include>
+                <include>NOTICE.txt</include>
+                <include>pom.xml</include>
+                <include>src/</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>