Hi team,
Downloaded assertthat/assertthat-bdd-maven-example Project and did maven build. But Build is failed .
getting below error :
Failed to execute goal com.assertthat.plugins:assertthat-bdd-maven-plugin:1.3:features (features) on project assertthat-bdd-maven-example: Execution features of goal com.assertthat.plugins:assertthat-bdd-maven-plugin:1.3:features failed: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated.
AsserThat BDD Plugin definition :
<plugin>
<groupId>com.assertthat.plugins</groupId>
<artifactId>assertthat-bdd-maven-plugin</artifactId>
<version>1.3</version>
<configuration>
<projectId>14000</projectId>
<!--Optional can be supplied as environment variable ASSERTTHAT_ACCESS_KEY -->
<accessKey>gjlrdd</accessKey>
<!--Optional can be supplied as environment variable ASSERTTHAT_SECRET_KEY -->
<secretKey>XXXXXX</secretKey>
<jiraServerUrl>https://dev-jira.XCompanydomain.com/</jiraServerUrl>
</configuration>
<executions>
<execution>
<configuration>
</configuration>
<id>features</id>
<goals>
<goal>features</goal>
</goals>
<phase>pre-integration-test</phase>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<phase>post-integration-test</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
<!--AssertThat BDD plugin definition end-->