From 194fd59bc46b866c012d627a86b8ddf387c05d21 Mon Sep 17 00:00:00 2001 From: Dennis Lundberg Date: Thu, 23 Aug 2007 21:40:51 +0000 Subject: [PATCH] Switch building instructions from Maven 1 to Maven 2. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@569155 13f79535-47bb-0310-9956-ffa450edef68 --- xdocs/building.xml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/xdocs/building.xml b/xdocs/building.xml index 30ec3e5..de8a50a 100644 --- a/xdocs/building.xml +++ b/xdocs/building.xml @@ -24,20 +24,25 @@ limitations under the License.

- Commons Logging uses Ant as a build system - and Maven 1.x for documentation only. + Commons Logging uses Maven 2.0.x as its + primary build system. Ant can also be used.

- To build the full website, run "maven site". - The result will be in "target/docs". - You must be online and using JDK 1.4 or higher to successfully complete this target. + To build the full website, run "mvn site". + The result will be in "target/site". + You must be online and using JDK 1.4 or higher to successfully complete this target.

- Further details can be found in the - commons build instructions. + To build the jar files, run "mvn package". + The result will be in the "target" folder. + You must use JDK 1.4 or higher to successfully complete this target. +

+

+ Further details can be found in the + commons build instructions.