[Yanel-commits] rev 42280 - public/yanel/trunk/src/contributions/resources/pdf/src/build

guillaume at wyona.com guillaume at wyona.com
Mon Apr 6 16:55:52 CEST 2009


Author: guillaume
Date: 2009-04-06 16:55:51 +0200 (Mon, 06 Apr 2009)
New Revision: 42280

Modified:
   public/yanel/trunk/src/contributions/resources/pdf/src/build/dependencies.xml
Log:
The PDF resource did not build with Java 6 (nobody noticed because of Maven artifact caches...).
Drop support for Java 1.4: we now always the JDK 1.5 version of FOP which should work for Java 5/6/whatever comes next.

Issue: 6575


Modified: public/yanel/trunk/src/contributions/resources/pdf/src/build/dependencies.xml
===================================================================
--- public/yanel/trunk/src/contributions/resources/pdf/src/build/dependencies.xml	2009-04-06 14:40:01 UTC (rev 42279)
+++ public/yanel/trunk/src/contributions/resources/pdf/src/build/dependencies.xml	2009-04-06 14:55:51 UTC (rev 42280)
@@ -18,18 +18,10 @@
       <dependency groupId="javax.servlet" artifactId="servlet-api" version="2.3"/>
     </artifact:dependencies>
 
-    <condition property="jdk.version" value="jdk14">
-      <equals arg1="${ant.java.version}" arg2="1.4"/>
-    </condition>
-    <condition property="jdk.version" value="jdk15">
-      <equals arg1="${ant.java.version}" arg2="1.5"/>
-    </condition>
-    <!-- TODO: What about other versions?! -->
-
     <artifact:dependencies pathId="maven2.resource.classpath" filesetId="maven2.resource.fileset">
       <remoteRepository refid="wyona.remote.repository"/>
 
-      <dependency groupId="fop" artifactId="fop" version="0.93" classifier="${jdk.version}"/>
+      <dependency groupId="fop" artifactId="fop" version="0.93" classifier="jdk15"/>
 
       <!--<dependency groupId="fop" artifactId="fop" version="0.20.5"/>-->
 



More information about the Yanel-commits mailing list