Skip to content

Commit d5dae00

Browse files
authored
Update README.md
1 parent bcb7d51 commit d5dae00

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Build Status](https://travis-ci.org/assertthat/assertthat-bdd-maven-plugin.svg?branch=master)](https://travis-ci.org/assertthat/assertthat-bdd-gradle-tasks)
21
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.assertthat.plugins/assertthat-bdd-gradle-tasks/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.assertthat.plugins/assertthat-bdd-gradle-tasks)
32

43
## Description
@@ -18,7 +17,7 @@ Full plugin configuration below, optional properties can be omitted
1817
```groovy
1918
buildscript {
2019
dependencies{
21-
classpath group: 'com.assertthat.plugins', name: 'assertthat-bdd-gradle-tasks', version: '1.9.1'
20+
classpath group: 'com.assertthat.plugins', name: 'assertthat-bdd-gradle-tasks', version: '1.9.3'
2221
}
2322
}
2423
@@ -29,7 +28,10 @@ task downloadFeatures(type: FeaturesTask){
2928
accessKey = "ASSERTTHAT_ACCESS_KEY"
3029
/*Optional can be supplied as environment variable ASSERTTHAT_SECRET_KEY*/
3130
secretKey = "ASSERTTHAT_SECRET_KEY"
32-
/*Used for jira server integration only. If using cloud remove this option*/
31+
<!--Optional can be supplied as environment variable ASSERTTHAT_TOKEN -->
32+
<!-- Jira API token (for DataCenter only) as an alternative to accessKey/secretKey basic auth -->
33+
token = "ASSERTTHAT_TOKEN"
34+
/*Used for Jira Server/DataCenter integration only. If using cloud remove this option*/
3335
jiraServerUrl = "http://mycompanyjira.com"
3436
/*Optional - default ./features*/
3537
outputFolder = "src/test/resources"
@@ -60,7 +62,10 @@ task submitReport(type: ReportTask){
6062
accessKey = "ASSERTTHAT_ACCESS_KEY"
6163
/*Optional can be supplied as environment variable ASSERTTHAT_SECRET_KEY*/
6264
secretKey = "ASSERTTHAT_SECRET_KEY"
63-
/*Used for jira server integration only. If using cloud remove this option*/
65+
<!--Optional can be supplied as environment variable ASSERTTHAT_TOKEN -->
66+
<!-- Jira API token (for DataCenter only) as an alternative to accessKey/secretKey basic auth -->
67+
token = "ASSERTTHAT_TOKEN"
68+
/*Used for Jira Server/DataCenter integration only. If using cloud remove this option*/
6469
jiraServerUrl = "http://mycompanyjira.com"
6570
/*The name of the run - default 'Test run dd MMM yyyy HH:mm:ss'*/
6671
runName = "Dry Tests Run"

0 commit comments

Comments
 (0)