Skip to content

Commit

Permalink
Fix JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rfscholte committed Jul 8, 2021
1 parent b75341e commit 02a1740
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,19 @@
<packages>org.apache.maven.shared.dependency.graph*</packages>
</group>
</groups>
<tags>
<!-- from org.eclipse.aether:aether:1.1.0 -->
<tag>
<name>noinstantiate</name>
<placement>a</placement>
<head>Restriction:</head>
</tag>
<tag>
<name>noreference</name>
<placement>a</placement>
<head>Restriction:</head>
</tag>
</tags>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ public interface DependencyCollectorBuilder
* collect the project's raw dependency graph, with information to allow the API client to reason on its own about
* dependencies.
*
* @param localRepository the local repository.
* @param buildingRequest the request with the project to process its dependencies.
* @param filter an artifact filter if not all dependencies are required (can be <code>null</code>)
* @return the raw dependency tree
* @throws DependencyGraphBuilderException if some of the dependencies could not be collected.
* @throws DependencyCollectorBuilderException if some of the dependencies could not be collected.
*/
DependencyNode collectDependencyGraph( ProjectBuildingRequest buildingRequest, ArtifactFilter filter )
throws DependencyCollectorBuilderException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public final class ConflictResolver
{

/**
* The key in the repository session's {@link RepositorySystemSession#getConfigProperties() configuration
* properties} used to store a {@link Boolean} flag controlling the transformer's verbose mode.
* The key in the repository session's {@link org.sonatype.aether.RepositorySystemSession#getConfigProperties()
* configuration properties} used to store a {@link Boolean} flag controlling the transformer's verbose mode.
*/
public static final String CONFIG_PROP_VERBOSE = "aether.conflictResolver.verbose";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* A dependency selector that excludes dependencies of an specific Scope which occur beyond level one of the dependency
* graph.
*
* @see {@link Dependency#getScope()}
* @see Dependency#getScope()
* @author Gabriel Belingueres
* @since 3.1.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* A dependency selector that excludes dependencies of an specific Scope which occur beyond level one of the dependency
* graph.
*
* @see {@link Dependency#getScope()}
* @see Dependency#getScope()
* @author Gabriel Belingueres
* @since 3.1.0
*/
Expand Down

0 comments on commit 02a1740

Please sign in to comment.