File tree 1 file changed +2
-3
lines changed
gradle-plugin/src/main/java/com/contrastsecurity/gradle/plugin
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ public static Path retrieveAgent(
143
143
final String jarPath ,
144
144
final String uuid ,
145
145
final Project project ) {
146
- // Initially attempt to run agent from the previously configured location
146
+ // Initially attempt to get agent from the previously configured location
147
147
if (jarPath != null ) {
148
148
final Path agent = Paths .get (jarPath );
149
149
if (!Files .exists (agent )) {
@@ -160,7 +160,6 @@ public static Path retrieveAgent(
160
160
System .out .println ("Agent jar found at " + project .getProjectDir ().getPath ());
161
161
return agent ;
162
162
}
163
- System .out .println ("Connected to Contrast at: " + connection .getRestApiURL ());
164
163
165
164
System .out .println ("Attempting to retrieve agent from TeamServer" );
166
165
// If no jar is provided, and no jarpath configured, attempt to retrieve the agent from TS
@@ -204,7 +203,7 @@ private ContrastSDK connectToContrast() {
204
203
final UserAgentProduct gradle = UserAgentProduct .of ("contrast-gradle-plugin" );
205
204
return new ContrastSDK .Builder (config .getUsername (), config .getServiceKey (), config .getApiKey ())
206
205
.withApiUrl (config .getApiUrl ())
207
- // TODO figure out how to define this proxy
206
+ // TODO JAVA-8883 figure out how to define this proxy
208
207
// .withProxy(proxy) //with proxy?
209
208
.withUserAgentProduct (gradle )
210
209
.build ();
You can’t perform that action at this time.
0 commit comments