Advertisement
IchGmbH

FOP-pom.xml

May 4th, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>ta</groupId>
  5.     <artifactId>fop</artifactId>
  6.     <version>1.0</version>
  7.     <build>
  8.         <sourceDirectory>src</sourceDirectory>
  9.         <testSourceDirectory>test</testSourceDirectory>
  10.         <plugins>
  11.             <plugin>
  12.                 <artifactId>maven-compiler-plugin</artifactId>
  13.                 <version>2.3.2</version>
  14.                 <configuration>
  15.                     <source>1.4</source>
  16.                     <target>1.4</target>
  17.                 </configuration>
  18.             </plugin>
  19.         </plugins>
  20.     </build>
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>org.apache.xmlgraphics</groupId>
  24.             <artifactId>fop</artifactId>
  25.             <version>1.0</version>
  26.             <type>jar</type>
  27.             <optional>false</optional>
  28.         </dependency>
  29.     </dependencies>
  30. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement