Return-Path: Delivered-To: apmail-incubator-click-commits-archive@minotaur.apache.org Received: (qmail 28874 invoked from network); 10 Feb 2009 19:24:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Feb 2009 19:24:12 -0000 Received: (qmail 28016 invoked by uid 500); 10 Feb 2009 19:24:12 -0000 Delivered-To: apmail-incubator-click-commits-archive@incubator.apache.org Received: (qmail 28002 invoked by uid 500); 10 Feb 2009 19:24:12 -0000 Mailing-List: contact click-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@incubator.apache.org Delivered-To: mailing list click-commits@incubator.apache.org Received: (qmail 27991 invoked by uid 99); 10 Feb 2009 19:24:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Feb 2009 11:24:11 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 10 Feb 2009 19:24:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3361723888A5; Tue, 10 Feb 2009 19:23:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743067 - in /incubator/click/trunk/click/build: build.properties build.xml Date: Tue, 10 Feb 2009 19:23:42 -0000 To: click-commits@incubator.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090210192343.3361723888A5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Tue Feb 10 19:23:42 2009 New Revision: 743067 URL: http://svn.apache.org/viewvc?rev=743067&view=rev Log: added option to exclude lgpl libraries Modified: incubator/click/trunk/click/build/build.properties incubator/click/trunk/click/build/build.xml Modified: incubator/click/trunk/click/build/build.properties URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/build/build.properties?rev=743067&r1=743066&r2=743067&view=diff ============================================================================== --- incubator/click/trunk/click/build/build.properties (original) +++ incubator/click/trunk/click/build/build.properties Tue Feb 10 19:23:42 2009 @@ -26,3 +26,15 @@ # Proxy port for by Ant target 'get-deps-proxy' proxy.port=3128 + +# Hibernate is licensed under the Lesser GNU Public License which is +# more restrictive than the Apache Software License used by Apache Click. +# Because of the licensing issues, the Hibernate package can optionally be +# excluded from the distribution +download.hibernate=true + +# Checkstyle is licensed under the Lesser GNU Public License which is +# more restrictive than the Apache Software License used by Apache Click. +# Because of the licensing issues, Checkstyle is an optional build +# dependency and can be disabled +download.checkstyle=true Modified: incubator/click/trunk/click/build/build.xml URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/build/build.xml?rev=743067&r1=743066&r2=743067&view=diff ============================================================================== --- incubator/click/trunk/click/build/build.xml (original) +++ incubator/click/trunk/click/build/build.xml Tue Feb 10 19:23:42 2009 @@ -164,18 +164,6 @@ - - - - - - - - - - - - @@ -256,8 +244,7 @@ inheritall="false"/> - - + @@ -270,6 +257,7 @@ + @@ -278,7 +266,7 @@ @@ -497,7 +485,7 @@ - + @@ -548,7 +536,6 @@ - @@ -567,23 +554,47 @@ dest="lib/${jar.freemarker}" verbose="true" usetimestamp="true"/> - + inheritall="false"/> + + + + + + + + + + + + + + + - + + + + + + + + + + + Click ${version} web application framework =================================== @@ -615,7 +626,7 @@ Please ensure you have configured build.properties - + @@ -626,7 +637,8 @@ windowtitle="Click Framework API" doctitle="Click API" classpath="classpath.framework" - overview="documentation/docs/core-overview.html"/> + overview="documentation/docs/core-overview.html" + excludes=""/> @@ -641,7 +653,8 @@ windowtitle="Click Extras API" doctitle="Click Extras API" classpath="classpath.extras" - overview="documentation/docs/extras-overview.html"/> + overview="documentation/docs/extras-overview.html" + excludes="${exclude-hibernate-package}"/> @@ -653,7 +666,8 @@ windowtitle="Click Mock API" doctitle="Click Mock API" classpath="classpath.mock" - overview="documentation/docs/mock-overview.html"/> + overview="documentation/docs/mock-overview.html" + excludes=""/> @@ -827,6 +841,7 @@ + + doctitle="@{doctitle}" + excludepackagenames="@{excludes}"> @@ -972,4 +988,30 @@ dir="../${project-name}"/> + + + + + + + + + + + + + + + + + ******************************************************** + ** + ** The Hibernate library has not been found on your + ** classpath. The newly built Click Extras jar will + ** exclude the Hibernate package. + ** + ******************************************************** + + +