Skip to content

Commit

Permalink
[MSOURCES-139] Fix typo in AbstractSourceJarMojo exception
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored and michael-o committed Jun 23, 2023
1 parent 436966e commit 1edeea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ protected void packageSources(List<MavenProject> theProjects) throws MojoExecuti
for (Artifact attachedArtifact : project.getAttachedArtifacts()) {
if (isAlreadyAttached(attachedArtifact, project, getClassifier())) {
getLog().error("We have duplicated artifacts attached.");
throw new MojoExecutionException("Presumably you have configured maven-source-plugn "
throw new MojoExecutionException("Presumably you have configured maven-source-plugin "
+ "to execute twice times in your build. You have to configure a classifier "
+ "for at least on of them.");
}
Expand Down

1 comment on commit 1edeea4

@timonzi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is still a typo: "for at least on of them"

Please sign in to comment.