Skip to content

Commit 8df3e77

Browse files
committed
warnings
1 parent 998572b commit 8df3e77

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

cucumber-archetype-parallel-advance/pom.xml

+10-17
Original file line numberDiff line numberDiff line change
@@ -210,23 +210,16 @@
210210
<target>20</target>
211211
</configuration>
212212
</plugin>
213-
<!-- <plugin>-->
214-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
215-
<!-- <artifactId>maven-surefire-plugin</artifactId>-->
216-
<!-- <version>3.3.0</version>-->
217-
<!-- <configuration>-->
218-
<!-- <properties>-->
219-
<!-- <property>-->
220-
<!-- <name>junit.platform.output.capture.stdout</name>-->
221-
<!-- <value>true</value>-->
222-
<!-- </property>-->
223-
<!-- <property>-->
224-
<!-- <name>junit.platform.output.capture.stderr</name>-->
225-
<!-- <value>true</value>-->
226-
<!-- </property>-->
227-
<!-- </properties>-->
228-
<!-- </configuration>-->
229-
<!-- </plugin>-->
213+
<plugin>
214+
<groupId>org.apache.maven.plugins</groupId>
215+
<artifactId>maven-surefire-plugin</artifactId>
216+
<version>3.0.0-M7</version>
217+
<configuration>
218+
<includes>
219+
<include>**/*Test.java</include>
220+
</includes>
221+
</configuration>
222+
</plugin>
230223
<plugin>
231224
<groupId>io.qameta.allure</groupId>
232225
<artifactId>allure-maven</artifactId>

cucumber-archetype-parallel-advance/src/test/java/workshopcucumberadvance/Test/StepsDef/Runner/RunCucumberTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
@ConfigurationParameter(key = PARALLEL_EXECUTION_ENABLED_PROPERTY_NAME, value = "false")
2121
// this will skip the @SkipThisTag by default or it will execute the tags that you specify
2222
//"@RunThisTag and not @RunThisTag"
23-
@ConfigurationParameter(key = FILTER_TAGS_PROPERTY_NAME, value = "@ExampleLogin")
23+
//@ConfigurationParameter(key = FILTER_TAGS_PROPERTY_NAME, value = "@ExampleLogin")
2424
public class RunCucumberTest {
2525
}

0 commit comments

Comments
 (0)