Skip to content

Instantly share code, notes, and snippets.

@ksurendra
Created April 27, 2019 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksurendra/a1fd60f0f3c496e7abe913dae3ef1525 to your computer and use it in GitHub Desktop.
Save ksurendra/a1fd60f0f3c496e7abe913dae3ef1525 to your computer and use it in GitHub Desktop.
Including Cucumber tests in pom.xml files
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>install-tester</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<arguments>
<argument>install</argument>
<argument>--no-save</argument>
<argument>./assets/c1-code-test-take-home-tester-${takeHomeTester.version}.tgz</argument>
<argument>--prefix</argument>
<argument>.</argument>
</arguments>
</configuration>
</execution>
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment