aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2011-08-21 03:37:22 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2011-08-21 03:37:22 +0000
commit59d17a49c002e61f2709b5a9a8d8886e1fe1f0d6 (patch)
treed4af03cd8f5b30f92336bf761794afd921437f46 /pom.xml
parent1dd198ece14ae2c801e2e4195edd7d15a4fbf9b1 (diff)
downloadjackcess-59d17a49c002e61f2709b5a9a8d8886e1fe1f0d6.tar.gz
jackcess-59d17a49c002e61f2709b5a9a8d8886e1fe1f0d6.zip
start adding some usage information in javadoc
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@574 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml39
1 files changed, 36 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 908ca84..e12feda 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId>
- <version>1.0.8</version>
+ <version>1.0.9</version>
</parent>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
@@ -175,20 +175,53 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
+ <additionalJOption>-J-DTaglets.ConfigurationFile=${basedir}/src/site/javadoc/taglets.properties -J-DTaglets.NoDefaultConfiguration=true</additionalJOption>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<links>
- <list>http://java.sun.com/j2se/1.5.0/docs/api</list>
- <list>http://java.sun.com/javaee/5/docs/api/</list>
+ <list>http://download.oracle.com/javase/1.5.0/docs/api</list>
+ <list>http://download.oracle.com/javaee/5/api</list>
</links>
<source>1.5</source>
<excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
<show>public</show>
+ <stylesheetfile>${basedir}/src/site/javadoc/stylesheet.css</stylesheetfile>
+ <tags>
+ <tag>
+ <name>usage</name>
+ <placement>a</placement>
+ <head>Usage:</head>
+ </tag>
+ </tags>
+ <taglets>
+ <taglet>
+ <tagletClass>net.sourceforge.taglets.Taglets</tagletClass>
+ <tagletArtifact>
+ <groupId>net.sourceforge.taglets</groupId>
+ <artifactId>taglets</artifactId>
+ <version>2.0.3</version>
+ </tagletArtifact>
+ </taglet>
+ </taglets>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</reporting>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>taglets</id>
+ <name>Taglets</name>
+ <url>http://maven.geotoolkit.org/</url>
+ <layout>default</layout>
+ </repository>
+ </repositories>
<distributionManagement>
<site>
<id>jackcess-build-site</id>