Skip to content
Snippets Groups Projects
Commit 22228c24 authored by jez04's avatar jez04
Browse files

fix: log param

parent 19e3aa26
No related merge requests found
......@@ -358,7 +358,7 @@ public class FixDirStructure {
.compile("/project/dependencies/dependency/artifactId[text() = '" + artifactId + "']")
.evaluate(doc, XPathConstants.NODE);
if (libNode == null) {
log.log(Level.INFO, "Inserting lib '{}' into pom.xml", artifactId);
log.log(Level.INFO, "Inserting lib '{0}' into pom.xml", artifactId);
Node dependency = doc.createElement("dependency");
dependency
.appendChild(doc.createElement("groupId").appendChild(doc.createTextNode(groupId)).getParentNode());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment