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

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