Skip to content

Commit

Permalink
Update MavenUtility.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Reza Rahman authored Sep 30, 2023
1 parent 093189d commit cdb091b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/main/java/org/eclipse/starter/ui/MavenUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public static void invokeMavenArchetype(String archetypeGroupId, String archetyp

if (result != 0) {
StringBuffer mavenCommand = new StringBuffer("mvn");
options.forEach(o -> mavenCommand.append(" " + o));
options.forEach(o -> mavenCommand.append(" " + o));

throw new RuntimeException(
"Failed to invoke Maven Archetype command: " + mavenCommand.toString());
throw new RuntimeException(
"Failed to invoke Maven Archetype command: " + mavenCommand.toString());
}
}
}

0 comments on commit cdb091b

Please sign in to comment.