Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3BE3A100A9 for ; Wed, 21 Aug 2013 19:59:01 +0000 (UTC) Received: (qmail 48676 invoked by uid 500); 21 Aug 2013 19:59:00 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 48612 invoked by uid 500); 21 Aug 2013 19:59:00 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 48602 invoked by uid 99); 21 Aug 2013 19:59:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Aug 2013 19:59:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Aug 2013 19:58:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1DCA723889E0; Wed, 21 Aug 2013 19:58:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1516280 - in /commons/sandbox/weaver/trunk/ant/lib/src/site: ./ markdown/ markdown/index.md Date: Wed, 21 Aug 2013 19:58:35 -0000 To: commits@commons.apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130821195835.1DCA723889E0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mbenson Date: Wed Aug 21 19:58:34 2013 New Revision: 1516280 URL: http://svn.apache.org/r1516280 Log: document antlib Added: commons/sandbox/weaver/trunk/ant/lib/src/site/ commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/ commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/index.md Added: commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/index.md URL: http://svn.apache.org/viewvc/commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/index.md?rev=1516280&view=auto ============================================================================== --- commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/index.md (added) +++ commons/sandbox/weaver/trunk/ant/lib/src/site/markdown/index.md Wed Aug 21 19:58:34 2013 @@ -0,0 +1,50 @@ + + +## Apache Commons Weaver Antlib + +Provides an Antlib in the `antlib:org.apache.commons.weaver` namespace, +consisting of the following tasks: + +### clean + +Invokes available [Cleaner][cleaner] implementations. + +### weave + +Invokes available [Weaver][weaver] implementations. + + +Both the **weave** and **clean** tasks are parameterized either by +nesting or by reference (via the `settingsref` attribute) with a +custom type: + +### settings + + * `target` attribute - specifies the location of the classfiles to weave + * `classpath` attribute - path string (incompatible with `classpathref`) + * `classpathref` attribute - refid of an Ant **path** + (incompatible with `classpath`) + * nested `propertyset` - Ant **PropertySet** + * nested `properties` - specifies properties using the names and text values + of nested elements (looks like Maven POM properties) + + +[cleaner]: ../../apidocs/org/apache/commons/weaver/spi/Cleaner.html +[weaver]: ../../apidocs/org/apache/commons/weaver/spi/Weaver.html