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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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.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>1.1.22-SNAPSHOT</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. <organization>Health Market Science, Inc.</organization>
  21. <timezone>-5</timezone>
  22. </developer>
  23. <developer>
  24. <name>James Ahlborn</name>
  25. <id>jahlborn</id>
  26. <email>jahlborn@users.sf.net</email>
  27. <organization>Health Market Science, Inc.</organization>
  28. <timezone>-5</timezone>
  29. </developer>
  30. <developer>
  31. <name>Rob Di Marco</name>
  32. <id>robdimarco</id>
  33. <organization>Health Market Science, Inc.</organization>
  34. <timezone>-5</timezone>
  35. </developer>
  36. <developer>
  37. <name>Dan Rollo</name>
  38. <id>bhamail</id>
  39. <email>bhamail@users.sf.net</email>
  40. <organization>Composite Software, Inc.</organization>
  41. <timezone>-5</timezone>
  42. </developer>
  43. </developers>
  44. <issueManagement>
  45. <system>SourceForge</system>
  46. <url>http://sourceforge.net/tracker/?group_id=134943&amp;atid=731445</url>
  47. </issueManagement>
  48. <scm>
  49. <connection>scm:svn:http://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/trunk/</connection>
  50. <!-- read/write svn connection -->
  51. <developerConnection>scm:svn:https://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/trunk/</developerConnection>
  52. <url>http://jackcess.svn.sourceforge.net/viewvc/jackcess/jackcess/trunk/</url>
  53. </scm>
  54. <build>
  55. <defaultGoal>install</defaultGoal>
  56. <sourceDirectory>src/java</sourceDirectory>
  57. <testSourceDirectory>test/src/java</testSourceDirectory>
  58. <resources>
  59. <resource>
  60. <directory>src/resources</directory>
  61. </resource>
  62. </resources>
  63. <testResources>
  64. <testResource>
  65. <directory>test/src/resources</directory>
  66. </testResource>
  67. </testResources>
  68. <pluginManagement>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-surefire-plugin</artifactId>
  73. <configuration>
  74. <forkMode>once</forkMode>
  75. <argLine>-Xmx256M -server</argLine>
  76. <systemProperties>
  77. <property>
  78. <name>log4j.configuration</name>
  79. <value>log4j_test.properties</value>
  80. </property>
  81. <property>
  82. <name>com.healthmarketscience.jackcess.bigIndex</name>
  83. <value>${jackcess.bigIndex}</value>
  84. </property>
  85. </systemProperties>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </pluginManagement>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.codehaus.mojo</groupId>
  93. <artifactId>cobertura-maven-plugin</artifactId>
  94. <configuration>
  95. <instrumentation>
  96. <excludes>
  97. <exclude>com/healthmarketscience/jackcess/scsu/**</exclude>
  98. </excludes>
  99. </instrumentation>
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <id>clean</id>
  104. <goals>
  105. <goal>clean</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-changes-plugin</artifactId>
  113. <configuration>
  114. <smtpHost>localhost</smtpHost>
  115. <toAddresses>
  116. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  117. </toAddresses>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <dependencies>
  123. <dependency>
  124. <groupId>commons-lang</groupId>
  125. <artifactId>commons-lang</artifactId>
  126. <version>2.0</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-logging</groupId>
  130. <artifactId>commons-logging</artifactId>
  131. <version>1.0.3</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>log4j</groupId>
  135. <artifactId>log4j</artifactId>
  136. <version>1.2.7</version>
  137. <scope>runtime</scope>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>junit</groupId>
  142. <artifactId>junit</artifactId>
  143. <version>4.0</version>
  144. <scope>test</scope>
  145. </dependency>
  146. </dependencies>
  147. <reporting>
  148. <plugins>
  149. <plugin>
  150. <artifactId>maven-changes-plugin</artifactId>
  151. <configuration>
  152. <issueLinkTemplate>%URL%/index.php?func=detail&amp;aid=%ISSUE%&amp;group_id=134943&amp;atid=731445</issueLinkTemplate>
  153. </configuration>
  154. <reportSets>
  155. <reportSet>
  156. <reports>
  157. <report>changes-report</report>
  158. </reports>
  159. </reportSet>
  160. </reportSets>
  161. </plugin>
  162. <plugin>
  163. <artifactId>maven-javadoc-plugin</artifactId>
  164. <configuration>
  165. <minmemory>128m</minmemory>
  166. <maxmemory>512</maxmemory>
  167. <links>
  168. <list>http://java.sun.com/j2se/1.5.0/docs/api</list>
  169. <list>http://java.sun.com/javaee/5/docs/api/</list>
  170. </links>
  171. <source>1.5</source>
  172. <excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
  173. <show>public</show>
  174. <quiet>true</quiet>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. </reporting>
  179. <distributionManagement>
  180. <site>
  181. <id>jackcess-build-site</id>
  182. <url>scp://shell.sourceforge.net/home/groups/j/ja/jackcess/htdocs</url>
  183. </site>
  184. </distributionManagement>
  185. </project>