You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.apache.xmlgraphics</groupId>
  5. <artifactId>fop</artifactId>
  6. <name>Apache FOP All-In-One</name>
  7. <description>XML Graphics Format Object Processor All-In-One</description>
  8. <parent>
  9. <groupId>org.apache.xmlgraphics</groupId>
  10. <artifactId>fop-parent</artifactId>
  11. <version>2.9.0-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <!-- fop deps -->
  15. <dependency>
  16. <groupId>${project.groupId}</groupId>
  17. <artifactId>fop-util</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>${project.groupId}</groupId>
  22. <artifactId>fop-events</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>${project.groupId}</groupId>
  27. <artifactId>fop-core</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <!-- test deps -->
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>${junit.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-jar-plugin</artifactId>
  43. <configuration>
  44. <archive>
  45. <manifest>
  46. <addClasspath>true</addClasspath>
  47. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  48. <mainClass>org.apache.fop.cli.Main</mainClass>
  49. </manifest>
  50. <manifestEntries>
  51. <SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
  52. <SpecificationVersion>1.1</SpecificationVersion>
  53. <SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
  54. <SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
  55. </manifestEntries>
  56. </archive>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-dependency-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <phase>install</phase>
  64. <goals>
  65. <goal>copy-dependencies</goal>
  66. </goals>
  67. <configuration>
  68. <outputDirectory>${project.build.directory}</outputDirectory>
  69. <includeArtifactIds>fop-core,fop-util,fop-events</includeArtifactIds>
  70. </configuration>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>