@CucumberOptions(
features = "src/cucumber/features/",
glue={"src/cucumber/"},
dryRun = false,
monochrome = true
)
public class CucumberRunnerTest {
}
=====================================
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-Werror</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.18.1</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>StepDefinitions1.java</include>
<include>CucumberRunnerTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/e678c015-532d-44f1-b77b-701b1816e8a6%40googlegroups.com.--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
I assume maven configured perfectly , go to folder where pom file existing ,open command prompt , execute this command "man clean compile test -X"
Regards,
Kiran Edupuganti
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CANikZL%3DLqD8nShN%2BzTJcmN6uH%3D9y73_7Xy7kFqKoUSXXrMgghQ%40mail.gmail.com.