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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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.5</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. <contributor>
  92. <name>Gordon Thompson</name>
  93. <roles>
  94. <role>Contributed to cookbook.</role>
  95. </roles>
  96. </contributor>
  97. </contributors>
  98. <issueManagement>
  99. <system>SourceForge2</system>
  100. <url>http://sourceforge.net/p/jackcess/bugs/</url>
  101. </issueManagement>
  102. <scm>
  103. <connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.5</connection>
  104. <!-- read/write svn connection -->
  105. <developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.5</developerConnection>
  106. <url>http://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-2.0.5</url>
  107. </scm>
  108. <build>
  109. <defaultGoal>install</defaultGoal>
  110. <pluginManagement>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-surefire-plugin</artifactId>
  115. <version>2.15</version>
  116. <configuration>
  117. <forkMode>once</forkMode>
  118. <parallel>classes</parallel>
  119. <threadCount>1</threadCount>
  120. <argLine>-Xmx256M -server</argLine>
  121. <systemProperties>
  122. <property>
  123. <name>log4j.configuration</name>
  124. <value>log4j_test.properties</value>
  125. </property>
  126. <property>
  127. <name>com.healthmarketscience.jackcess.bigIndex</name>
  128. <value>${jackcess.bigIndex}</value>
  129. </property>
  130. <property>
  131. <name>com.healthmarketscience.jackcess.testFormats</name>
  132. <value>${jackcess.testFormats}</value>
  133. </property>
  134. </systemProperties>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. </pluginManagement>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.apache.felix</groupId>
  142. <artifactId>maven-bundle-plugin</artifactId>
  143. <extensions>true</extensions>
  144. <configuration>
  145. <instructions>
  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.codehaus.mojo</groupId>
  160. <artifactId>cobertura-maven-plugin</artifactId>
  161. <configuration>
  162. <instrumentation>
  163. <excludes>
  164. <exclude>com/healthmarketscience/jackcess/impl/scsu/**</exclude>
  165. </excludes>
  166. </instrumentation>
  167. </configuration>
  168. <executions>
  169. <execution>
  170. <id>clean</id>
  171. <goals>
  172. <goal>clean</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-changes-plugin</artifactId>
  180. <configuration>
  181. <smtpHost>localhost</smtpHost>
  182. <toAddresses>
  183. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  184. </toAddresses>
  185. </configuration>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-jar-plugin</artifactId>
  190. <configuration>
  191. <archive>
  192. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  193. </archive>
  194. </configuration>
  195. <executions>
  196. <execution>
  197. <id>build-test-jar</id>
  198. <goals>
  199. <goal>test-jar</goal>
  200. </goals>
  201. <configuration>
  202. <archive combine.self="override">
  203. </archive>
  204. </configuration>
  205. </execution>
  206. </executions>
  207. </plugin>
  208. </plugins>
  209. </build>
  210. <dependencies>
  211. <dependency>
  212. <groupId>commons-lang</groupId>
  213. <artifactId>commons-lang</artifactId>
  214. <version>2.6</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>commons-logging</groupId>
  218. <artifactId>commons-logging</artifactId>
  219. <version>1.1.3</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>log4j</groupId>
  223. <artifactId>log4j</artifactId>
  224. <version>1.2.7</version>
  225. <scope>runtime</scope>
  226. <optional>true</optional>
  227. </dependency>
  228. <dependency>
  229. <groupId>junit</groupId>
  230. <artifactId>junit</artifactId>
  231. <version>4.11</version>
  232. <scope>test</scope>
  233. </dependency>
  234. <!-- Only necessary if working with compound ole data -->
  235. <dependency>
  236. <groupId>org.apache.poi</groupId>
  237. <artifactId>poi</artifactId>
  238. <version>3.9</version>
  239. <optional>true</optional>
  240. </dependency>
  241. </dependencies>
  242. <reporting>
  243. <plugins>
  244. <plugin>
  245. <artifactId>maven-changes-plugin</artifactId>
  246. <configuration>
  247. <issueLinkTemplatePerSystem>
  248. <SourceForge2Features>http://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features>
  249. </issueLinkTemplatePerSystem>
  250. </configuration>
  251. <reportSets>
  252. <reportSet>
  253. <reports>
  254. <report>changes-report</report>
  255. </reports>
  256. </reportSet>
  257. </reportSets>
  258. </plugin>
  259. <plugin>
  260. <artifactId>maven-javadoc-plugin</artifactId>
  261. <configuration>
  262. <additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
  263. <minmemory>128m</minmemory>
  264. <maxmemory>512</maxmemory>
  265. <links>
  266. <list>http://docs.oracle.com/javase/1.5.0/docs/api/</list>
  267. <list>http://docs.oracle.com/javaee/5/api/</list>
  268. </links>
  269. <source>1.5</source>
  270. <excludePackageNames>com.healthmarketscience.jackcess.impl.scsu</excludePackageNames>
  271. <show>public</show>
  272. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  273. <tags>
  274. <tag>
  275. <name>usage</name>
  276. <placement>a</placement>
  277. <head>Usage:</head>
  278. </tag>
  279. </tags>
  280. <taglets>
  281. <taglet>
  282. <tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
  283. <tagletArtifact>
  284. <groupId>net.sourceforge.taglets</groupId>
  285. <artifactId>taglets</artifactId>
  286. <version>2.0.3</version>
  287. </tagletArtifact>
  288. </taglet>
  289. </taglets>
  290. <quiet>true</quiet>
  291. </configuration>
  292. </plugin>
  293. </plugins>
  294. </reporting>
  295. <repositories>
  296. <repository>
  297. <releases>
  298. <enabled>true</enabled>
  299. </releases>
  300. <snapshots>
  301. <enabled>false</enabled>
  302. </snapshots>
  303. <id>taglets</id>
  304. <name>Taglets</name>
  305. <url>http://maven.geotoolkit.org/</url>
  306. <layout>default</layout>
  307. </repository>
  308. </repositories>
  309. <distributionManagement>
  310. <site>
  311. <id>jackcess-build-site</id>
  312. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  313. </site>
  314. </distributionManagement>
  315. <properties>
  316. <jackcess.bigIndex>true</jackcess.bigIndex>
  317. <jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
  318. </properties>
  319. </project>