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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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>1.0.17</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>2.0.4</version>
  13. <url>http://jackcess.sf.net</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. <organization>Dell Boomi</organization>
  30. <roles>
  31. <role>Owner</role>
  32. </roles>
  33. <timezone>-5</timezone>
  34. </developer>
  35. </developers>
  36. <contributors>
  37. <contributor>
  38. <name>Rob Di Marco</name>
  39. <roles>
  40. <role>Added ability to import delimited text into new tables</role>
  41. </roles>
  42. <timezone>-5</timezone>
  43. </contributor>
  44. <contributor>
  45. <name>Mitchell J. Friedman</name>
  46. <roles>
  47. <role>Added support for additional JDBC data types</role>
  48. </roles>
  49. </contributor>
  50. <contributor>
  51. <name>Jon Iles</name>
  52. <roles>
  53. <role>Added support for reading table definitions that span multiple
  54. pages</role>
  55. </roles>
  56. </contributor>
  57. <contributor>
  58. <name>James Schopp</name>
  59. <roles>
  60. <role>Added support for reading currency columns</role>
  61. </roles>
  62. </contributor>
  63. <contributor>
  64. <name>Patricia Donaldson</name>
  65. <roles>
  66. <role>Contributed RowFilter class</role>
  67. </roles>
  68. </contributor>
  69. <contributor>
  70. <name>Dan Rollo</name>
  71. <email>bhamail@users.sf.net</email>
  72. <organization>Composite Software, Inc.</organization>
  73. <roles>
  74. <role>Added support for new DB file formats (2003/2007)</role>
  75. </roles>
  76. <timezone>-5</timezone>
  77. </contributor>
  78. <contributor>
  79. <name>F. Gerbig</name>
  80. <roles>
  81. <role>added ExportUtil, contributed some of the code for Jet3
  82. read-only support</role>
  83. </roles>
  84. </contributor>
  85. <contributor>
  86. <name>Lorenzo Carrara</name>
  87. <roles>
  88. <role>Reverse engineered the attachment data encoding.</role>
  89. </roles>
  90. </contributor>
  91. </contributors>
  92. <issueManagement>
  93. <system>SourceForge2</system>
  94. <url>http://sourceforge.net/p/jackcess/bugs/</url>
  95. </issueManagement>
  96. <scm>
  97. <connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.4</connection>
  98. <!-- read/write svn connection -->
  99. <developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.4</developerConnection>
  100. <url>http://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.4</url>
  101. </scm>
  102. <build>
  103. <defaultGoal>install</defaultGoal>
  104. <pluginManagement>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-surefire-plugin</artifactId>
  109. <version>2.15</version>
  110. <configuration>
  111. <forkMode>once</forkMode>
  112. <parallel>classes</parallel>
  113. <threadCount>1</threadCount>
  114. <argLine>-Xmx256M -server</argLine>
  115. <systemProperties>
  116. <property>
  117. <name>log4j.configuration</name>
  118. <value>log4j_test.properties</value>
  119. </property>
  120. <property>
  121. <name>com.healthmarketscience.jackcess.bigIndex</name>
  122. <value>${jackcess.bigIndex}</value>
  123. </property>
  124. <property>
  125. <name>com.healthmarketscience.jackcess.testFormats</name>
  126. <value>${jackcess.testFormats}</value>
  127. </property>
  128. </systemProperties>
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </pluginManagement>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.apache.felix</groupId>
  136. <artifactId>maven-bundle-plugin</artifactId>
  137. <extensions>true</extensions>
  138. <configuration>
  139. <instructions>
  140. </instructions>
  141. </configuration>
  142. <executions>
  143. <execution>
  144. <id>bundle-manifest</id>
  145. <phase>process-classes</phase>
  146. <goals>
  147. <goal>manifest</goal>
  148. </goals>
  149. </execution>
  150. </executions>
  151. </plugin>
  152. <plugin>
  153. <groupId>org.codehaus.mojo</groupId>
  154. <artifactId>cobertura-maven-plugin</artifactId>
  155. <configuration>
  156. <instrumentation>
  157. <excludes>
  158. <exclude>com/healthmarketscience/jackcess/impl/scsu/**</exclude>
  159. </excludes>
  160. </instrumentation>
  161. </configuration>
  162. <executions>
  163. <execution>
  164. <id>clean</id>
  165. <goals>
  166. <goal>clean</goal>
  167. </goals>
  168. </execution>
  169. </executions>
  170. </plugin>
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-changes-plugin</artifactId>
  174. <configuration>
  175. <smtpHost>localhost</smtpHost>
  176. <toAddresses>
  177. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  178. </toAddresses>
  179. </configuration>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-jar-plugin</artifactId>
  184. <configuration>
  185. <archive>
  186. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  187. </archive>
  188. </configuration>
  189. <executions>
  190. <execution>
  191. <id>build-test-jar</id>
  192. <goals>
  193. <goal>test-jar</goal>
  194. </goals>
  195. <configuration>
  196. <archive combine.self="override">
  197. </archive>
  198. </configuration>
  199. </execution>
  200. </executions>
  201. </plugin>
  202. </plugins>
  203. </build>
  204. <dependencies>
  205. <dependency>
  206. <groupId>commons-lang</groupId>
  207. <artifactId>commons-lang</artifactId>
  208. <version>2.0</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>commons-logging</groupId>
  212. <artifactId>commons-logging</artifactId>
  213. <version>1.0.3</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>log4j</groupId>
  217. <artifactId>log4j</artifactId>
  218. <version>1.2.7</version>
  219. <scope>runtime</scope>
  220. <optional>true</optional>
  221. </dependency>
  222. <dependency>
  223. <groupId>junit</groupId>
  224. <artifactId>junit</artifactId>
  225. <version>4.11</version>
  226. <scope>test</scope>
  227. </dependency>
  228. <!-- Only necessary if working with compound ole data -->
  229. <dependency>
  230. <groupId>org.apache.poi</groupId>
  231. <artifactId>poi</artifactId>
  232. <version>3.9</version>
  233. <optional>true</optional>
  234. </dependency>
  235. </dependencies>
  236. <reporting>
  237. <plugins>
  238. <plugin>
  239. <artifactId>maven-changes-plugin</artifactId>
  240. <configuration>
  241. <issueLinkTemplatePerSystem>
  242. <SourceForge2Features>http://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features>
  243. </issueLinkTemplatePerSystem>
  244. </configuration>
  245. <reportSets>
  246. <reportSet>
  247. <reports>
  248. <report>changes-report</report>
  249. </reports>
  250. </reportSet>
  251. </reportSets>
  252. </plugin>
  253. <plugin>
  254. <artifactId>maven-javadoc-plugin</artifactId>
  255. <configuration>
  256. <additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
  257. <minmemory>128m</minmemory>
  258. <maxmemory>512</maxmemory>
  259. <links>
  260. <list>http://docs.oracle.com/javase/1.5.0/docs/api/</list>
  261. <list>http://docs.oracle.com/javaee/5/api/</list>
  262. </links>
  263. <source>1.5</source>
  264. <excludePackageNames>com.healthmarketscience.jackcess.impl.scsu</excludePackageNames>
  265. <show>public</show>
  266. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  267. <tags>
  268. <tag>
  269. <name>usage</name>
  270. <placement>a</placement>
  271. <head>Usage:</head>
  272. </tag>
  273. </tags>
  274. <taglets>
  275. <taglet>
  276. <tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
  277. <tagletArtifact>
  278. <groupId>net.sourceforge.taglets</groupId>
  279. <artifactId>taglets</artifactId>
  280. <version>2.0.3</version>
  281. </tagletArtifact>
  282. </taglet>
  283. </taglets>
  284. <quiet>true</quiet>
  285. </configuration>
  286. </plugin>
  287. </plugins>
  288. </reporting>
  289. <repositories>
  290. <repository>
  291. <releases>
  292. <enabled>true</enabled>
  293. </releases>
  294. <snapshots>
  295. <enabled>false</enabled>
  296. </snapshots>
  297. <id>taglets</id>
  298. <name>Taglets</name>
  299. <url>http://maven.geotoolkit.org/</url>
  300. <layout>default</layout>
  301. </repository>
  302. </repositories>
  303. <distributionManagement>
  304. <site>
  305. <id>jackcess-build-site</id>
  306. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  307. </site>
  308. </distributionManagement>
  309. <properties>
  310. <jackcess.bigIndex>true</jackcess.bigIndex>
  311. <jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
  312. </properties>
  313. </project>