File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
src/main/java/com/assertthat Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 33 <groupId >com.assertthat.plugins</groupId >
44 <artifactId >assertthat-bdd-maven-plugin</artifactId >
55 <packaging >maven-plugin</packaging >
6- <version >1.7.2 </version >
6+ <version >1.7.3 </version >
77 <name >assertthat-bdd-maven-plugin</name >
88 <description >AssertThat BDD Jira maven plugin</description >
99 <url >http://www.assertthat.com</url >
7777 <dependency >
7878 <groupId >com.assertthat.plugins</groupId >
7979 <artifactId >assertthat-bdd-standalone</artifactId >
80- <version >1.9.10 </version >
80+ <version >1.9.11 </version >
8181 </dependency >
8282 </dependencies >
8383 <build >
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ public class FeaturesMojo extends AbstractMojo {
4646 @ Parameter (property = "secretKey" )
4747 private String secretKey ;
4848
49+ @ Parameter (property = "token" )
50+ private String token ;
51+
4952 @ Parameter (property = "projectId" , required = true )
5053 private String projectId ;
5154 @ Parameter (property = "tags" )
@@ -82,6 +85,7 @@ public void execute()
8285 ArgumentsFeatures arguments = new ArgumentsFeatures (
8386 accessKey ,
8487 secretKey ,
88+ token ,
8589 projectId ,
8690 outputFolder ,
8791 proxyURI ,
@@ -110,6 +114,7 @@ public void execute()
110114 APIUtil apiUtil = new APIUtil (arguments .getProjectId (),
111115 arguments .getAccessKey (),
112116 arguments .getSecretKey (),
117+ arguments .getToken (),
113118 arguments .getProxyURI (),
114119 arguments .getProxyUsername (),
115120 arguments .getProxyPassword (),
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ public class ReportMojo extends AbstractMojo {
4545 private String accessKey ;
4646 @ Parameter (property = "secretKey" )
4747 private String secretKey ;
48+ @ Parameter (property = "token" )
49+ private String token ;
4850 @ Parameter (property = "projectId" , required = true )
4951 private String projectId ;
5052 @ Parameter (property = "runName" )
@@ -85,6 +87,7 @@ public void execute()
8587 ArgumentsReport arguments = new ArgumentsReport (
8688 accessKey ,
8789 secretKey ,
90+ token ,
8891 projectId ,
8992 runName ,
9093 jsonReportFolder ,
@@ -113,6 +116,7 @@ public void execute()
113116 APIUtil apiUtil = new APIUtil (arguments .getProjectId (),
114117 arguments .getAccessKey (),
115118 arguments .getSecretKey (),
119+ arguments .getToken (),
116120 arguments .getProxyURI (),
117121 arguments .getProxyUsername (),
118122 arguments .getProxyPassword (),
You can’t perform that action at this time.
0 commit comments