You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2007/09/07 18:30:30 UTC

svn commit: r573627 - /incubator/abdera/java/branches/0.3.0-incubating/build/build.xml

Author: jmsnell
Date: Fri Sep  7 09:30:18 2007
New Revision: 573627

URL: http://svn.apache.org/viewvc?rev=573627&view=rev
Log:
Retro the i18n jar

Modified:
    incubator/abdera/java/branches/0.3.0-incubating/build/build.xml

Modified: incubator/abdera/java/branches/0.3.0-incubating/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/branches/0.3.0-incubating/build/build.xml?rev=573627&r1=573626&r2=573627&view=diff
==============================================================================
--- incubator/abdera/java/branches/0.3.0-incubating/build/build.xml (original)
+++ incubator/abdera/java/branches/0.3.0-incubating/build/build.xml Fri Sep  7 09:30:18 2007
@@ -480,6 +480,7 @@
         <include name="**/legal/*" />
         <exclude name="**/json/*" />
         <exclude name="**/*.${version}.jar" />
+        <exclude name="**/abdera-i18n-${i18n.version}.jar" />
         <exclude name="**/${bouncycastle.jar}" />
         <exclude name="**/${geronimo.servlet.jar}" />
         <exclude name="**/${jetty-util.jar}" />
@@ -516,7 +517,7 @@
         <exclude name="**/.project" />
         <exclude name="**/feedvalidator.org/**/*" />
         <exclude name="**/json/src/**/*" />
-        <exclude name="**/dependencies/work/json/**/*" />
+        <exclude name="dependencies/work/**/*" />
       </fileset>
     </copy>
     <zip destfile="${basedir}/${ant.project.name}.${version}.src.zip" basedir="${work}/dist/" />
@@ -587,6 +588,8 @@
     <property name="retro_server.jar" value="${dist}/${ant.project.name}.server.${version}.retro.jar" />
     <property name="retro_client.jar" value="${dist}/${ant.project.name}.client.${version}.retro.jar" />
     <property name="retro_spring.jar" value="${dist}/${ant.project.name}.spring.${version}.retro.jar" />
+    <property name="retro_i18n.jar" value="${dist}/lib/abdera-i18n-${i18n.version}.retro.jar" />
+    
     <condition property="do.download.retroweaver">
       <not>
         <available file="${retrozip}" />
@@ -612,6 +615,9 @@
     <java classpathref="jar.retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
       <arg line="-jar &quot;${client.jar}&quot; &quot;${retro_client.jar}&quot;" />
     </java>
+    <java classpathref="jar.retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
+      <arg line="-jar &quot;${i18n.jar}&quot; &quot;${retro_i18n.jar}&quot;" />
+    </java>    
     <antcall target="retro.extensions" />
     <antcall target="retro.security" />
     <antcall target="retro.spring" />