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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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.9</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>1.2.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. <timezone>-5</timezone>
  21. </developer>
  22. <developer>
  23. <name>James Ahlborn</name>
  24. <id>jahlborn</id>
  25. <email>jahlborn@users.sf.net</email>
  26. <organization>Boomi, Inc.</organization>
  27. <timezone>-5</timezone>
  28. </developer>
  29. <developer>
  30. <name>Rob Di Marco</name>
  31. <id>robdimarco</id>
  32. <timezone>-5</timezone>
  33. </developer>
  34. <developer>
  35. <name>Dan Rollo</name>
  36. <id>bhamail</id>
  37. <email>bhamail@users.sf.net</email>
  38. <organization>Composite Software, Inc.</organization>
  39. <timezone>-5</timezone>
  40. </developer>
  41. </developers>
  42. <issueManagement>
  43. <system>SourceForge</system>
  44. <url>http://sourceforge.net/tracker/?group_id=134943&amp;atid=731445</url>
  45. </issueManagement>
  46. <scm>
  47. <connection>scm:svn:http://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/tags/jackcess-1.2.5</connection>
  48. <!-- read/write svn connection -->
  49. <developerConnection>scm:svn:https://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/tags/jackcess-1.2.5</developerConnection>
  50. <url>http://jackcess.svn.sourceforge.net/viewvc/jackcess/jackcess/tags/jackcess-1.2.5</url>
  51. </scm>
  52. <build>
  53. <defaultGoal>install</defaultGoal>
  54. <sourceDirectory>src/java</sourceDirectory>
  55. <testSourceDirectory>test/src/java</testSourceDirectory>
  56. <resources>
  57. <resource>
  58. <directory>src/resources</directory>
  59. </resource>
  60. </resources>
  61. <testResources>
  62. <testResource>
  63. <directory>test/src/resources</directory>
  64. </testResource>
  65. </testResources>
  66. <pluginManagement>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <configuration>
  72. <forkMode>once</forkMode>
  73. <argLine>-Xmx256M -server</argLine>
  74. <systemProperties>
  75. <property>
  76. <name>log4j.configuration</name>
  77. <value>log4j_test.properties</value>
  78. </property>
  79. <property>
  80. <name>com.healthmarketscience.jackcess.bigIndex</name>
  81. <value>${jackcess.bigIndex}</value>
  82. </property>
  83. <property>
  84. <name>com.healthmarketscience.jackcess.testFormats</name>
  85. <value>${jackcess.testFormats}</value>
  86. </property>
  87. </systemProperties>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </pluginManagement>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.codehaus.mojo</groupId>
  95. <artifactId>cobertura-maven-plugin</artifactId>
  96. <configuration>
  97. <instrumentation>
  98. <excludes>
  99. <exclude>com/healthmarketscience/jackcess/scsu/**</exclude>
  100. </excludes>
  101. </instrumentation>
  102. </configuration>
  103. <executions>
  104. <execution>
  105. <id>clean</id>
  106. <goals>
  107. <goal>clean</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-changes-plugin</artifactId>
  115. <configuration>
  116. <smtpHost>localhost</smtpHost>
  117. <toAddresses>
  118. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  119. </toAddresses>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-jar-plugin</artifactId>
  125. <executions>
  126. <execution>
  127. <goals>
  128. <goal>test-jar</goal>
  129. </goals>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. <dependencies>
  136. <dependency>
  137. <groupId>commons-lang</groupId>
  138. <artifactId>commons-lang</artifactId>
  139. <version>2.0</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-logging</groupId>
  143. <artifactId>commons-logging</artifactId>
  144. <version>1.0.3</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>log4j</groupId>
  148. <artifactId>log4j</artifactId>
  149. <version>1.2.7</version>
  150. <scope>runtime</scope>
  151. <optional>true</optional>
  152. </dependency>
  153. <dependency>
  154. <groupId>junit</groupId>
  155. <artifactId>junit</artifactId>
  156. <version>4.0</version>
  157. <scope>test</scope>
  158. </dependency>
  159. </dependencies>
  160. <reporting>
  161. <plugins>
  162. <plugin>
  163. <artifactId>maven-changes-plugin</artifactId>
  164. <configuration>
  165. <issueLinkTemplate>%URL%/index.php?func=detail&amp;aid=%ISSUE%&amp;group_id=134943&amp;atid=731445</issueLinkTemplate>
  166. </configuration>
  167. <reportSets>
  168. <reportSet>
  169. <reports>
  170. <report>changes-report</report>
  171. </reports>
  172. </reportSet>
  173. </reportSets>
  174. </plugin>
  175. <plugin>
  176. <artifactId>maven-javadoc-plugin</artifactId>
  177. <configuration>
  178. <additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
  179. <minmemory>128m</minmemory>
  180. <maxmemory>512</maxmemory>
  181. <links>
  182. <list>http://download.oracle.com/javase/1.5.0/docs/api</list>
  183. <list>http://download.oracle.com/javaee/5/api</list>
  184. </links>
  185. <source>1.5</source>
  186. <excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
  187. <show>public</show>
  188. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  189. <tags>
  190. <tag>
  191. <name>usage</name>
  192. <placement>a</placement>
  193. <head>Usage:</head>
  194. </tag>
  195. </tags>
  196. <taglets>
  197. <taglet>
  198. <tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
  199. <tagletArtifact>
  200. <groupId>net.sourceforge.taglets</groupId>
  201. <artifactId>taglets</artifactId>
  202. <version>2.0.3</version>
  203. </tagletArtifact>
  204. </taglet>
  205. </taglets>
  206. <quiet>true</quiet>
  207. </configuration>
  208. </plugin>
  209. </plugins>
  210. </reporting>
  211. <repositories>
  212. <repository>
  213. <releases>
  214. <enabled>true</enabled>
  215. </releases>
  216. <snapshots>
  217. <enabled>false</enabled>
  218. </snapshots>
  219. <id>taglets</id>
  220. <name>Taglets</name>
  221. <url>http://maven.geotoolkit.org/</url>
  222. <layout>default</layout>
  223. </repository>
  224. </repositories>
  225. <distributionManagement>
  226. <site>
  227. <id>jackcess-build-site</id>
  228. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  229. </site>
  230. </distributionManagement>
  231. <properties>
  232. <jackcess.bigIndex>true</jackcess.bigIndex>
  233. <jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
  234. </properties>
  235. </project>