Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc (wip) #353

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ DependencyResult resolveDependencies(RepositorySystemSession session, Dependency
throws DependencyResolutionException;

/**
* Flattens the provided graph as {@link DependencyNode} into a {@link List<DependencyNode>} according to session
* Flattens the provided graph as {@link DependencyNode} into a {@link List}{@code <DependencyNode>} according to session
* configuration.
*
* @param session The repository session, must not be {@code null}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static java.util.Objects.requireNonNull;

/**
* A dependency visitor that dumps the graph to any {@link Consumer<String>}. Meant for diagnostic and testing, as
* A dependency visitor that dumps the graph to any {@link Consumer}{@code <String>}. Meant for diagnostic and testing, as
* it may output the graph to standard output, error or even some logging interface.
*
* @since 1.9.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import static java.util.stream.Collectors.toList;

/**
* Node list generator usable with different traversing strategies. It is wrapped {@link List<DependencyNode>} but
* Node list generator usable with different traversing strategies. It is wrapped {@link List}{@code <DependencyNode>} but
* offers several transformations, that are handy.
*
* @since TBD
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<detectOfflineLinks>false</detectOfflineLinks>
<linksource>true</linksource>
<notimestamp>true</notimestamp>
<legacyMode>true</legacyMode>
<release>11</release>
<links>
<link>https://download.oracle.com/javase/${javaVersion}/docs/api/</link>
<link>https://download.oracle.com/javase/11/docs/api/</link>
</links>
<tags>
<tag>
Expand Down
Loading