Skip to content

Commit 07f12af

Browse files
committed
Javadoc
1 parent fbf4639 commit 07f12af

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo {
111111
@Parameter(defaultValue = "false", property = "commons.release.isDistModule")
112112
private Boolean isDistModule;
113113

114+
/**
115+
* Constructs a new instance.
116+
*/
117+
public CommonsDistributionDetachmentMojo() {
118+
// empty
119+
}
120+
114121
/**
115122
* A helper method to copy the newly detached artifacts to <code>target/commons-release-plugin</code>
116123
* so that the {@link CommonsDistributionStagingMojo} can find the artifacts later.

src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ public class CommonsDistributionStagingMojo extends AbstractMojo {
7878

7979
/** The name of the signature validation shell script to be checked into the dist svn repo. */
8080
private static final String SIGNATURE_VALIDATOR_NAME = "signature-validator.sh";
81+
8182
/**
8283
* The {@link MavenProject} object is essentially the context of the maven build at
8384
* a given time.
8485
*/
8586
@Parameter(defaultValue = "${project}", required = true)
8687
private MavenProject project;
87-
8888
/**
8989
* The {@link File} that contains a file to the root directory of the working project. Typically
9090
* this directory is where the <code>pom.xml</code> resides.
@@ -189,6 +189,13 @@ public class CommonsDistributionStagingMojo extends AbstractMojo {
189189
*/
190190
private File distRcVersionDirectory;
191191

192+
/**
193+
* Constructs a new instance.
194+
*/
195+
public CommonsDistributionStagingMojo() {
196+
// empty
197+
}
198+
192199
/**
193200
* Builds up <code>README.html</code> and <code>HEADER.html</code> that reside in following.
194201
* <ul>

src/main/java/org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojo.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public class CommonsSiteCompressionMojo extends AbstractMojo {
5959
private File workingDirectory;
6060

6161
/**
62+
* The site output directory.
6263
*/
6364
@Parameter(defaultValue = "${project.build.directory}/site", property = "commons.siteOutputDirectory")
6465
private File siteDirectory;
@@ -83,6 +84,13 @@ public class CommonsSiteCompressionMojo extends AbstractMojo {
8384
*/
8485
private List<File> filesToCompress;
8586

87+
/**
88+
* Constructs a new instance.
89+
*/
90+
public CommonsSiteCompressionMojo() {
91+
// empty
92+
}
93+
8694
/**
8795
* Given the <code>directoryToZip</code> we add the <code>file</code> to the ZIP archive represented by
8896
* <code>zos</code>.

src/main/java/org/apache/commons/release/plugin/mojos/CommonsStagingCleanupMojo.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@ public class CommonsStagingCleanupMojo extends AbstractMojo {
131131
@Component
132132
private SettingsDecrypter settingsDecrypter;
133133

134+
/**
135+
* Constructs a new instance.
136+
*/
137+
public CommonsStagingCleanupMojo() {
138+
// empty
139+
}
140+
134141
@Override
135142
public void execute() throws MojoExecutionException, MojoFailureException {
136143
if (!isDistModule) {

0 commit comments

Comments
 (0)