Browse Source

not sure why this never failed before, but i guss i need to dope the config

git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1285 f203690c-595d-4dc9-a70b-905162fa7fd2
tags/jackcess-3.0.0
James Ahlborn 5 years ago
parent
commit
060927b05e
1 changed files with 23 additions and 1 deletions
  1. 23
    1
      pom.xml

+ 23
- 1
pom.xml View File

@@ -3,7 +3,7 @@
<parent>
<groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
@@ -186,6 +186,28 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<links>
<list>https://docs.oracle.com/javase/8/docs/api/</list>
<list>http://docs.oracle.com/javaee/5/api/</list>
</links>
<source>1.8</source>
<show>public</show>
<stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
<tags>
<tag>
<name>usage</name>
<placement>a</placement>
<head>Usage:</head>
</tag>
</tags>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>

Loading…
Cancel
Save