summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorchibash <chiba@javassist.org>2018-11-02 01:49:10 +0900
committerchibash <chiba@javassist.org>2018-11-02 01:49:10 +0900
commitfa3dd56b836208944683de8a50bb36e96b5e001e (patch)
tree3591f42475c4adb55b05f0c581fcde9be59e17d0 /pom.xml
parent2d4ef86c82c843a45d7670df8a447fcc59c8d94d (diff)
downloadjavassist-fa3dd56b836208944683de8a50bb36e96b5e001e.tar.gz
javassist-fa3dd56b836208944683de8a50bb36e96b5e001e.zip
fixes bugs in javadoc comments
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 8900978f..c1fc343c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
- <version>3.24-GA</version>
+ <version>3.24.0-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>
@@ -202,9 +202,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>3.0.0-M1</version>
+ <version>3.0.1</version>
<configuration>
<attach>true</attach>
+ <excludePackageNames>javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap</excludePackageNames>
+ <bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit.<br>
+Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
+ <show>public</show>
+ <nohelp>true</nohelp>
</configuration>
</plugin>
<plugin>