We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee0592 commit 2548858Copy full SHA for 2548858
src/test/java/MavenTest.java
@@ -112,7 +112,7 @@ public boolean accept(File current, String name) {
112
Collection<DynamicTest> runMavenExecTests() {
113
return PROBLEMS.stream()
114
.map(problem -> DynamicTest.dynamicTest("Test problem: " + problem, () -> {
115
- String command = String.format("mvn exec:exec -Dproblem=%s", problem);
+ String command = String.format("mvn antrun:run@run-uva -Dproblem=%s", problem);
116
System.out.println("Executing command for " + problem + ": " + command);
117
118
Process process;
0 commit comments