You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2004/10/25 15:23:53 UTC

svn commit: rev 55496 - incubator/lenya/branches/BRANCH_1_2_X/src/targets

Author: antonio
Date: Mon Oct 25 06:23:52 2004
New Revision: 55496

Modified:
   incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
Log:
{tools.lib.dir} does not exists. Fix for 'ant install'

Modified: incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
==============================================================================
--- incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	(original)
+++ incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	Mon Oct 25 06:23:52 2004
@@ -158,12 +158,9 @@
       </fileset>
     </copy>
 
-    <echo>INFO: Copy libraries from ${lib.dir} and ${tools.lib.dir} to ${build.webapp}/WEB-INF/lib</echo>
+    <echo>INFO: Copy libraries from ${lib.dir} to ${build.webapp}/WEB-INF/lib</echo>
     <copy todir="${build.webapp}/WEB-INF/lib">
       <fileset dir="${lib.dir}">
-        <include name="**/*"/>
-      </fileset>
-      <fileset dir="${tools.lib.dir}">
         <include name="**/*"/>
       </fileset>
     </copy>

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org


Re: svn commit: rev 55496 - incubator/lenya/branches/BRANCH_1_2_X/src/targets

Posted by "Gregor J. Rothfuss" <gr...@apache.org>.
> antonio@apache.org wrote:

>> {tools.lib.dir} does not exists.

weird, it is there at properties-build.xml:44


-- 
Gregor J. Rothfuss
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://wyona.com                          http://lenya.apache.org
gregor.rothfuss@wyona.com                       gregor@apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-dev-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-dev-help@cocoon.apache.org


Re: svn commit: rev 55496 - incubator/lenya/branches/BRANCH_1_2_X/src/targets

Posted by "Gregor J. Rothfuss" <gr...@apache.org>.
antonio@apache.org wrote:
> Author: antonio
> Date: Mon Oct 25 06:23:52 2004
> New Revision: 55496
> 
> Modified:
>    incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> Log:
> {tools.lib.dir} does not exists. Fix for 'ant install'
> 
> Modified: incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> ==============================================================================
> --- incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	(original)
> +++ incubator/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml	Mon Oct 25 06:23:52 2004
> @@ -158,12 +158,9 @@
>        </fileset>
>      </copy>
>  
> -    <echo>INFO: Copy libraries from ${lib.dir} and ${tools.lib.dir} to ${build.webapp}/WEB-INF/lib</echo>
> +    <echo>INFO: Copy libraries from ${lib.dir} to ${build.webapp}/WEB-INF/lib</echo>
>      <copy todir="${build.webapp}/WEB-INF/lib">
>        <fileset dir="${lib.dir}">
> -        <include name="**/*"/>
> -      </fileset>
> -      <fileset dir="${tools.lib.dir}">

this is wrong. because ant is no longer in lib, it needs to be copied 
from lib.dir. the fix is to add tools.lib.dir


-- 
Gregor J. Rothfuss
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://wyona.com                          http://lenya.apache.org
gregor.rothfuss@wyona.com                       gregor@apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-dev-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-dev-help@cocoon.apache.org