Author: akarasulu Date: Mon Feb 21 13:33:49 2005 New Revision: 154724 URL: http://svn.apache.org/viewcvs?view=rev&rev=154724 Log: changes ...
Applying Brett's changes to trunk on revision http://svn.apache.org/viewcvs?view=rev&rev=154635. Modified: incubator/directory/asn1/branches/rewrite/maven.xml incubator/directory/asn1/branches/rewrite/project.properties incubator/directory/asn1/branches/rewrite/xdocs/index.xml incubator/directory/asn1/branches/rewrite/xdocs/navigation.xml Modified: incubator/directory/asn1/branches/rewrite/maven.xml URL: http://svn.apache.org/viewcvs/incubator/directory/asn1/branches/rewrite/maven.xml?view=diff&r1=154723&r2=154724 ============================================================================== --- incubator/directory/asn1/branches/rewrite/maven.xml (original) +++ incubator/directory/asn1/branches/rewrite/maven.xml Mon Feb 21 13:33:49 2005 @@ -1,78 +1,31 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <project - default="buildall" - xmlns:j="jelly:core" - xmlns:u="jelly:util" - xmlns:ant="jelly:ant" - xmlns:maven="jelly:maven" - xmlns:m="maven" - xmlns:deploy="deploy" - > - - <preGoal name="site"> - <attainGoal name="docbook:transform"/> - </preGoal> - - <postGoal name="site"> - <attainGoal name="server:copy-images"/> - </postGoal> - - <goal name="server:copy-images"> - <copy toDir="target/docs/images"> - <fileSet dir="${basedir}/src/images"> - <include name="*.gif"/> - </fileSet> - </copy> - </goal> + default="multiproject:install" + xmlns:j="jelly:core" + xmlns:ant="jelly:ant"> <goal name="buildall" description="Build All Jar Files And Intall"> - <ant:delete dir="${basedir}/target/classes"/> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="**/project.xml" excludes="project.xml" goals="jar:install" - banner="Building" ignoreFailures="false"/> + <attainGoal name="multiproject:install" /> </goal> <goal name="deployall" description="Deploy All Jar Files And Intall"> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="**/project.xml" excludes="./project.xml" goals="jar:deploy" - banner="Deploying" ignoreFailures="false"/> + <attainGoal name="multiproject:deploy" /> </goal> <goal name="sitedocs" description="Builds the entire site documentation"> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="**/project.xml" excludes="./project.xml" goals="site" - banner="site" ignoreFailures="false"/> + <attainGoal name="multiproject:site" /> </goal> <goal name="cleanall" description="Clean all sandbox projects"> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="**/project.xml" excludes="./project.xml" goals="clean" - banner="Clean All" - ignoreFailures="true"/> + <attainGoal name="multiproject:clean" /> <attainGoal name="clean"/> - <delete dir="home"/> - </goal> - - <goal name="eclipseall" - description="Generate eclipse descriptors for all projects"> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="*/project.xml" goals="clean" banner="Clean All" - ignoreFailures="true"/> + <ant:delete dir="home"/> </goal> <goal name="eclipse-all" description="Create all eclipse projects"> - <maven:reactor basedir="${basedir}" postProcessing="true" - includes="*/project.xml" goals="eclipse" banner="Eclipse Project" - ignoreFailures="true"/> + <j:set var="goal" value="eclipse" /> + <attainGoal name="multiproject:goal" /> </goal> - <!-- ======================================================================== - Experimentation section starts here! - ======================================================================= --> - - <goal name="components"> - <j:import inherit="true" uri="components.xml"/> - </goal> - </project> Modified: incubator/directory/asn1/branches/rewrite/project.properties URL: http://svn.apache.org/viewcvs/incubator/directory/asn1/branches/rewrite/project.properties?view=diff&r1=154723&r2=154724 ============================================================================== --- incubator/directory/asn1/branches/rewrite/project.properties (original) +++ incubator/directory/asn1/branches/rewrite/project.properties Mon Feb 21 13:33:49 2005 @@ -32,3 +32,4 @@ maven.site.stage.directory=/home/akarasulu/public_html/rsynced-sites/directory/subprojects/asn1 +maven.multiproject.aggregateDir=/ Modified: incubator/directory/asn1/branches/rewrite/xdocs/index.xml URL: http://svn.apache.org/viewcvs/incubator/directory/asn1/branches/rewrite/xdocs/index.xml?view=diff&r1=154723&r2=154724 ============================================================================== --- incubator/directory/asn1/branches/rewrite/xdocs/index.xml (original) +++ incubator/directory/asn1/branches/rewrite/xdocs/index.xml Mon Feb 21 13:33:49 2005 @@ -19,7 +19,7 @@ <tr><th>Subproject</th><th>Description</th></tr> <tr> - <td><a href="codec-stateful/index.html">ASN.1 Codecs</a></td> + <td><a href="asn1-codec/index.html">ASN.1 Codecs</a></td> <td> Extensions to commons-codec interfaces for non-blocking stateful encode and decode operations for chunking. @@ -27,7 +27,7 @@ </tr> <tr> - <td><a href="ber-codec/index.html">ASN.1 BER Runtime</a></td> + <td><a href="asn1-ber/index.html">ASN.1 BER Runtime</a></td> <td> Library used for ASN.1 data structures encoded onto and decoded off of the wire using Basic Encoding Rules (BER). By dealing only with BER TLV tuples Modified: incubator/directory/asn1/branches/rewrite/xdocs/navigation.xml URL: http://svn.apache.org/viewcvs/incubator/directory/asn1/branches/rewrite/xdocs/navigation.xml?view=diff&r1=154723&r2=154724 ============================================================================== --- incubator/directory/asn1/branches/rewrite/xdocs/navigation.xml (original) +++ incubator/directory/asn1/branches/rewrite/xdocs/navigation.xml Mon Feb 21 13:33:49 2005 @@ -18,8 +18,8 @@ <menu name="Apache ASN.1"> <item name="Overview" href="/index.html"/> - <item name="ASN.1 Codecs" href="/codec-stateful/index.html"/> - <item name="BER Runtime" href="/ber-codec/index.html"/> + <item name="ASN.1 Codecs" href="/asn1-codec/index.html"/> + <item name="BER Runtime" href="/asn1-ber/index.html"/> <item name="Stub Compiler" href="/stub-compiler/index.html"/> </menu>
