|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>com.assertthat</groupId> |
| 8 | + <artifactId>assertthat-bdd-maven-demo</artifactId> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + <packaging>jar</packaging> |
| 11 | + |
| 12 | + <dependencies> |
| 13 | + <dependency> |
| 14 | + <groupId>io.cucumber</groupId> |
| 15 | + <artifactId>cucumber-java</artifactId> |
| 16 | + <version>6.1.1</version> |
| 17 | + <scope>test</scope> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>com.assertthat</groupId> |
| 21 | + <artifactId>selenium-shutterbug</artifactId> |
| 22 | + <version>0.9.3</version> |
| 23 | + </dependency> |
| 24 | + |
| 25 | + <dependency> |
| 26 | + <groupId>org.seleniumhq.selenium</groupId> |
| 27 | + <artifactId>selenium-java</artifactId> |
| 28 | + <version>3.141.59</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>io.github.bonigarcia</groupId> |
| 32 | + <artifactId>webdrivermanager</artifactId> |
| 33 | + <version>4.0.0</version> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + |
| 37 | + <dependency> |
| 38 | + <groupId>io.cucumber</groupId> |
| 39 | + <artifactId>cucumber-junit</artifactId> |
| 40 | + <version>6.1.1</version> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>net.masterthought</groupId> |
| 46 | + <artifactId>cucumber-reporting</artifactId> |
| 47 | + <version>5.3.0</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>junit</groupId> |
| 51 | + <artifactId>junit</artifactId> |
| 52 | + <version>4.12</version> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + |
| 56 | + |
| 57 | + </dependencies> |
| 58 | + |
| 59 | + |
| 60 | + <build> |
| 61 | + <plugins> |
| 62 | + <plugin> |
| 63 | + <groupId>org.apache.maven.plugins</groupId> |
| 64 | + <artifactId>maven-compiler-plugin</artifactId> |
| 65 | + <version>3.7.0</version> |
| 66 | + <configuration> |
| 67 | + <encoding>UTF-8</encoding> |
| 68 | + <source>1.8</source> |
| 69 | + <target>1.8</target> |
| 70 | + <compilerArgument>-Werror</compilerArgument> |
| 71 | + </configuration> |
| 72 | + </plugin> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 76 | + <executions> |
| 77 | + <execution> |
| 78 | + <goals> |
| 79 | + <goal>integration-test</goal> |
| 80 | + </goals> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + </plugin> |
| 84 | + <!--AssertThat BDD plugin definition start--> |
| 85 | + <plugin> |
| 86 | + <groupId>com.assertthat.plugins</groupId> |
| 87 | + <artifactId>assertthat-bdd-maven-plugin</artifactId> |
| 88 | + <version>1.6</version> |
| 89 | + <configuration> |
| 90 | + <projectId> |
| 91 | + <!--Jira project id e.g. 10001--> |
| 92 | + </projectId> |
| 93 | + <!--Optional can be supplied as environment variable ASSERTTHAT_ACCESS_KEY --> |
| 94 | + <accessKey> |
| 95 | + <!-- ASSERTTHAT_ACCESS_KEY --> |
| 96 | + </accessKey> |
| 97 | + <!--Optional can be supplied as environment variable ASSERTTHAT_SECRET_KEY --> |
| 98 | + <secretKey> |
| 99 | + <!-- ASSERTTHAT_SECRET_KEY --> |
| 100 | + </secretKey> |
| 101 | + </configuration> |
| 102 | + <executions> |
| 103 | + <execution> |
| 104 | + <configuration> |
| 105 | + <!--Optional - default ./features--> |
| 106 | + <outputFolder>src/test/resources/com/assertthat/features</outputFolder> |
| 107 | + <mode>automated</mode> |
| 108 | + <!--suppress UnresolvedMavenProperty --> |
| 109 | + <!--<tags>(@smoke or @ui) and (not @slow)</tags>--> |
| 110 | + </configuration> |
| 111 | + <id>features</id> |
| 112 | + <goals> |
| 113 | + <goal>features</goal> |
| 114 | + </goals> |
| 115 | + <phase>pre-integration-test</phase> |
| 116 | + </execution> |
| 117 | + <execution> |
| 118 | + <id>report</id> |
| 119 | + <goals> |
| 120 | + <goal>report</goal> |
| 121 | + </goals> |
| 122 | + <phase>post-integration-test</phase> |
| 123 | + <configuration> |
| 124 | + <!--Optional - default ./report--> |
| 125 | + <jsonReportFolder>target/report/surefire-reports/cucumber/</jsonReportFolder> |
| 126 | + <!--Optional - default - **/*.json --> |
| 127 | + <jsonReportIncludePattern>**/cucumber.json</jsonReportIncludePattern> |
| 128 | + <metadata>{"user ": "${user.name}"}</metadata> |
| 129 | + </configuration> |
| 130 | + </execution> |
| 131 | + </executions> |
| 132 | + </plugin> |
| 133 | + <!--AssertThat BDD plugin definition end--> |
| 134 | + </plugins> |
| 135 | + </build> |
| 136 | + |
| 137 | + <properties> |
| 138 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 139 | + </properties> |
| 140 | + |
| 141 | +</project> |
0 commit comments