This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 1cc9544 Javadoc
1cc9544 is described below
commit 1cc9544c3f42f87a2287cb7d0602c50539e04cef
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 15:36:07 2026 -0500
Javadoc
Add an empty line before a Javadoc comment
---
.../release/plugin/mojos/CommonsDistributionStagingMojo.java | 1 +
.../release/plugin/velocity/ReadmeHtmlVelocityDelegate.java | 7 +++++++
2 files changed, 8 insertions(+)
diff --git
a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
index de246ac..3b04693 100644
---
a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
+++
b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java
@@ -86,6 +86,7 @@ public final class CommonsDistributionStagingMojo extends
AbstractMojo {
*/
@Parameter(defaultValue = "${project}", required = true)
private MavenProject project;
+
/**
* The {@link File} that contains a file to the root directory of the
working project. Typically
* this directory is where the <code>pom.xml</code> resides.
diff --git
a/src/main/java/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.java
b/src/main/java/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.java
index 75d27b8..c69fdcc 100644
---
a/src/main/java/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.java
+++
b/src/main/java/org/apache/commons/release/plugin/velocity/ReadmeHtmlVelocityDelegate.java
@@ -32,14 +32,18 @@ import
org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;
* @since 1.3
*/
public final class ReadmeHtmlVelocityDelegate {
+
/**
* A builder class for instantiation of the {@link
ReadmeHtmlVelocityDelegate}.
*/
public static final class ReadmeHtmlVelocityDelegateBuilder {
+
/** The maven artifactId to use in the <code>README.vm</code>
template. */
private String artifactId;
+
/** The maven version to use in the <code>README.vm</code> template. */
private String version;
+
/** The site url to use in the <code>README.vm</code> template. */
private String siteUrl;
@@ -92,9 +96,11 @@ public final class ReadmeHtmlVelocityDelegate {
return this;
}
}
+
/** The location of the velocity template for this class. */
private static final String TEMPLATE =
"resources/org/apache/commons/release/plugin"
+ "/velocity/README.vm";
+
/**
* Gets the {@link ReadmeHtmlVelocityDelegateBuilder} for constructing the
{@link ReadmeHtmlVelocityDelegate}.
*
@@ -103,6 +109,7 @@ public final class ReadmeHtmlVelocityDelegate {
public static ReadmeHtmlVelocityDelegateBuilder builder() {
return new ReadmeHtmlVelocityDelegateBuilder();
}
+
/** This is supposed to represent the maven artifactId. */
private final String artifactId;