Remove AT&T HTTP proxy URL from Dockerfile(s) 61/5361/4
authorAlexis de Talhouët <adetalhouet89@gmail.com>
Mon, 6 Mar 2017 20:51:13 +0000 (15:51 -0500)
committerAlexis de Talhouët <adetalhouet89@gmail.com>
Tue, 7 Mar 2017 13:00:17 +0000 (13:00 +0000)
As this is now open-source code, they shouldn't be any reference to
AT&T proxy settings.
One can still configure the HTTP proxy by providing its proxy address,
and by enabling it in docker-files/settings.xml.

Change-Id: I190dc9e01349a9948b2103fb1791191e89b7399d
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
packages/docker/src/main/docker/docker-files/settings.xml

index ff9343b..57c2179 100644 (file)
@@ -26,11 +26,11 @@ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.o
      <proxies>
        <proxy>
         <id>optional</id>
-        <active>true</active>
+        <active>false</active>
         <protocol>http</protocol>
-        <host>one.proxy.att.com</host>
+        <host></host>
         <port>8080</port>
-        <nonProxyHosts>localhost,127.0.0.1,*.att.com</nonProxyHosts>
+        <nonProxyHosts>localhost,127.0.0.1</nonProxyHosts>
        </proxy>
      </proxies>