You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by Jan Tosovsky <j....@email.cz> on 2016/08/08 20:19:10 UTC

RE: Building from current TRUNK fails

On 2016-07-26 Jan Tosovsky wrote:
> On 2016-07-26 Andreas Delmelle wrote:
> > > On 2016-07-26 Jan Tosovsky wrote:
> > >
> > > (2) there is missing reference to JAI in
> > > o.a.f.util.bitmap.JAIMonochromeBitmapConverter.java
> > >
> > > Is there any reason JAI is not part of pom file?
> >
> > I know that one as well. What I usually do to make FOP compile 
> > after a fresh trunk checkout, is just delete that source file 
> > locally (i.e. just a regular "rm", not an "svn del").
> >
> 
> This is not actually a build blocker.

Ha, I've found this config in the POM file which explains why build doesn't
fail...

      <!-- compile exclusions -->
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <excludes>
 
<exclude>org/apache/fop/util/bitmap/JAIMonochromeBitmapConverter.java</exclu
de>
          </excludes>
        </configuration>
      </plugin>

Jan