I'm trying to run Atlassian SDK 8.2.7 (which works fine from my home PC) trough corporate proxy.
I've got the proxy settings (seems correct, cuz git works fine trough it) and trying to construct argument string for atlas-run
atlas-run -Dhttps.proxyHost=<my corporate proxy host> -Dhttps.proxyPort=8080
or
atlas-run -Dhttps.proxyHost=<my corporate proxy host> -Dhttps.proxyPort=8080 -DallowGoogleTracking=false
or even
atlas-run --jvmargs -Dhttp.proxyHost=<my corporate proxy host> -Dhttp.proxyPort=8080 -Dhttps.proxyHost=<my corporate proxy host> -Dhttps.proxyPort=8080 -DallowGoogleTracking=false
but neither or this works and build fails with error message:
[ERROR] Failed to execute goal com.atlassian.maven.plugins:jira-maven-plugin:8.1.2: generate-rest-docs (default-generate-rest-docs) on project REST4DevOps: Unable to execute mojo: Plugin org.apache.maven.plugins:maven-javadoc-plugin:3.1.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-javadoc-plugin:jar:3.1.1: Could not transfer artifact org.apache.maven.plugins:maven-javadoc-plugin:pom:3.1.1 from/to atlassian-public (https://maven.atlassian.com/repository/public): Error transferring file: Remote host terminated the handshake from https://maven.atlassian.com/repository/public/org/apache/maven /plugins/maven-javadoc-plugin/3.1.1/maven-javadoc-plugin-3.1.1.pom: SSL peer shut down incorrectly -> [Help 1]
Atlassian documentation gives no clear hint hot to invoke atlas-run correcly. Guess I should put autoriztion credentials somewhere.
I'd appreciate any hint.