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 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.healthmarketscience</groupId>
  5. <artifactId>openhms-parent</artifactId>
  6. <version>2.0.2</version>
  7. </parent>
  8. <groupId>com.healthmarketscience.jackcess</groupId>
  9. <artifactId>jackcess</artifactId>
  10. <name>Jackcess</name>
  11. <description>A pure Java library for reading from and writing to MS Access databases.</description>
  12. <version>3.5.2-SNAPSHOT</version>
  13. <url>https://jackcess.sourceforge.io</url>
  14. <inceptionYear>2005</inceptionYear>
  15. <developers>
  16. <developer>
  17. <name>Tim McCune</name>
  18. <id>javajedi</id>
  19. <email>javajedi@users.sf.net</email>
  20. <roles>
  21. <role>Original author and project founder</role>
  22. </roles>
  23. <timezone>-5</timezone>
  24. </developer>
  25. <developer>
  26. <name>James Ahlborn</name>
  27. <id>jahlborn</id>
  28. <email>jahlborn@users.sf.net</email>
  29. <roles>
  30. <role>Owner</role>
  31. </roles>
  32. <timezone>-5</timezone>
  33. </developer>
  34. </developers>
  35. <contributors>
  36. <contributor>
  37. <name>Rob Di Marco</name>
  38. <roles>
  39. <role>Added ability to import delimited text into new tables</role>
  40. </roles>
  41. <timezone>-5</timezone>
  42. </contributor>
  43. <contributor>
  44. <name>Mitchell J. Friedman</name>
  45. <roles>
  46. <role>Added support for additional JDBC data types</role>
  47. </roles>
  48. </contributor>
  49. <contributor>
  50. <name>Jon Iles</name>
  51. <roles>
  52. <role>Added support for reading table definitions that span multiple
  53. pages</role>
  54. </roles>
  55. </contributor>
  56. <contributor>
  57. <name>James Schopp</name>
  58. <roles>
  59. <role>Added support for reading currency columns</role>
  60. </roles>
  61. </contributor>
  62. <contributor>
  63. <name>Patricia Donaldson</name>
  64. <roles>
  65. <role>Contributed RowFilter class</role>
  66. </roles>
  67. </contributor>
  68. <contributor>
  69. <name>Dan Rollo</name>
  70. <email>bhamail@users.sf.net</email>
  71. <organization>Composite Software, Inc.</organization>
  72. <roles>
  73. <role>Added support for new DB file formats (2003/2007)</role>
  74. </roles>
  75. <timezone>-5</timezone>
  76. </contributor>
  77. <contributor>
  78. <name>F. Gerbig</name>
  79. <roles>
  80. <role>added ExportUtil, contributed some of the code for Jet3
  81. read-only support</role>
  82. </roles>
  83. </contributor>
  84. <contributor>
  85. <name>Lorenzo Carrara</name>
  86. <roles>
  87. <role>Reverse engineered the attachment data encoding.</role>
  88. </roles>
  89. </contributor>
  90. <contributor>
  91. <name>Gordon Thompson</name>
  92. <roles>
  93. <role>Contributed to cookbook.</role>
  94. </roles>
  95. </contributor>
  96. <contributor>
  97. <name>Gabriele Favalessa</name>
  98. <roles>
  99. <role>Fixed various query generation issues.</role>
  100. </roles>
  101. </contributor>
  102. </contributors>
  103. <issueManagement>
  104. <system>SourceForge2</system>
  105. <url>https://sourceforge.net/p/jackcess/bugs/</url>
  106. </issueManagement>
  107. <scm>
  108. <connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/trunk/</connection>
  109. <!-- read/write svn connection -->
  110. <developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcess/code/jackcess/trunk/</developerConnection>
  111. <url>http://svn.code.sf.net/p/jackcess/code/jackcess/trunk/</url>
  112. </scm>
  113. <build>
  114. <defaultGoal>install</defaultGoal>
  115. <pluginManagement>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-surefire-plugin</artifactId>
  120. <configuration>
  121. <forkMode>once</forkMode>
  122. <parallel>classes</parallel>
  123. <threadCount>2</threadCount>
  124. <systemProperties>
  125. <property>
  126. <name>java.util.logging.config.file</name>
  127. <value>logging_test.properties</value>
  128. </property>
  129. <property>
  130. <name>com.healthmarketscience.jackcess.testFormats</name>
  131. <value>${jackcess.testFormats}</value>
  132. </property>
  133. </systemProperties>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </pluginManagement>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.felix</groupId>
  141. <artifactId>maven-bundle-plugin</artifactId>
  142. <extensions>true</extensions>
  143. <configuration>
  144. <instructions>
  145. </instructions>
  146. </configuration>
  147. <executions>
  148. <execution>
  149. <id>bundle-manifest</id>
  150. <phase>process-classes</phase>
  151. <goals>
  152. <goal>manifest</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-changes-plugin</artifactId>
  160. <configuration>
  161. <smtpHost>localhost</smtpHost>
  162. <toAddresses>
  163. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  164. </toAddresses>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-jar-plugin</artifactId>
  170. <configuration>
  171. <archive>
  172. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  173. </archive>
  174. </configuration>
  175. <executions>
  176. <execution>
  177. <id>build-test-jar</id>
  178. <goals>
  179. <goal>test-jar</goal>
  180. </goals>
  181. <configuration>
  182. <archive combine.self="override">
  183. </archive>
  184. </configuration>
  185. </execution>
  186. </executions>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-javadoc-plugin</artifactId>
  190. <configuration>
  191. <minmemory>128m</minmemory>
  192. <maxmemory>512</maxmemory>
  193. <links>
  194. <list>https://docs.oracle.com/javase/8/docs/api/</list>
  195. <list>http://docs.oracle.com/javaee/5/api/</list>
  196. </links>
  197. <source>1.8</source>
  198. <show>public</show>
  199. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  200. <tags>
  201. <tag>
  202. <name>usage</name>
  203. <placement>a</placement>
  204. <head>Usage:</head>
  205. </tag>
  206. </tags>
  207. <quiet>true</quiet>
  208. </configuration>
  209. </plugin>
  210. <plugin>
  211. <groupId>com.google.code.maven-replacer-plugin</groupId>
  212. <artifactId>replacer</artifactId>
  213. <executions>
  214. <execution>
  215. <id>with-regex2</id>
  216. <phase>site</phase>
  217. <goals>
  218. <goal>replace</goal>
  219. </goals>
  220. <configuration>
  221. <includes>
  222. <include>${project.build.directory}/site/apidocs/**/*.html</include>
  223. </includes>
  224. <regex>true</regex>
  225. <replacements>
  226. <replacement>
  227. <token>_general_(method|class|field)_</token>
  228. <value>&lt;span class="UsageGeneral"&gt;&lt;span class="UsageGeneralHeader"&gt;General&lt;/span&gt;: This $1 is general use.&lt;/span&gt;</value>
  229. </replacement>
  230. <replacement>
  231. <token>_intermediate_(method|class|field)_</token>
  232. <value>&lt;span class="UsageIntermediate"&gt;&lt;span class="UsageIntermediateHeader"&gt;Intermediate&lt;/span&gt;: This $1 requires moderate API knowledge.&lt;/span&gt;</value>
  233. </replacement>
  234. <replacement>
  235. <token>_advanced_(method|class|field)_</token>
  236. <value>&lt;span class="UsageAdvanced"&gt;&lt;span class="UsageAdvancedHeader"&gt;Advanced&lt;/span&gt;: This $1 is for advanced/internal use.&lt;/span&gt;</value>
  237. </replacement>
  238. </replacements>
  239. </configuration>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. </plugins>
  244. </build>
  245. <dependencies>
  246. <dependency>
  247. <groupId>org.apache.commons</groupId>
  248. <artifactId>commons-lang3</artifactId>
  249. <version>3.10</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>commons-logging</groupId>
  253. <artifactId>commons-logging</artifactId>
  254. <version>1.2</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>junit</groupId>
  258. <artifactId>junit</artifactId>
  259. <version>4.13.1</version>
  260. <scope>test</scope>
  261. </dependency>
  262. <!-- Only necessary if working with compound ole data -->
  263. <dependency>
  264. <groupId>org.apache.poi</groupId>
  265. <artifactId>poi</artifactId>
  266. <version>4.0.0</version>
  267. <optional>true</optional>
  268. </dependency>
  269. </dependencies>
  270. <reporting>
  271. <plugins>
  272. <plugin>
  273. <groupId>org.apache.maven.plugins</groupId>
  274. <artifactId>maven-pmd-plugin</artifactId>
  275. <configuration>
  276. <rulesets>
  277. <ruleset>${basedir}/src/site/pmd/custom-ruleset.xml</ruleset>
  278. </rulesets>
  279. </configuration>
  280. </plugin>
  281. <plugin>
  282. <artifactId>maven-changes-plugin</artifactId>
  283. <configuration>
  284. <issueLinkTemplatePerSystem>
  285. <SourceForge2Features>https://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features>
  286. <SourceForge2Patches>https://sourceforge.net/p/jackcess/patches/%ISSUE%</SourceForge2Patches>
  287. <GitHubPullRequests>https://github.com/jahlborn/jackcess/pull/%ISSUE%</GitHubPullRequests>
  288. </issueLinkTemplatePerSystem>
  289. </configuration>
  290. </plugin>
  291. <plugin>
  292. <artifactId>maven-javadoc-plugin</artifactId>
  293. <configuration>
  294. <minmemory>128m</minmemory>
  295. <maxmemory>512</maxmemory>
  296. <links>
  297. <list>https://docs.oracle.com/javase/8/docs/api/</list>
  298. <list>http://docs.oracle.com/javaee/5/api/</list>
  299. </links>
  300. <source>1.8</source>
  301. <show>public</show>
  302. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  303. <tags>
  304. <tag>
  305. <name>usage</name>
  306. <placement>a</placement>
  307. <head>Usage:</head>
  308. </tag>
  309. </tags>
  310. <quiet>true</quiet>
  311. </configuration>
  312. </plugin>
  313. <plugin>
  314. <groupId>org.codehaus.mojo</groupId>
  315. <artifactId>findbugs-maven-plugin</artifactId>
  316. <configuration>
  317. <excludeFilterFile>${basedir}/src/site/findbugs/exclude.xml</excludeFilterFile>
  318. </configuration>
  319. </plugin>
  320. </plugins>
  321. </reporting>
  322. <distributionManagement>
  323. <site>
  324. <id>jackcess-build-site</id>
  325. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  326. </site>
  327. </distributionManagement>
  328. </project>