This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 04cbbb33 some nits (#1279)
04cbbb33 is described below
commit 04cbbb337d5e486a6bd03195d1493c8afe394ec2
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Sun Nov 23 13:29:10 2025 -0600
some nits (#1279)
---
.../maven/plugins/assembly/archive/phase/AssemblyArchiverPhase.java | 3 +--
.../org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java | 4 ++--
.../org/apache/maven/plugins/assembly/utils/LineEndingsUtils.java | 4 ++--
3 files changed, 5 insertions(+), 6 deletions(-)
diff --git
a/src/main/java/org/apache/maven/plugins/assembly/archive/phase/AssemblyArchiverPhase.java
b/src/main/java/org/apache/maven/plugins/assembly/archive/phase/AssemblyArchiverPhase.java
index 6d51d0f2..b7960689 100644
---
a/src/main/java/org/apache/maven/plugins/assembly/archive/phase/AssemblyArchiverPhase.java
+++
b/src/main/java/org/apache/maven/plugins/assembly/archive/phase/AssemblyArchiverPhase.java
@@ -43,8 +43,7 @@ public interface AssemblyArchiverPhase {
* the assembly process.
* @throws
org.apache.maven.plugins.assembly.archive.ArchiveCreationException in
case of an archive
*
creation error.
- * @throws
org.apache.maven.plugins.assembly.format.AssemblyFormattingException in
case of a assembly
- *
formatting exception.
+ * @throws
org.apache.maven.plugins.assembly.format.AssemblyFormattingException in
case of an assembly formatting exception.
* @throws
org.apache.maven.plugins.assembly.InvalidAssemblerConfigurationException in
case of an invalid
*
assembler configuration.
*/
diff --git
a/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
b/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
index 814e6f59..bc19ba37 100644
---
a/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
+++
b/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
@@ -284,7 +284,7 @@ public abstract class AbstractAssemblyMojo extends
AbstractMojo implements Assem
private boolean attach;
/**
- * Indicates if zip archives (jar,zip etc) being added to the assembly
should be compressed again. Compressing again
+ * Indicates if zip archives (jar, zip, etc.) being added to the assembly
should be compressed again. Compressing again
* can result in smaller archive size, but gives noticeably longer
execution time.
*
* @since 2.4
@@ -314,7 +314,7 @@ public abstract class AbstractAssemblyMojo extends
AbstractMojo implements Assem
/**
* Allows additional configuration options that are specific to a
particular type of archive format. This is
- * intended to capture an XML configuration that will be used to
reflectively setup the options on the archiver
+ * intended to capture an XML configuration that will be used to
reflectively set up the options on the archiver
* instance. <br/> To see the possible options for archiver configuration
visit the
* <a
href="https://codehaus-plexus.github.io/plexus-archiver/apidocs/org/codehaus/plexus/archiver/Archiver.html">
* Plexus Archiver Documentation</a> <br/> For instance, to direct an
assembly with the "ear" format to use a
diff --git
a/src/main/java/org/apache/maven/plugins/assembly/utils/LineEndingsUtils.java
b/src/main/java/org/apache/maven/plugins/assembly/utils/LineEndingsUtils.java
index ead560c6..3d7d2d6a 100644
---
a/src/main/java/org/apache/maven/plugins/assembly/utils/LineEndingsUtils.java
+++
b/src/main/java/org/apache/maven/plugins/assembly/utils/LineEndingsUtils.java
@@ -44,7 +44,7 @@ public final class LineEndingsUtils {
*
* @param source The source file, not null
* @param dest The destination file, not null
- * @param lineEndings This is the result of the getLineEndingChars(..)
method in this utility class; the actual
+ * @param lineEndings This is the result of the getLineEndingChars()
method in this utility class; the actual
* line-ending characters, not null.
* @param atEndOfFile The end-of-file line ending, if true then the
resulting file will have a new line at the end
* even if the input didn't have one, if false then the
resulting file will have no new line at
@@ -114,7 +114,7 @@ public final class LineEndingsUtils {
* Converts the line endings of a file, writing a new file. The encoding
of reading and writing can be specified.
*
* @param in The source reader
- * @param lineEndings This is the result of the getLineEndingChars(..)
method in this utility class; the actual
+ * @param lineEndings This is the result of the getLineEndingChars()
method in this utility class; the actual
* line-ending characters, not null.
* @return an input stream that enforces a specifi line ending style
*/