proxy support for plugin not complete enough
--------------------------------------------
Key: MJAVADOC-108
URL: http://jira.codehaus.org/browse/MJAVADOC-108
Project: Maven 2.x Javadoc Plugin
Issue Type: Bug
Affects Versions: 2.1
Reporter: Baerrach bonDierne
AbstractJavadocMojo.java supports
* @parameter expression="${proxyHost}"
default-value="${settings.activeProxy.host}"
* @parameter expression="${proxyPort}"
default-value="${settings.activeProxy.port}"
but does not include the full capabilities of settings.xml
This needs extending.
line 981:
{code:language=java}
if ( StringUtils.isNotEmpty( proxyHost ) && proxyPort > 0 )
{
cmd.createArgument().setValue( "-J-DproxyHost=" + proxyHost );
cmd.createArgument().setValue( "-J-DproxyPort=" + proxyPort );
}
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira