You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/11/14 01:52:23 UTC

svn commit: r836081 - /commons/proper/dbcp/trunk/xdocs/building.xml

Author: psteitz
Date: Sat Nov 14 00:52:23 2009
New Revision: 836081

URL: http://svn.apache.org/viewvc?rev=836081&view=rev
Log:
Updated build instructions.

Modified:
    commons/proper/dbcp/trunk/xdocs/building.xml

Modified: commons/proper/dbcp/trunk/xdocs/building.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/xdocs/building.xml?rev=836081&r1=836080&r2=836081&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/xdocs/building.xml (original)
+++ commons/proper/dbcp/trunk/xdocs/building.xml Sat Nov 14 00:52:23 2009
@@ -26,26 +26,24 @@
 <p>
   Commons DBCP uses <a href="http://maven.apache.org">Maven</a> or
   <a href="http://ant.apache.org">Ant</a> as a build system.
+  The maven build requires maven 2 and JDK 1.6.  The Ant build works with
+  JDK 1.4, 1.5 or 1.6.
 </p>
 </section>
 <!-- ================================================== -->
 <section name="Maven Goals">
   <p>
     To build a jar file, change into DBCP's root directory and run 
-    <strong><code>maven jar</code></strong>.
+    <strong><code>mvn package</code></strong>.
     The result will be in the "target" subdirectory.
   </p>
   <p>
-    To build the Javadocs, run <strong><code>maven javadoc</code></strong>.
-    The result will be in "target/docs/apidocs".
+    To build the Javadocs, run <strong><code>mvn javadoc:javadoc</code></strong>.
+    The result will be in "target/site/apidocs/".
   </p>
   <p>
-    To build the full website, run <strong><code>maven site</code></strong>.
-    The result will be in "target/docs".
-  </p>
-  <p>
-	Further details can be found in the
-	<a href="http://commons.apache.org/building.html">commons build instructions</a>.
+    To build the full website, run <strong><code>mvn site</code></strong>.
+    The result will be in "target/site".
   </p>
 </section>
 <!-- ================================================== -->
@@ -56,15 +54,6 @@
     The result will be in the "dist" subdirectory.
   </p>
 </section>
-<!-- ================================================== -->
-<section name="Nightly Builds">
-  <p>
-      <a href="http://people.apache.org/builds/commons/nightly/commons-dbcp/">Nightly Builds</a>
-      are built once a day from the current SVN HEAD. These are provided purely for test purposes and are <b>NOT
-      official releases</b> of the Apache Software Foundation - Released versions of Commons DBCP are
-      available <a href="http://commons.apache.org/downloads/download_dbcp.cgi">here</a>.
-  </p>
-</section>
 
 <!-- ================================================== -->
 </body>