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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.12</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.9</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>Dell Boomi</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>SourceForge2</system>
  44. <url>http://sourceforge.net/p/jackcess/bugs/</url>
  45. </issueManagement>
  46. <scm>
  47. <connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</connection>
  48. <!-- read/write svn connection -->
  49. <developerConnection>scm:svn:svn+ssh://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</developerConnection>
  50. <url>http://svn.code.sf.net/p/jackcess/code/jackcess/tags/jackcess-1.2.9</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.apache.felix</groupId>
  95. <artifactId>maven-bundle-plugin</artifactId>
  96. <extensions>true</extensions>
  97. <configuration>
  98. <instructions>
  99. </instructions>
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <id>bundle-manifest</id>
  104. <phase>process-classes</phase>
  105. <goals>
  106. <goal>manifest</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.codehaus.mojo</groupId>
  113. <artifactId>cobertura-maven-plugin</artifactId>
  114. <configuration>
  115. <instrumentation>
  116. <excludes>
  117. <exclude>com/healthmarketscience/jackcess/scsu/**</exclude>
  118. </excludes>
  119. </instrumentation>
  120. </configuration>
  121. <executions>
  122. <execution>
  123. <id>clean</id>
  124. <goals>
  125. <goal>clean</goal>
  126. </goals>
  127. </execution>
  128. </executions>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-changes-plugin</artifactId>
  133. <configuration>
  134. <smtpHost>localhost</smtpHost>
  135. <toAddresses>
  136. <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
  137. </toAddresses>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-jar-plugin</artifactId>
  143. <configuration>
  144. <archive>
  145. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  146. </archive>
  147. </configuration>
  148. <executions>
  149. <execution>
  150. <id>build-test-jar</id>
  151. <goals>
  152. <goal>test-jar</goal>
  153. </goals>
  154. <configuration>
  155. <archive combine.self="override">
  156. </archive>
  157. </configuration>
  158. </execution>
  159. </executions>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. <dependencies>
  164. <dependency>
  165. <groupId>commons-lang</groupId>
  166. <artifactId>commons-lang</artifactId>
  167. <version>2.0</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-logging</groupId>
  171. <artifactId>commons-logging</artifactId>
  172. <version>1.0.3</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>log4j</groupId>
  176. <artifactId>log4j</artifactId>
  177. <version>1.2.7</version>
  178. <scope>runtime</scope>
  179. <optional>true</optional>
  180. </dependency>
  181. <dependency>
  182. <groupId>junit</groupId>
  183. <artifactId>junit</artifactId>
  184. <version>4.0</version>
  185. <scope>test</scope>
  186. </dependency>
  187. </dependencies>
  188. <reporting>
  189. <plugins>
  190. <plugin>
  191. <artifactId>maven-changes-plugin</artifactId>
  192. <reportSets>
  193. <reportSet>
  194. <reports>
  195. <report>changes-report</report>
  196. </reports>
  197. </reportSet>
  198. </reportSets>
  199. </plugin>
  200. <plugin>
  201. <artifactId>maven-javadoc-plugin</artifactId>
  202. <configuration>
  203. <additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
  204. <minmemory>128m</minmemory>
  205. <maxmemory>512</maxmemory>
  206. <links>
  207. <list>http://download.oracle.com/javase/1.5.0/docs/api</list>
  208. <list>http://download.oracle.com/javaee/5/api</list>
  209. </links>
  210. <source>1.5</source>
  211. <excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
  212. <show>public</show>
  213. <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
  214. <tags>
  215. <tag>
  216. <name>usage</name>
  217. <placement>a</placement>
  218. <head>Usage:</head>
  219. </tag>
  220. </tags>
  221. <taglets>
  222. <taglet>
  223. <tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
  224. <tagletArtifact>
  225. <groupId>net.sourceforge.taglets</groupId>
  226. <artifactId>taglets</artifactId>
  227. <version>2.0.3</version>
  228. </tagletArtifact>
  229. </taglet>
  230. </taglets>
  231. <quiet>true</quiet>
  232. </configuration>
  233. </plugin>
  234. </plugins>
  235. </reporting>
  236. <repositories>
  237. <repository>
  238. <releases>
  239. <enabled>true</enabled>
  240. </releases>
  241. <snapshots>
  242. <enabled>false</enabled>
  243. </snapshots>
  244. <id>taglets</id>
  245. <name>Taglets</name>
  246. <url>http://maven.geotoolkit.org/</url>
  247. <layout>default</layout>
  248. </repository>
  249. </repositories>
  250. <distributionManagement>
  251. <site>
  252. <id>jackcess-build-site</id>
  253. <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
  254. </site>
  255. </distributionManagement>
  256. <properties>
  257. <jackcess.bigIndex>true</jackcess.bigIndex>
  258. <jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
  259. </properties>
  260. </project>