Created
April 27, 2019 00:20
-
-
Save thesurenk/a1fd60f0f3c496e7abe913dae3ef1525 to your computer and use it in GitHub Desktop.
Including Cucumber tests in pom.xml files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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