pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <name>JFreeChart</name>
  8. <artifactId>jfreechart</artifactId>
  9. <groupId>org.jfree</groupId>
  10. <version>1.0.19</version>
  11. <packaging>jar</packaging>
  12. <!-- this is required to host it on Sonatype's OSSRH -->
  13. <parent>
  14. <groupId>org.sonatype.oss</groupId>
  15. <artifactId>oss-parent</artifactId>
  16. <version>9</version>
  17. </parent>
  18. <organization>
  19. <name>JFree.org</name>
  20. <url>http://www.jfree.org/</url>
  21. </organization>
  22. <inceptionYear>2001</inceptionYear>
  23. <description>
  24. JFreeChart is a class library, written in Java, for generating charts.
  25. Utilising the Java2D APIs, it currently supports bar charts, pie charts,
  26. line charts, XY-plots and time series plots.
  27. </description>
  28. <url>http://www.jfree.org/jfreechart/</url>
  29. <issueManagement>
  30. <url>http://sourceforge.net/tracker/?group_id=15494</url>
  31. </issueManagement>
  32. <scm>
  33. <connection>scm:svn:https://jfreechart.svn.sourceforge.net/svnroot/jfreechart jfreechart</connection>
  34. <url>http://jfreechart.svn.sourceforge.net/viewvc/jfreechart/</url>
  35. </scm>
  36. <mailingLists>
  37. <mailingList>
  38. <name>JFreeChart Developer List</name>
  39. <subscribe>
  40. jfreechart-dev-request@lists.sourceforge.net?subject=subscribe
  41. </subscribe>
  42. <unsubscribe>
  43. jfreechart-dev-request@lists.sourceforge.net?subject=unsubscribe
  44. </unsubscribe>
  45. <archive>
  46. http://sourceforge.net/mailarchive/forum.php?forum=jfreechart-dev
  47. </archive>
  48. </mailingList>
  49. </mailingLists>
  50. <developers>
  51. <!--
  52. For an up to date list of developers and contributors have a look at
  53. the project info implementations.
  54. -->
  55. </developers>
  56. <licenses>
  57. <license>
  58. <name>GNU Lesser General Public Licence</name>
  59. <url>http://www.gnu.org/licenses/lgpl.txt</url>
  60. <distribution>repo</distribution>
  61. </license>
  62. </licenses>
  63. <dependencies>
  64. <dependency>
  65. <groupId>org.jfree</groupId>
  66. <artifactId>jcommon</artifactId>
  67. <version>1.0.23</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.servlet</groupId>
  71. <artifactId>servlet-api</artifactId>
  72. <version>2.5</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>junit</groupId>
  77. <artifactId>junit</artifactId>
  78. <version>4.11</version>
  79. <scope>test</scope>
  80. </dependency>
  81. </dependencies>
  82. <distributionManagement>
  83. <snapshotRepository>
  84. <id>ossrh</id>
  85. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  86. </snapshotRepository>
  87. </distributionManagement>
  88. <build>
  89. <sourceDirectory>source</sourceDirectory>
  90. <testSourceDirectory>tests</testSourceDirectory>
  91. <resources>
  92. <resource>
  93. <directory>source</directory>
  94. <includes>
  95. <include>**/*.properties</include>
  96. <include>**/*.jpg</include>
  97. <include>**/*.</include>
  98. </includes>
  99. </resource>
  100. </resources>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-compiler-plugin</artifactId>
  105. <version>3.1</version>
  106. <configuration>
  107. <source>${project.source.level}</source>
  108. <target>${project.target.level}</target>
  109. <encoding>${project.build.sourceEncoding}</encoding>
  110. <excludes>
  111. <exclude>org/jfree/chart/fx/**</exclude>
  112. </excludes>
  113. </configuration>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-surefire-plugin</artifactId>
  118. <version>2.10</version>
  119. <configuration>
  120. <includes>
  121. <include>**/*Test.java</include>
  122. </includes>
  123. <excludes>
  124. <exclude>**/JFreeChartTestSuite.java</exclude>
  125. <exclude>**/*PackageTests.java</exclude>
  126. </excludes>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-resources-plugin</artifactId>
  132. <version>2.6</version>
  133. <configuration>
  134. <encoding>${project.build.sourceEncoding}</encoding>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-gpg-plugin</artifactId>
  140. <version>1.5</version>
  141. <executions>
  142. <execution>
  143. <id>sign-artifacts</id>
  144. <phase>verify</phase>
  145. <goals>
  146. <goal>sign</goal>
  147. </goals>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.sonatype.plugins</groupId>
  153. <artifactId>nexus-staging-maven-plugin</artifactId>
  154. <version>1.6.2</version>
  155. <extensions>true</extensions>
  156. <configuration>
  157. <serverId>ossrh</serverId>
  158. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  159. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  160. </configuration>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.codehaus.mojo</groupId>
  164. <artifactId>cobertura-maven-plugin</artifactId>
  165. <version>2.5.1</version>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.codehaus.mojo</groupId>
  169. <artifactId>animal-sniffer-maven-plugin</artifactId>
  170. <version>1.7</version>
  171. <configuration>
  172. <signature>
  173. <groupId>org.codehaus.mojo.signature</groupId>
  174. <artifactId>java16</artifactId>
  175. <version>1.0</version>
  176. </signature>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-site-plugin</artifactId>
  182. <version>3.4</version>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. <reporting>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-javadoc-plugin</artifactId>
  191. <version>2.9.1</version>
  192. </plugin>
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-surefire-report-plugin</artifactId>
  196. <version>2.8</version>
  197. </plugin>
  198. <plugin>
  199. <groupId>org.apache.maven.plugins</groupId>
  200. <artifactId>maven-jxr-plugin</artifactId>
  201. <version>2.3</version>
  202. </plugin>
  203. <plugin>
  204. <groupId>org.codehaus.mojo</groupId>
  205. <artifactId>cobertura-maven-plugin</artifactId>
  206. <version>2.5.1</version>
  207. </plugin>
  208. </plugins>
  209. </reporting>
  210. <properties>
  211. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  212. <project.source.level>1.6</project.source.level>
  213. <project.target.level>1.6</project.target.level>
  214. </properties>
  215. <profiles>
  216. <profile>
  217. <id>release</id>
  218. <build>
  219. <plugins>
  220. <plugin>
  221. <inherited>true</inherited>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-javadoc-plugin</artifactId>
  224. <version>2.9.1</version>
  225. <executions>
  226. <execution>
  227. <id>attach-javadoc</id>
  228. <goals>
  229. <goal>jar</goal>
  230. </goals>
  231. </execution>
  232. </executions>
  233. <configuration>
  234. <sourceFileExcludes>
  235. <exclude>org/jfree/chart/fx/**</exclude>
  236. </sourceFileExcludes>
  237. </configuration>
  238. </plugin>
  239. <plugin>
  240. <groupId>org.apache.maven.plugins</groupId>
  241. <artifactId>maven-source-plugin</artifactId>
  242. <version>2.2.1</version>
  243. <executions>
  244. <execution>
  245. <id>attach-sources</id>
  246. <goals>
  247. <goal>jar-no-fork</goal>
  248. </goals>
  249. </execution>
  250. </executions>
  251. </plugin>
  252. </plugins>
  253. </build>
  254. </profile>
  255. </profiles>
  256. </project>