Skip to content

Commit 2548858

Browse files
committed
fix(test): update Maven command in test to use antrun
1 parent 6ee0592 commit 2548858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/MavenTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public boolean accept(File current, String name) {
112112
Collection<DynamicTest> runMavenExecTests() {
113113
return PROBLEMS.stream()
114114
.map(problem -> DynamicTest.dynamicTest("Test problem: " + problem, () -> {
115-
String command = String.format("mvn exec:exec -Dproblem=%s", problem);
115+
String command = String.format("mvn antrun:run@run-uva -Dproblem=%s", problem);
116116
System.out.println("Executing command for " + problem + ": " + command);
117117

118118
Process process;

0 commit comments

Comments
 (0)