Skip to content

Commit

Permalink
Add maven settings for executing ITs on hudson.eclipse.org
Browse files Browse the repository at this point in the history
Create new subfolder tycho-releng/ which contains
machine-specific configuration files.
We need a custom settings.xml for successfully
executing integration tests on hudson.eclipse.org.
  • Loading branch information
jsievers committed Dec 16, 2011
1 parent 9ba5f15 commit 3c40ed8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tycho-releng/settings-its-eclipse-org.xml
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- settings file to be used for executing tycho integration tests (-Dtycho.testSettings=...) on hudson.eclipse.org -->
<proxies>
<proxy>
<id>httpproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.eclipse.org</host>
<port>9898</port>
<!-- need to add localhost to nonProxyHosts otherwise ITs contacting localhost will fail-->
<nonProxyHosts>localhost|127.0.0.1|*.eclipse.org|172.30.206.*</nonProxyHosts>
</proxy>
<proxy>
<id>httpsproxy</id>
<active>true</active>
<protocol>https</protocol>
<host>proxy.eclipse.org</host>
<port>9898</port>
<!-- need to add localhost to nonProxyHosts otherwise ITs contacting localhost will fail-->
<nonProxyHosts>localhost|127.0.0.1|*.eclipse.org|172.30.206.*</nonProxyHosts>
</proxy>
</proxies>
</settings>

0 comments on commit 3c40ed8

Please sign in to comment.