+
|
@@ -1075,7 +1122,8 @@ Example of Project Full Path: CxServer/team1/projectname."/>
Enable Project's policy enforcement
- |
+
|
diff --git a/cxplugin-server/src/main/resources/buildServerResources/testConnection.js b/cxplugin-server/src/main/resources/buildServerResources/testConnection.js
index 85169a7..526e9f7 100644
--- a/cxplugin-server/src/main/resources/buildServerResources/testConnection.js
+++ b/cxplugin-server/src/main/resources/buildServerResources/testConnection.js
@@ -3,7 +3,14 @@ window.Checkmarx = {
return {
serverUrl: $('cxServerUrl').value,
username: $('cxUsername').value,
- pssd: $('prop:encrypted:cxPassword').value ? $('prop:encrypted:cxPassword').value : $('cxPassword').value
+ pssd: $('prop:encrypted:cxPassword').value ? $('prop:encrypted:cxPassword').value : $('cxPassword').value,
+ isProxy: $('cxIsProxy').checked,
+ // isProxy: $('cxGlobalIsProxy').checked,
+ proxyHost: $('cxGlobalProxyHost').value,
+ proxyPort: $('cxGlobalProxyPort').value,
+ proxyUser: $('cxGlobalProxyUser').value,
+ proxyPassword: $('cxGlobalProxyPassword').value,
+ proxyHttps: $('cxGlobalProxyHttps').checked
};
},
@@ -21,6 +28,12 @@ window.Checkmarx = {
serverUrl: $('cxGlobalServerUrl').value,
username: $('cxGlobalUsername').value,
pssd: $('cxGlobalPassword').value,
+ isProxy: $('cxGlobalIsProxy').checked,
+ proxyHost: $('cxGlobalProxyHost').value,
+ proxyPort: $('cxGlobalProxyPort').value,
+ proxyUser: $('cxGlobalProxyUser').value,
+ proxyPassword: $('cxGlobalProxyPassword').value,
+ proxyHttps: $('cxGlobalProxyHttps').checked,
global: true
}
},
diff --git a/pom.xml b/pom.xml
index dc8d338..a37e00e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.checkmarx.teamcity
cxplugin
- 2022.2.1
+ 2022.2.2
pom
@@ -11,7 +11,7 @@
checkmarx-ltd_TeamCity-Plugin1
- ${artifactId}
+ ${project.artifactId}
checkmarx-ltd
https://sonarcloud.io
|