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.

pom.xml 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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.3.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-assembly-plugin</artifactId>
  43. <executions>
  44. <execution>
  45. <id>package-all</id>
  46. <phase>package</phase>
  47. <goals>
  48. <goal>single</goal>
  49. </goals>
  50. <configuration>
  51. <addMavenDescriptor>false</addMavenDescriptor>
  52. <appendAssemblyId>false</appendAssemblyId>
  53. <archive>
  54. <manifest>
  55. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  56. <mainClass>org.apache.fop.cli.Main</mainClass>
  57. </manifest>
  58. <manifestEntries>
  59. <SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
  60. <SpecificationVersion>1.1</SpecificationVersion>
  61. <SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
  62. <SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
  63. </manifestEntries>
  64. </archive>
  65. <descriptors>
  66. <descriptor>src/tools/resources/assembly/assembly.xml</descriptor>
  67. </descriptors>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>