Heya

To make it easier to work with fop-pdf-image in my code, I've put together a quick Maven pom file for it, since it's only distributed as a standalone archive. It adds the required pdfbox dependency automatically as well as providing metadata.

Jeremias: Feel free to pop this in the source and binary distribution when you do a 2.0.1 to make it easier for other Maven users, if you want to.

I know I should really use the ant maven integration to generate a pom from build.properties, etc, but my ant-wrangling is severely out of date.

--
Craig Ringer
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"; xmlns="http://maven.apache.org/POM/4.0.0";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
  <!-- Install to your local repo with mvn install:install-file -Dfile=fop-pdf-images-2.0.0.jar -DpomFile=fop-pdf-images-2.0.0.pom -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.fop</groupId>
  <artifactId>fop-pdf-images</artifactId>
  <version>2.0.0</version>
  <description>FOP pdf-image extension by Jeremias Märki et al</description>
  <developers>
    <developer><name>Jeremias Märki</name></developer>
    <developer><name>Krister Wicksell</name></developer>
    <developer><name>Vincent Hennebert</name></developer>
  </developers>
  <url>http://www.jeremias-maerki.ch/development/fop/index.html</url>
  <dependencies>
    <dependency>
      <groupId>org.apache.pdfbox</groupId>
      <artifactId>pdfbox</artifactId>
      <version>1.6.0</version>
    </dependency>
  </dependencies>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to