Skip to content

Commit d1f95df

Browse files
committed
Allow running single test class from Maven via -Dtest=
1 parent 6ba9c4d commit d1f95df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,9 @@
262262
<artifactId>maven-surefire-plugin</artifactId>
263263
<version>${surefireVersion}</version>
264264
<configuration>
265-
<test>org/junit/tests/AllTests.java</test>
265+
<includes>
266+
<include>org/junit/tests/AllTests.java</include>
267+
</includes>
266268
<useSystemClassLoader>true</useSystemClassLoader>
267269
<enableAssertions>false</enableAssertions>
268270
</configuration>

0 commit comments

Comments
 (0)