diff --git a/samples/forecastweatherapi-recommended/src/gateway/shared-pom.xml b/samples/forecastweatherapi-recommended/src/gateway/shared-pom.xml index f78acb9..e1d22bf 100755 --- a/samples/forecastweatherapi-recommended/src/gateway/shared-pom.xml +++ b/samples/forecastweatherapi-recommended/src/gateway/shared-pom.xml @@ -73,7 +73,7 @@ io.apigee.build-tools.enterprise4g apigee-edge-maven-plugin - 1.1.0 + 1.1.2-SNAPSHOT configure-bundle diff --git a/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/DeployMojo.java b/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/DeployMojo.java index 0ae8960..d6af822 100644 --- a/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/DeployMojo.java +++ b/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/DeployMojo.java @@ -266,7 +266,6 @@ public void doDelete(String revision) throws IOException, MojoFailureException,E public void execute() throws MojoExecutionException, MojoFailureException { try { - fixOSXNonProxyHosts(); init(); diff --git a/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/GatewayAbstractMojo.java b/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/GatewayAbstractMojo.java index ea29685..0eec479 100644 --- a/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/GatewayAbstractMojo.java +++ b/src/main/java/io/apigee/buildTools/enterprise4g/mavenplugin/GatewayAbstractMojo.java @@ -270,20 +270,6 @@ public boolean isSkip() { public void setSkip(boolean skip) { this.skip = skip; } - - - protected void fixOSXNonProxyHosts() { - - // This is required to work around a Mac OS X bug. Probably would be better to be more selective about this. Only override if we're - // actually on OS X. Or look at the value and only unset if it contains the problematic wildcard value. - try { - System.setProperty("http.nonProxyHosts", ""); - } - catch (RuntimeException e) { - // just try to continue - getLog().error(e); - } - } public Long getDelay() { return this.delay;