Merge pull request #12 from NicoWeidmann/master
Show Exceptions in Package Contents Table, Update txtmark Version
This commit is contained in:
22
README.md
22
README.md
@@ -78,17 +78,17 @@ Then you can use TeXDoclet as an alternate doclet in the `pom.xml` file of any p
|
||||
<sourcepath>src/main/java:src/test/java</sourcepath>
|
||||
<useStandardDocletOptions>false</useStandardDocletOptions><!-- important ! -->
|
||||
<destDir>apidocs_tex</destDir>
|
||||
<additionalparam>
|
||||
-tree
|
||||
-hyperref
|
||||
-output TeXDoclet.tex
|
||||
-createpdf
|
||||
-title "TeXDoclet Java Documentation"
|
||||
-subtitle "Created with Javadoc TeXDoclet Doclet"
|
||||
-author "Greg Wonderly \and S{\"o}ren Caspersen \and Stefan Marx"
|
||||
-subpackages org
|
||||
-shortinherited
|
||||
</additionalparam>
|
||||
<additionalOptions>
|
||||
<additionalOption>-tree<additionalOption>
|
||||
<additionalOption>-hyperref<additionalOption>
|
||||
<additionalOption>-output TeXDoclet.tex<additionalOption>
|
||||
<additionalOption>-createpdf<additionalOption>
|
||||
<additionalOption>-title "TeXDoclet Java Documentation"<additionalOption>
|
||||
<additionalOption>-subtitle "Created with Javadoc TeXDoclet Doclet"<additionalOption>
|
||||
<additionalOption>-author "Greg Wonderly \and S{\"o}ren Caspersen \and Stefan Marx"<additionalOption>
|
||||
<additionalOption>-subpackages org<additionalOption>
|
||||
<additionalOption>-shortinherited<additionalOption>
|
||||
</additionalOptions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
...
|
||||
|
||||
6
pom.xml
6
pom.xml
@@ -63,10 +63,6 @@
|
||||
<id>scala-tools</id>
|
||||
<url>http://scala-tools.org/repo-releases</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>renejeschke-releases</id>
|
||||
<url>http://maven.renejeschke.de</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
@@ -103,7 +99,7 @@
|
||||
<dependency>
|
||||
<groupId>com.github.rjeschke</groupId>
|
||||
<artifactId>txtmark</artifactId>
|
||||
<version>0.7</version>
|
||||
<version>0.8</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
@@ -707,6 +707,7 @@ public class TeXDoclet extends Doclet {
|
||||
}
|
||||
tocForClasses("Interfaces", pkg.interfaces);
|
||||
tocForClasses("Classes", pkg.classes);
|
||||
tocForClasses("Exceptions", pkg.exceptions);
|
||||
os.println("\\vskip .1in");
|
||||
if (useHr) {
|
||||
os.println("\\rule{\\hsize}{.7mm}");
|
||||
|
||||
Reference in New Issue
Block a user