aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2019-02-09 16:09:56 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2019-02-09 16:09:56 +0000
commit060927b05e2340a4be106d5960446a5a7c7e91ee (patch)
tree73fcf2c160878f556597ef5c80a36f6802c681b5
parentc1f8e64f33f439602f891779bc5e73f8fbdb96c2 (diff)
downloadjackcess-060927b05e2340a4be106d5960446a5a7c7e91ee.tar.gz
jackcess-060927b05e2340a4be106d5960446a5a7c7e91ee.zip
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
-rw-r--r--pom.xml24
1 files changed, 23 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 3bb1f7f..4dfe5b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>
@@ -187,6 +187,28 @@
</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>
<executions>