Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pom.xml 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>${junit4.version}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.junit.vintage</groupId>
  39. <artifactId>junit-vintage-engine</artifactId>
  40. <version>${junit.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-jar-plugin</artifactId>
  49. <configuration>
  50. <archive>
  51. <manifest>
  52. <addClasspath>true</addClasspath>
  53. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  54. <mainClass>org.apache.fop.cli.Main</mainClass>
  55. </manifest>
  56. <manifestEntries>
  57. <SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
  58. <SpecificationVersion>1.1</SpecificationVersion>
  59. <SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
  60. <SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
  61. </manifestEntries>
  62. </archive>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-dependency-plugin</artifactId>
  67. <executions>
  68. <execution>
  69. <phase>install</phase>
  70. <goals>
  71. <goal>copy-dependencies</goal>
  72. </goals>
  73. <configuration>
  74. <outputDirectory>${project.build.directory}</outputDirectory>
  75. <includeArtifactIds>fop-core,fop-util,fop-events</includeArtifactIds>
  76. </configuration>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>