Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  47. <mainClass>org.apache.fop.cli.Main</mainClass>
  48. </manifest>
  49. <manifestEntries>
  50. <SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
  51. <SpecificationVersion>1.1</SpecificationVersion>
  52. <SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
  53. <SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
  54. </manifestEntries>
  55. </archive>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-dependency-plugin</artifactId>
  60. <executions>
  61. <execution>
  62. <phase>install</phase>
  63. <goals>
  64. <goal>copy-dependencies</goal>
  65. </goals>
  66. <configuration>
  67. <outputDirectory>${project.build.directory}</outputDirectory>
  68. <includeArtifactIds>fop-core,fop-util,fop-events</includeArtifactIds>
  69. </configuration>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>