Skip to content

Commit

Permalink
fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Bananeweizen committed May 10, 2024
1 parent a43c011 commit 258e127
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public class MirrorMojo extends AbstractMojo {

/**
* Source repositori(es) to mirror from.
*
* @see {@link #targetPlatformAsSource} and {@link #currentModuleAsSource}
*
* See also {@link #targetPlatformAsSource} and {@link #currentModuleAsSource}
*/
@Parameter(required = false)
private List<Repository> source;
Expand Down Expand Up @@ -166,7 +166,7 @@ public class MirrorMojo extends AbstractMojo {
* Add XZ-compressed repository index files. XZ offers better compression ratios esp. for highly
* redundant file content.
* </p>
*
*
* @since 0.25.0
*/
@Parameter(defaultValue = "true")
Expand All @@ -178,7 +178,7 @@ public class MirrorMojo extends AbstractMojo {
* addition to XZ-compressed index files. This fallback provides backwards compatibility for
* pre-Mars p2 clients which cannot read XZ-compressed index files.
* </p>
*
*
* @since 0.25.0
*/
@Parameter(defaultValue = "true")
Expand All @@ -189,7 +189,7 @@ public class MirrorMojo extends AbstractMojo {
* Whether to add the target-platform content as a source. Ignored for non-Tycho packaging
* types.
* </p>
*
*
* @since 1.1.0
*/
@Parameter(defaultValue = "false")
Expand All @@ -200,7 +200,7 @@ public class MirrorMojo extends AbstractMojo {
* Whether the current build p2 output should be added as source. Ignored for non-Tycho
* packaging types. Ignored if {@link #targetPlatformAsSource} == false;
* </p>
*
*
* @since 1.1.0
*/
@Parameter(defaultValue = "true")
Expand All @@ -211,7 +211,7 @@ public class MirrorMojo extends AbstractMojo {
* If set to true, mirroring continues to run in the event of an error during the mirroring
* process and will just log an info message.
* </p>
*
*
* @since 1.1.0
*/
@Parameter(defaultValue = "false")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@

/**
* This goal invokes the feature and bundle publisher on a folder.
*
* @see https://wiki.eclipse.org/Equinox/p2/Publisher#Features_And_Bundles_Publisher_Application
*
* @see <a href="https://wiki.eclipse.org/Equinox/p2/Publisher#Features_And_Bundles_Publisher_Application">Eclipse Wiki</a>
*/
@Mojo(name = "publish-features-and-bundles", threadSafe = true)
public class PublishFeaturesAndBundlesMojo extends AbstractMojo {
Expand All @@ -49,7 +49,7 @@ public class PublishFeaturesAndBundlesMojo extends AbstractMojo {
* Location of the artifact repository to write. Note: The AssembleRepositoryMojo of
* tycho-p2-repository-plugin will only work with the predefined default
* ${project.build.directory}/repository.
*
*
*/
@Parameter(defaultValue = "${project.build.directory}/repository")
private String artifactRepositoryLocation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* Publishes the category definitions from the <code>category.xml</code> in the root of the project.
* </p>
*
* @see https://wiki.eclipse.org/Equinox/p2/Publisher
* @see <a href="https://wiki.eclipse.org/Equinox/p2/Publisher">Eclipse Wiki</a>
*/
@Mojo(name = "publish-categories", defaultPhase = LifecyclePhase.PACKAGE, threadSafe = true, requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME)
public final class PublishCategoriesMojo extends AbstractPublishMojo {
Expand Down Expand Up @@ -80,7 +80,7 @@ protected Collection<DependencySeed> publishContent(PublisherServiceFactory publ

/**
* Writes the Tycho-internal representation of categories back to a category.xml.
*
*
* @param category
* a category, with "qualifier" literals already replaced by the build qualifier.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
* Publishes all product definitions files (<code>*.product</code>) that are present in the root of
* the project.
* </p>
*
* @see https://wiki.eclipse.org/Equinox/p2/Publisher
*
* @see <a href="https://wiki.eclipse.org/Equinox/p2/Publisher">Eclipse Wiki</a>
*/
@Mojo(name = "publish-products", defaultPhase = LifecyclePhase.PACKAGE, threadSafe = true, requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME)
public final class PublishProductMojo extends AbstractPublishMojo {
Expand Down

0 comments on commit 258e127

Please sign in to comment.