You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2009/11/17 10:24:07 UTC

svn commit: r881206 - in /commons/proper/jexl/trunk: src/site/site.xml xdocs/building.xml xdocs/navigation.xml

Author: henrib
Date: Tue Nov 17 09:24:07 2009
New Revision: 881206

URL: http://svn.apache.org/viewvc?rev=881206&view=rev
Log:
deleted navigation.xml which is obsolete wrt doc system;
updated site.xml / buildind.xml per Sebb's comments

Removed:
    commons/proper/jexl/trunk/xdocs/navigation.xml
Modified:
    commons/proper/jexl/trunk/src/site/site.xml
    commons/proper/jexl/trunk/xdocs/building.xml

Modified: commons/proper/jexl/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/site/site.xml?rev=881206&r1=881205&r2=881206&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/site.xml (original)
+++ commons/proper/jexl/trunk/src/site/site.xml Tue Nov 17 09:24:07 2009
@@ -23,10 +23,10 @@
     </bannerRight>
 
     <body>
-        <menu name="JEXL">
+        <menu name="Commons&#xA0;Jexl">
             <item name="Overview"                href="/index.html" />
+            <item name="2.0&#xA0;Javadoc"        href="/apidocs/index.html"/>
             <item name="1.1&#xA0;Javadoc"        href="/apidocs-1.1/index.html"/>
-            <item name="1.0&#xA0;Javadoc"        href="/apidocs-1.0/index.html"/>
             <item name="Releases and Builds"     href="/releases.html"/>
             <item name="Download"                href="http://commons.apache.org/downloads/download_jexl.cgi"/>
             <item name="Reference"               href="/reference/index.html"/>

Modified: commons/proper/jexl/trunk/xdocs/building.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/xdocs/building.xml?rev=881206&r1=881205&r2=881206&view=diff
==============================================================================
--- commons/proper/jexl/trunk/xdocs/building.xml (original)
+++ commons/proper/jexl/trunk/xdocs/building.xml Tue Nov 17 09:24:07 2009
@@ -24,8 +24,7 @@
 <!-- ================================================== -->
 <section name="Overview">
 <p>
-  Commons JEXL uses <a href="http://maven.apache.org">Maven</a> or
-  <a href="http://ant.apache.org">Ant</a> as a build system. The source is
+  Commons JEXL uses <a href="http://maven.apache.org">Maven 2.2</a>. The source is
   <a href="http://svn.apache.org/repos/asf/commons/proper/jexl/trunk/">here</a>.
 </p>
 </section>
@@ -33,30 +32,16 @@
 <section name="Maven Goals">
   <p>
     To build a jar file, change into JEXL's root directory (see source link above)
-    and run "maven jar". The result will be in the "target" subdirectory.
+    and run "mvn jar". The result will be in the "target" subdirectory.
   </p>
   <p>
-    To build the Javadocs, run "maven javadoc".
-    The result will be in "target/docs/apidocs".
+    To build the Javadocs, run "mvn javadoc".
+    The result will be in "target/site/apidocs".
   </p>
   <p>
-    To build the full website, run "maven site". The result will be in "target/docs".
-  </p>
-  <p>
-    To build the site, you need Maven 2.2.
+    To build the full website, run "mvn site". The result will be in "target/site".
   </p>
+
 </section>
-<!-- ================================================== -->
-<section name="Ant Goals">
-  <p>
-    To build a jar file, change into JEXL's root directory and run "ant jar".
-    The result will be in the "target" subdirectory.
-  </p>
-  <p>
-    To build the Javadocs, run "ant javadoc".
-    The result will be in "dist/docs".
-  </p>
-</section>
-<!-- ================================================== -->
 </body>
 </document>