Browse Source

FOP-2658: Compile JAIMonochromeBitmapConverter

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1765773 13f79535-47bb-0310-9956-ffa450edef68
pull/3/head
Simon Steiner 7 years ago
parent
commit
21e69e1110
9 changed files with 24 additions and 18 deletions
  1. 11
    10
      fop-core/pom.xml
  2. 1
    1
      fop-events/pom.xml
  3. 1
    1
      fop-sandbox/pom.xml
  4. 1
    1
      fop-servlet/pom.xml
  5. 1
    1
      fop-transcoder-allinone/pom.xml
  6. 1
    1
      fop-transcoder/pom.xml
  7. 1
    1
      fop-util/pom.xml
  8. 1
    1
      fop/pom.xml
  9. 6
    1
      pom.xml

+ 11
- 10
fop-core/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<properties>
@@ -102,6 +102,16 @@
<artifactId>fontbox</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai-core</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.sun.media</groupId>
<artifactId>jai-codec</artifactId>
<version>1.1.3</version>
</dependency>
<!-- test deps -->
<dependency>
<groupId>net.sf.offo</groupId>
@@ -277,15 +287,6 @@
</execution>
</executions>
</plugin>
<!-- compile exclusions -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>org/apache/fop/util/bitmap/JAIMonochromeBitmapConverter.java</exclude>
</excludes>
</configuration>
</plugin>
<!-- junit testing -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>

+ 1
- 1
fop-events/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop-sandbox/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop-servlet/pom.xml View File

@@ -11,7 +11,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop-transcoder-allinone/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop-transcoder/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop-util/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 1
- 1
fop/pom.xml View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
</parent>

<dependencies>

+ 6
- 1
pom.xml View File

@@ -4,12 +4,13 @@

<groupId>org.apache.xmlgraphics</groupId>
<artifactId>fop-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>${fop.version}</version>
<name>Apache FOP Parent</name>
<description>XML Graphics Format Object Processor</description>
<packaging>pom</packaging>

<properties>
<fop.version>2.2.0-SNAPSHOT</fop.version>
<antrun.plugin.version>1.8</antrun.plugin.version>
<avalon.version>4.3.1</avalon.version>
<batik.version>1.9.0-SNAPSHOT</batik.version>
@@ -120,6 +121,10 @@
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jboss.org</id>
<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
</repository>
</repositories>

<distributionManagement>

Loading…
Cancel
Save