Skip to content

Commit

Permalink
Merge pull request #272 from Ladicek/remove-apiviz
Browse files Browse the repository at this point in the history
Remove APIviz and adjust Javadoc config for JDK 17
  • Loading branch information
Ladicek authored Nov 7, 2022
2 parents cd3c7a6 + 2039778 commit 8eb7e4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
13 changes: 3 additions & 10 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclet>org.jboss.apiviz.APIviz</doclet>
<docletArtifact>
<groupId>org.jboss.apiviz</groupId>
<artifactId>apiviz</artifactId>
<version>${version.apiviz}</version>
</docletArtifact>
<useStandardDocletOptions>true</useStandardDocletOptions>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
Expand All @@ -66,22 +59,22 @@
<author>true</author>
<keywords>true</keywords>
<additionalOptions>
-sourceclasspath ${project.build.outputDirectory}
--allow-script-in-comments
</additionalOptions>
<docfilessubdirs>true</docfilessubdirs>
<top><![CDATA[
<script src="doc-files/addSyntax.js" type="text/javascript"></script>
<script src="doc-files/shCore.js" type="text/javascript"></script>
<script src="doc-files/shBrushJava.js" type="text/javascript"></script>
]]></top>
<footer><![CDATA[
<bottom><![CDATA[
<script type="text/javascript">
SyntaxHighlighter.defaults["auto-links"] = false;
SyntaxHighlighter.defaults["gutter"] = false;
SyntaxHighlighter.defaults["toolbar"] = false;
SyntaxHighlighter.all();
</script>
]]></footer>
]]></bottom>
</configuration>
</plugin>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/org/jboss/jandex/Index.java
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ public List<ClassInfo> getKnownUsers(DotName className) {
}

/**
* @inheritDoc
* {@inheritDoc}
*/
@Override
public Collection<ClassInfo> getClassesInPackage(DotName packageName) {
Expand All @@ -500,7 +500,7 @@ public Collection<ClassInfo> getClassesInPackage(DotName packageName) {
}

/**
* @inheritDoc
* {@inheritDoc}
*/
@Override
public Set<DotName> getSubpackages(DotName packageName) {
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<maven.compiler.target>1.8</maven.compiler.target>

<version.ant>1.10.11</version.ant>
<version.apiviz>1.3.2.GA</version.apiviz>
<version.bridger>1.6.Final</version.bridger>
<version.bytebuddy>1.11.13</version.bytebuddy>
<version.exec-maven-plugin>3.0.0</version.exec-maven-plugin>
Expand Down

0 comments on commit 8eb7e4c

Please # to comment.