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>
|
<sourcepath>src/main/java:src/test/java</sourcepath>
|
||||||
<useStandardDocletOptions>false</useStandardDocletOptions><!-- important ! -->
|
<useStandardDocletOptions>false</useStandardDocletOptions><!-- important ! -->
|
||||||
<destDir>apidocs_tex</destDir>
|
<destDir>apidocs_tex</destDir>
|
||||||
<additionalparam>
|
<additionalOptions>
|
||||||
-tree
|
<additionalOption>-tree<additionalOption>
|
||||||
-hyperref
|
<additionalOption>-hyperref<additionalOption>
|
||||||
-output TeXDoclet.tex
|
<additionalOption>-output TeXDoclet.tex<additionalOption>
|
||||||
-createpdf
|
<additionalOption>-createpdf<additionalOption>
|
||||||
-title "TeXDoclet Java Documentation"
|
<additionalOption>-title "TeXDoclet Java Documentation"<additionalOption>
|
||||||
-subtitle "Created with Javadoc TeXDoclet Doclet"
|
<additionalOption>-subtitle "Created with Javadoc TeXDoclet Doclet"<additionalOption>
|
||||||
-author "Greg Wonderly \and S{\"o}ren Caspersen \and Stefan Marx"
|
<additionalOption>-author "Greg Wonderly \and S{\"o}ren Caspersen \and Stefan Marx"<additionalOption>
|
||||||
-subpackages org
|
<additionalOption>-subpackages org<additionalOption>
|
||||||
-shortinherited
|
<additionalOption>-shortinherited<additionalOption>
|
||||||
</additionalparam>
|
</additionalOptions>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
...
|
...
|
||||||
|
|||||||
6
pom.xml
6
pom.xml
@@ -63,10 +63,6 @@
|
|||||||
<id>scala-tools</id>
|
<id>scala-tools</id>
|
||||||
<url>http://scala-tools.org/repo-releases</url>
|
<url>http://scala-tools.org/repo-releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
|
||||||
<id>renejeschke-releases</id>
|
|
||||||
<url>http://maven.renejeschke.de</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
@@ -103,7 +99,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.rjeschke</groupId>
|
<groupId>com.github.rjeschke</groupId>
|
||||||
<artifactId>txtmark</artifactId>
|
<artifactId>txtmark</artifactId>
|
||||||
<version>0.7</version>
|
<version>0.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@@ -707,6 +707,7 @@ public class TeXDoclet extends Doclet {
|
|||||||
}
|
}
|
||||||
tocForClasses("Interfaces", pkg.interfaces);
|
tocForClasses("Interfaces", pkg.interfaces);
|
||||||
tocForClasses("Classes", pkg.classes);
|
tocForClasses("Classes", pkg.classes);
|
||||||
|
tocForClasses("Exceptions", pkg.exceptions);
|
||||||
os.println("\\vskip .1in");
|
os.println("\\vskip .1in");
|
||||||
if (useHr) {
|
if (useHr) {
|
||||||
os.println("\\rule{\\hsize}{.7mm}");
|
os.println("\\rule{\\hsize}{.7mm}");
|
||||||
|
|||||||
Reference in New Issue
Block a user