Remove default values for proxy settings in generated ant script

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@155674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier
2005-02-28 07:04:28 +00:00
parent a228a19106
commit 56cf6c2c8d
3 changed files with 9 additions and 9 deletions

View File

@@ -69,10 +69,10 @@
<property name="javadocdir" value="$${basedir}/dist/docs/api"/>
<property name="final.name" value="${maven.final.name}"/>
<property name="proxy.host" value="$${maven.proxy.host}"/>
<property name="proxy.port" value="$${maven.proxy.port}"/>
<property name="proxy.username" value="$${maven.proxy.username}"/>
<property name="proxy.password" value="$${maven.proxy.password}"/>
<property name="proxy.host" value=""/>
<property name="proxy.port" value=""/>
<property name="proxy.username" value=""/>
<property name="proxy.password" value=""/>
<path id="build.classpath">
<j:forEach var="lib" items="${pom.artifacts}">

View File

@@ -88,22 +88,22 @@
<tr>
<td>proxy.host</td>
<td>The proxy host used to download dependencies.</td>
<td>${maven.proxy.host}</td>
<td></td>
</tr>
<tr>
<td>proxy.port</td>
<td>The proxy port.</td>
<td>${maven.proxy.port}</td>
<td></td>
</tr>
<tr>
<td>proxy.username</td>
<td>The username used to connect on proxy. (only if the ant file was generated with a 1.6 compatibility)</td>
<td>${maven.proxy.username}</td>
<td></td>
</tr>
<tr>
<td>proxy.password</td>
<td>The password used to connect on proxy. (only if the ant file was generated with a 1.6 compatibility)</td>
<td>${maven.proxy.password}</td>
<td></td>
</tr>
</table>
</subsection>

View File

@@ -40,7 +40,7 @@
</p>
<p>
For more information on the ant script generated, please see
the <a href="build.html">ant script settings</a> document.
the <a href="ant-settings.html">ant script settings</a> document.
</p>
</section>
</body>