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.

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