You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ss...@apache.org on 2020/05/05 09:34:12 UTC

svn commit: r1877383 - in /xmlgraphics/fop/branches/fop-2_5: ./ fop-core/ fop-core/src/main/java/org/apache/fop/fonts/ fop-core/src/test/java/org/apache/fop/visual/ fop-events/ fop-sandbox/ fop-servlet/ fop-transcoder-allinone/ fop-transcoder/ fop-util...

Author: ssteiner
Date: Tue May  5 09:34:11 2020
New Revision: 1877383

URL: http://svn.apache.org/viewvc?rev=1877383&view=rev
Log:
Update for release

Added:
    xmlgraphics/fop/branches/fop-2_5/fop/lib/batik-all-1.13.jar   (with props)
    xmlgraphics/fop/branches/fop-2_5/fop/lib/xmlgraphics-commons-2.4.jar   (with props)
Removed:
    xmlgraphics/fop/branches/fop-2_5/fop/lib/batik-all-1.11.0-SNAPSHOT.jar
    xmlgraphics/fop/branches/fop-2_5/fop/lib/xmlgraphics-commons-svn-trunk.jar
Modified:
    xmlgraphics/fop/branches/fop-2_5/fop-core/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-core/src/main/java/org/apache/fop/fonts/FontType.java
    xmlgraphics/fop/branches/fop-2_5/fop-core/src/test/java/org/apache/fop/visual/BitmapProducerJava2D.java
    xmlgraphics/fop/branches/fop-2_5/fop-events/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-sandbox/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-servlet/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-transcoder-allinone/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-transcoder/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop-util/pom.xml
    xmlgraphics/fop/branches/fop-2_5/fop/build.xml
    xmlgraphics/fop/branches/fop-2_5/fop/pom.xml
    xmlgraphics/fop/branches/fop-2_5/pom.xml

Modified: xmlgraphics/fop/branches/fop-2_5/fop-core/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-core/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-core/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-core/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <properties>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-core/src/main/java/org/apache/fop/fonts/FontType.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-core/src/main/java/org/apache/fop/fonts/FontType.java?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-core/src/main/java/org/apache/fop/fonts/FontType.java (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-core/src/main/java/org/apache/fop/fonts/FontType.java Tue May  5 09:34:11 2020
@@ -61,7 +61,6 @@ public class FontType {
      * Construct a font type.
      * @param name a font type name
      * @param value a font type value
-     * @see org.apache.avalon.framework.Enum#Enum(String)
      */
     protected FontType(String name, int value) {
         this.name = name;

Modified: xmlgraphics/fop/branches/fop-2_5/fop-core/src/test/java/org/apache/fop/visual/BitmapProducerJava2D.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-core/src/test/java/org/apache/fop/visual/BitmapProducerJava2D.java?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-core/src/test/java/org/apache/fop/visual/BitmapProducerJava2D.java (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-core/src/test/java/org/apache/fop/visual/BitmapProducerJava2D.java Tue May  5 09:34:11 2020
@@ -66,7 +66,6 @@ public class BitmapProducerJava2D extend
         fopFactory = FopFactory.newInstance(baseUri);
     }
 
-    /** @see org.apache.avalon.framework.configuration.Configurable */
     public void configure(Configuration cfg) throws ConfigurationException {
         this.deleteTempFiles = cfg.getChild("delete-temp-files").getValueAsBoolean(true);
     }

Modified: xmlgraphics/fop/branches/fop-2_5/fop-events/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-events/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-events/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-events/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-sandbox/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-sandbox/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-sandbox/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-sandbox/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-servlet/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-servlet/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-servlet/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-servlet/pom.xml Tue May  5 09:34:11 2020
@@ -11,7 +11,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-transcoder-allinone/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-transcoder-allinone/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-transcoder-allinone/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-transcoder-allinone/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-transcoder/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-transcoder/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-transcoder/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-transcoder/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop-util/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop-util/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop-util/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop-util/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/fop/build.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop/build.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop/build.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop/build.xml Tue May  5 09:34:11 2020
@@ -154,7 +154,7 @@ list of possible build targets.
   <property name="Name" value="Apache FOP"/>
   <property name="name" value="fop"/>
   <property name="NAME" value="FOP"/>
-  <property name="version" value="2.5.0-SNAPSHOT"/>
+  <property name="version" value="2.5"/>
   <property name="year" value="1999-2020"/>
   <property name="javac.debug" value="on"/>
   <property name="javac.optimize" value="off"/>

Added: xmlgraphics/fop/branches/fop-2_5/fop/lib/batik-all-1.13.jar
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop/lib/batik-all-1.13.jar?rev=1877383&view=auto
==============================================================================
Binary file - no diff available.

Propchange: xmlgraphics/fop/branches/fop-2_5/fop/lib/batik-all-1.13.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: xmlgraphics/fop/branches/fop-2_5/fop/lib/xmlgraphics-commons-2.4.jar
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop/lib/xmlgraphics-commons-2.4.jar?rev=1877383&view=auto
==============================================================================
Binary file - no diff available.

Propchange: xmlgraphics/fop/branches/fop-2_5/fop/lib/xmlgraphics-commons-2.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: xmlgraphics/fop/branches/fop-2_5/fop/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/fop/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/fop/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/fop/pom.xml Tue May  5 09:34:11 2020
@@ -10,7 +10,7 @@
   <parent>
     <groupId>org.apache.xmlgraphics</groupId>
     <artifactId>fop-parent</artifactId>
-    <version>2.5.0-SNAPSHOT</version>
+    <version>2.5</version>
   </parent>
 
   <dependencies>

Modified: xmlgraphics/fop/branches/fop-2_5/pom.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/branches/fop-2_5/pom.xml?rev=1877383&r1=1877382&r2=1877383&view=diff
==============================================================================
--- xmlgraphics/fop/branches/fop-2_5/pom.xml (original)
+++ xmlgraphics/fop/branches/fop-2_5/pom.xml Tue May  5 09:34:11 2020
@@ -4,7 +4,7 @@
 
   <groupId>org.apache.xmlgraphics</groupId>
   <artifactId>fop-parent</artifactId>
-  <version>2.5.0-SNAPSHOT</version>
+  <version>2.5</version>
   <name>Apache FOP Parent</name>
   <description>XML Graphics Format Object Processor</description>
   <packaging>pom</packaging>
@@ -12,7 +12,7 @@
 
   <properties>
     <antrun.plugin.version>1.8</antrun.plugin.version>
-    <batik.version>1.11.0-SNAPSHOT</batik.version>
+    <batik.version>1.13</batik.version>
     <build.helper.plugin.version>1.9.1</build.helper.plugin.version>
     <checkstyle.plugin.version>2.14</checkstyle.plugin.version>
     <commons.io.version>1.3.1</commons.io.version>
@@ -29,7 +29,7 @@
     <surefire.plugin.version>2.18.1</surefire.plugin.version>
     <war.plugin.version>2.2</war.plugin.version>
     <xml.plugin.version>1.0.1</xml.plugin.version>
-    <xmlgraphics.commons.version>2.4.0-SNAPSHOT</xmlgraphics.commons.version>
+    <xmlgraphics.commons.version>2.4</xmlgraphics.commons.version>
     <xmlunit.version>1.2</xmlunit.version>
     <jdk.path>${env.JAVA_HOME}</jdk.path>
   </properties>



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