Skip to content

Commit

Permalink
Fixed #409 - Remove superfluous debugging outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 20, 2023
1 parent 44df70c commit 647fa89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
:issue-399: https://github.com/khmarbaise/maven-it-extension/issues/399[Fixed #399]
:issue-401: https://github.com/khmarbaise/maven-it-extension/issues/401[Fixed #401]
:issue-405: https://github.com/khmarbaise/maven-it-extension/issues/405[Fixed #405]
:issue-409: https://github.com/khmarbaise/maven-it-extension/issues/409[Fixed #409]
:issue-??: https://github.com/khmarbaise/maven-it-extension/issues/??[Fixed #??]

:release_0_13_0: https://github.com/khmarbaise/maven-it-extension/milestone/13
Expand All @@ -69,6 +70,7 @@

* {issue-326} - Failing IT's based on Maven 3.8.7
* {issue-329} - Upgrade to smpp 5.3.14
* {issue-409} - Remove superfluous debugging outputs


*Breaking Changes*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ public class InstallMojo extends AbstractMojo {
private String scope;

public void execute() throws MojoExecutionException, MojoFailureException {
getLog().info("Creating test repository");
createTestRepository();

Map<String, org.eclipse.aether.artifact.Artifact> resolvedArtifacts = new LinkedHashMap<>();
Expand Down Expand Up @@ -153,7 +152,6 @@ private void resolveProjectArtifacts(Map<String, org.eclipse.aether.artifact.Art

project.getAttachedArtifacts().stream()
.map(RepositoryUtils::toArtifact)
.peek(s -> getLog().info("Artifact: g:" + s.getGroupId() + " a:" + s.getArtifactId() + " v:" + s.getVersion() + " " + s.getFile()))
.forEach(a -> resolvedArtifacts.put(ArtifactIdUtils.toId(a), a));
}

Expand Down

0 comments on commit 647fa89

Please sign in to comment.