pdfboxgraphics2d-parent-0.30.pom 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <name>PDFBox-Graphics2d - Parent</name>
  5. <description>Graphics2D Bridge for Apache PDFBox</description>
  6. <groupId>de.rototor.pdfbox</groupId>
  7. <artifactId>pdfboxgraphics2d-parent</artifactId>
  8. <version>0.30</version>
  9. <packaging>pom</packaging>
  10. <url>https://github.com/rototor/pdfbox-graphics2d</url>
  11. <licenses>
  12. <license>
  13. <name>Apache License, Version 2.0</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  15. <distribution>repo</distribution>
  16. </license>
  17. </licenses>
  18. <modules>
  19. <module>graphics2d</module>
  20. <module>extended-tests</module>
  21. </modules>
  22. <developers>
  23. <developer>
  24. <id>rototor</id>
  25. <name>Emmeran Seehuber</name>
  26. <email>rototor@rototor.de</email>
  27. <url>http://www.rototor.de</url>
  28. <roles>
  29. <role>architect</role>
  30. <role>developer</role>
  31. </roles>
  32. <timezone>Europe/Berlin</timezone>
  33. </developer>
  34. </developers>
  35. <scm>
  36. <url>https://github.com/rototor/pdfbox-graphics2d</url>
  37. <connection>scm:git:https://github.com/rototor/pdfbox-graphics2d.git</connection>
  38. <tag>pdfboxgraphics2d-parent-0.30</tag>
  39. </scm>
  40. <distributionManagement>
  41. <snapshotRepository>
  42. <id>ossrh</id>
  43. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  44. </snapshotRepository>
  45. <repository>
  46. <id>ossrh</id>
  47. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  48. </repository>
  49. </distributionManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.apache.pdfbox</groupId>
  53. <artifactId>pdfbox</artifactId>
  54. <version>2.0.22</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <version>4.13.1</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <!-- This dependencies are only needed for the test drivers -->
  63. <dependency>
  64. <groupId>org.apache.xmlgraphics</groupId>
  65. <artifactId>batik-swing</artifactId>
  66. <version>1.13</version>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.xmlgraphics</groupId>
  71. <artifactId>xmlgraphics-commons</artifactId>
  72. <version>2.4</version>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.twelvemonkeys.imageio</groupId>
  77. <artifactId>imageio-jpeg</artifactId>
  78. <version>3.4.1</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.jfree</groupId>
  83. <artifactId>jfreechart</artifactId>
  84. <version>1.0.19</version>
  85. <scope>test</scope>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <version>3.8.0</version>
  94. <configuration>
  95. <source>1.6</source>
  96. <target>1.6</target>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-gpg-plugin</artifactId>
  102. <version>1.6</version>
  103. <executions>
  104. <execution>
  105. <id>sign-artifacts</id>
  106. <phase>verify</phase>
  107. <goals>
  108. <goal>sign</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-source-plugin</artifactId>
  116. <version>3.0.1</version>
  117. <executions>
  118. <execution>
  119. <id>attach-sources</id>
  120. <goals>
  121. <goal>jar-no-fork</goal>
  122. </goals>
  123. </execution>
  124. </executions>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-javadoc-plugin</artifactId>
  129. <version>3.1.0</version>
  130. <configuration>
  131. <source>8</source>
  132. </configuration>
  133. <executions>
  134. <execution>
  135. <id>attach-javadocs</id>
  136. <goals>
  137. <goal>jar</goal>
  138. </goals>
  139. </execution>
  140. </executions>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.sonatype.plugins</groupId>
  144. <artifactId>nexus-staging-maven-plugin</artifactId>
  145. <version>1.6.7</version>
  146. <extensions>true</extensions>
  147. <configuration>
  148. <serverId>ossrh</serverId>
  149. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  150. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-release-plugin</artifactId>
  156. <version>2.5.3</version>
  157. <configuration>
  158. <autoVersionSubmodules>true</autoVersionSubmodules>
  159. <useReleaseProfile>false</useReleaseProfile>
  160. <releaseProfiles>release</releaseProfiles>
  161. <goals>deploy</goals>
  162. <pushChanges>false</pushChanges>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-jar-plugin</artifactId>
  168. <version>3.1.2</version>
  169. <configuration>
  170. <archive>
  171. <manifestEntries>
  172. <Automatic-Module-Name>de.rototor.pdfbox.graphics2d</Automatic-Module-Name>
  173. </manifestEntries>
  174. </archive>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. <properties>
  180. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  181. </properties>
  182. </project>