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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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. <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. <Automatic-Module-Name>com.healthmarketscience.jackcess</Automatic-Module-Name>
  146. </instructions>
  147. </configuration>
  148. <executions>
  149. <execution>
  150. <id>bundle-manifest</id>
  151. <phase>process-classes</phase>
  152. <goals>
  153. <goal>manifest</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.apache.maven.plugins</groupId>
  160. <artifactId>maven-changes-plugin</artifactId>
  161. <configuration>
  162. <smtpHost>localhost</smtpHost>
  163. <toAddresses>
  164. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  165. </toAddresses>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-jar-plugin</artifactId>
  171. <configuration>
  172. <archive>
  173. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  174. </archive>
  175. </configuration>
  176. <executions>
  177. <execution>
  178. <id>build-test-jar</id>
  179. <goals>
  180. <goal>test-jar</goal>
  181. </goals>
  182. <configuration>
  183. <archive combine.self="override">
  184. </archive>
  185. </configuration>
  186. </execution>
  187. </executions>
  188. </plugin>
  189. <plugin>
  190. <artifactId>maven-javadoc-plugin</artifactId>
  191. <configuration>
  192. <minmemory>128m</minmemory>
  193. <maxmemory>512</maxmemory>
  194. <links>
  195. <list>https://docs.oracle.com/javase/8/docs/api/</list>
  196. <list>https://docs.oracle.com/javaee/5/api/</list>
  197. </links>
  198. <source>1.8</source>
  199. <show>public</show>
  200. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  201. <tags>
  202. <tag>
  203. <name>usage</name>
  204. <placement>a</placement>
  205. <head>Usage:</head>
  206. </tag>
  207. </tags>
  208. <quiet>true</quiet>
  209. </configuration>
  210. </plugin>
  211. <plugin>
  212. <groupId>com.google.code.maven-replacer-plugin</groupId>
  213. <artifactId>replacer</artifactId>
  214. <executions>
  215. <execution>
  216. <id>with-regex2</id>
  217. <phase>site</phase>
  218. <goals>
  219. <goal>replace</goal>
  220. </goals>
  221. <configuration>
  222. <includes>
  223. <include>${project.build.directory}/site/apidocs/**/*.html</include>
  224. </includes>
  225. <regex>true</regex>
  226. <replacements>
  227. <replacement>
  228. <token>_general_(method|class|field)_</token>
  229. <value>&lt;span class="UsageGeneral"&gt;&lt;span class="UsageGeneralHeader"&gt;General&lt;/span&gt;: This $1 is general use.&lt;/span&gt;</value>
  230. </replacement>
  231. <replacement>
  232. <token>_intermediate_(method|class|field)_</token>
  233. <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>
  234. </replacement>
  235. <replacement>
  236. <token>_advanced_(method|class|field)_</token>
  237. <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>
  238. </replacement>
  239. </replacements>
  240. </configuration>
  241. </execution>
  242. </executions>
  243. </plugin>
  244. </plugins>
  245. </build>
  246. <dependencies>
  247. <dependency>
  248. <groupId>org.apache.commons</groupId>
  249. <artifactId>commons-lang3</artifactId>
  250. <version>3.10</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>commons-logging</groupId>
  254. <artifactId>commons-logging</artifactId>
  255. <version>1.2</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>junit</groupId>
  259. <artifactId>junit</artifactId>
  260. <version>4.13.2</version>
  261. <scope>test</scope>
  262. </dependency>
  263. <!-- Only necessary if working with compound ole data -->
  264. <dependency>
  265. <groupId>org.apache.poi</groupId>
  266. <artifactId>poi</artifactId>
  267. <version>4.1.1</version>
  268. <optional>true</optional>
  269. </dependency>
  270. </dependencies>
  271. <reporting>
  272. <plugins>
  273. <plugin>
  274. <groupId>org.apache.maven.plugins</groupId>
  275. <artifactId>maven-pmd-plugin</artifactId>
  276. <configuration>
  277. <rulesets>
  278. <ruleset>${basedir}/src/site/pmd/custom-ruleset.xml</ruleset>
  279. </rulesets>
  280. </configuration>
  281. </plugin>
  282. <plugin>
  283. <artifactId>maven-changes-plugin</artifactId>
  284. <configuration>
  285. <issueLinkTemplatePerSystem>
  286. <SourceForge2Features>https://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features>
  287. <SourceForge2Patches>https://sourceforge.net/p/jackcess/patches/%ISSUE%</SourceForge2Patches>
  288. <GitHubPullRequests>https://github.com/jahlborn/jackcess/pull/%ISSUE%</GitHubPullRequests>
  289. </issueLinkTemplatePerSystem>
  290. </configuration>
  291. </plugin>
  292. <plugin>
  293. <artifactId>maven-javadoc-plugin</artifactId>
  294. <configuration>
  295. <minmemory>128m</minmemory>
  296. <maxmemory>512</maxmemory>
  297. <links>
  298. <list>https://docs.oracle.com/javase/8/docs/api/</list>
  299. <list>https://docs.oracle.com/javaee/5/api/</list>
  300. </links>
  301. <source>1.8</source>
  302. <show>public</show>
  303. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  304. <tags>
  305. <tag>
  306. <name>usage</name>
  307. <placement>a</placement>
  308. <head>Usage:</head>
  309. </tag>
  310. </tags>
  311. <quiet>true</quiet>
  312. </configuration>
  313. </plugin>
  314. <plugin>
  315. <groupId>com.github.spotbugs</groupId>
  316. <artifactId>spotbugs-maven-plugin</artifactId>
  317. <configuration>
  318. <excludeFilterFile>${basedir}/src/site/findbugs/exclude.xml</excludeFilterFile>
  319. </configuration>
  320. </plugin>
  321. </plugins>
  322. </reporting>
  323. <distributionManagement>
  324. <site>
  325. <id>jackcess-build-site</id>
  326. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  327. </site>
  328. </distributionManagement>
  329. <properties>
  330. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  331. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  332. </properties>
  333. </project>