Author: rahul
Date: Sun Jan 11 16:20:47 2009
New Revision: 733550

URL: http://svn.apache.org/viewvc?rev=733550&view=rev
Log:
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).

Added:
    jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml   
(with props)
    jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml   
(with props)

Added: jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml?rev=733550&view=auto
==============================================================================
--- jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml 
(added)
+++ jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml Sun 
Jan 11 16:20:47 2009
@@ -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>

Propchange: 
jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml?rev=733550&view=auto
==============================================================================
--- jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml 
(added)
+++ jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml Sun 
Jan 11 16:20:47 2009
@@ -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>

Propchange: 
jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
jakarta/taglibs/proper/rdc/trunk/taglibs-rdc-dist/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-h...@jakarta.apache.org

Reply via email to