You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by th...@apache.org on 2005/10/21 16:17:52 UTC

svn commit: r327197 - /lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Author: thorsten
Date: Fri Oct 21 07:17:46 2005
New Revision: 327197

URL: http://svn.apache.org/viewcvs?rev=327197&view=rev
Log:
reverted unreleated changes of my last commit

Modified:
    lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Modified: lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
URL: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml?rev=327197&r1=327196&r2=327197&view=diff
==============================================================================
--- lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml (original)
+++ lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml Fri Oct 21 07:17:46 2005
@@ -215,10 +215,13 @@
 
     <!-- Copy endorsed libraries -->
     <copy todir="${tomcat.endorsed.dir}">
-      <fileset dir="${build.webapp}/WEB-INF/lib/endorsed">
-        <include name="*.jar"/>
-      </fileset>
+      <fileset dir="${build.webapp}/WEB-INF/lib/">
+        <include name="xercesImpl-*.jar"/>
+        <include name="xalan-*.jar"/>
+        <include name="jakarta-regexp-*.jar"/>
+        <include name="jakarta-bcel-*.jar"/>
     </copy>
+    <copy file="${build.webapp}/WEB-INF/lib/xml-apis.jar" todir="${tomcat.endorsed.dir}"/>
   </target>
 
   <!-- ============================================================ -->



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


Re: svn commit: r327197 - /lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Posted by Thorsten Scherler <th...@apache.org>.
Thx, Josias.

I fixed it.

El vie, 21-10-2005 a las 16:56 +0200, Josias Thoeny escribió:
> On Fri, 2005-10-21 at 14:17 +0000, thorsten@apache.org wrote:
> > Author: thorsten
> > Date: Fri Oct 21 07:17:46 2005
> > New Revision: 327197
> > 
> > URL: http://svn.apache.org/viewcvs?rev=327197&view=rev
> > Log:
> > reverted unreleated changes of my last commit
> > 
> > Modified:
> >     lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> > 
> > Modified: lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> > URL: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml?rev=327197&r1=327196&r2=327197&view=diff
> > ==============================================================================
> > --- lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml (original)
> > +++ lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml Fri Oct 21 07:17:46 2005
> > @@ -215,10 +215,13 @@
> >  
> >      <!-- Copy endorsed libraries -->
> >      <copy todir="${tomcat.endorsed.dir}">
> > -      <fileset dir="${build.webapp}/WEB-INF/lib/endorsed">
> > -        <include name="*.jar"/>
> > -      </fileset>
> > +      <fileset dir="${build.webapp}/WEB-INF/lib/">
> > +        <include name="xercesImpl-*.jar"/>
> > +        <include name="xalan-*.jar"/>
> > +        <include name="jakarta-regexp-*.jar"/>
> > +        <include name="jakarta-bcel-*.jar"/>
> 
> A </fileset> is missing here.
> 
> - Josias
> 
> >      </copy>
> > +    <copy file="${build.webapp}/WEB-INF/lib/xml-apis.jar" todir="${tomcat.endorsed.dir}"/>
> >    </target>
> >  
> >    <!-- ============================================================ -->
> > 
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
> > For additional commands, e-mail: commits-help@lenya.apache.org
> > 
> > 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lenya.apache.org
> For additional commands, e-mail: dev-help@lenya.apache.org
> 
-- 
thorsten

"Together we stand, divided we fall!" 
Hey you (Pink Floyd)


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


Re: svn commit: r327197 - /lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Posted by Josias Thoeny <jo...@wyona.com>.
On Fri, 2005-10-21 at 14:17 +0000, thorsten@apache.org wrote:
> Author: thorsten
> Date: Fri Oct 21 07:17:46 2005
> New Revision: 327197
> 
> URL: http://svn.apache.org/viewcvs?rev=327197&view=rev
> Log:
> reverted unreleated changes of my last commit
> 
> Modified:
>     lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> 
> Modified: lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
> URL: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml?rev=327197&r1=327196&r2=327197&view=diff
> ==============================================================================
> --- lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml (original)
> +++ lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml Fri Oct 21 07:17:46 2005
> @@ -215,10 +215,13 @@
>  
>      <!-- Copy endorsed libraries -->
>      <copy todir="${tomcat.endorsed.dir}">
> -      <fileset dir="${build.webapp}/WEB-INF/lib/endorsed">
> -        <include name="*.jar"/>
> -      </fileset>
> +      <fileset dir="${build.webapp}/WEB-INF/lib/">
> +        <include name="xercesImpl-*.jar"/>
> +        <include name="xalan-*.jar"/>
> +        <include name="jakarta-regexp-*.jar"/>
> +        <include name="jakarta-bcel-*.jar"/>

A </fileset> is missing here.

- Josias

>      </copy>
> +    <copy file="${build.webapp}/WEB-INF/lib/xml-apis.jar" todir="${tomcat.endorsed.dir}"/>
>    </target>
>  
>    <!-- ============================================================ -->
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
> For additional commands, e-mail: commits-help@lenya.apache.org
> 
> 


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