[ANN] Apache Maven Javadoc Plugin 3.0.0 Released

2017-12-06 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache  
Maven Javadoc Plugin, version 3.0.0


This plugin uses the Javadoc tool to generate javadocs for the specified  
project.


https://maven.apache.org/plugins/maven-javadoc-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-javadoc-plugin
  3.0.0


You can download the appropriate sources etc. from the download page:

https://maven.apache.org/plugins/maven-javadoc-plugin/download.cgi


Release Notes - Maven Javadoc Plugin - Version 3.0.0

** Bug
* [MJAVADOC-467] - Aggregator reports should not require modules to be  
installed/deployed.

* [MJAVADOC-472] - Conflicting dependency of plexus-utils are used
* [MJAVADOC-476] - Remove link to non-existing Codehaus wiki
* [MJAVADOC-477] - Use Javadoc instead of JavaDoc in the reporting  
output
* [MJAVADOC-488] - Latest jdk9 version causes  
StringIndexOutOfBoundsException

* [MJAVADOC-489] - Javadoc plugin needs to set module path
* [MJAVADOC-494] - javadoc:aggregate ignores repositories declared in  
sub-modules

* [MJAVADOC-497] - javadoc:aggregate ignores excludePackageNames
* [MJAVADOC-498] - "module not found" when Java 9 module-info present

** Dependency upgrade
* [MJAVADOC-485] - Upgrade to commons-lang3
* [MJAVADOC-486] - Upgrade to Doxia 1.7

** Improvement
* [MJAVADOC-387] - Handle JDK8 -Xdoclint
* [MJAVADOC-456] - Upgrade to Maven3 plugin
* [MJAVADOC-457] - Clean up mojo parameters
* [MJAVADOC-493] - Upgrade to QDox 2
* [MJAVADOC-502] - Update DEFAULT_JAVA_API_LINKS

** New Feature
* [MJAVADOC-475] - Replace parameter additionalparam with  
additionalOptions

* [MJAVADOC-500] - Add support for explicit toolchain reference

** Task
* [MJAVADOC-458] - Upgrade of plexus-archiver to 3.4.
* [MJAVADOC-459] - Upgrade of maven-archiver to 3.1.0.
* [MJAVADOC-460] - Upgrade of maven-archiver to 3.1.1.
* [MJAVADOC-461] - Upgrade of maven-plugins parent to 30.
* [MJAVADOC-463] - Upgrade of commons-logging to 1.2.
* [MJAVADOC-464] - Upgrade of log4j to 1.2.17.
* [MJAVADOC-465] - Upgrade of commons-lang to 2.6.
* [MJAVADOC-466] - Upgrade of httpclient to 4.5.2.
* [MJAVADOC-474] - Deprecate parameter additionalparam
* [MJAVADOC-491] - Require Java 7

Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Handling password

2017-12-06 Thread Robert Scholte

Is ${settings.proxies[0].username} an options?

Robert

On Wed, 06 Dec 2017 17:28:20 +0100, ahardy42  
 wrote:


After a bit of creative thinking, I put the username:password into  
variables

in a profile in the settings file and let maven substitute them into the
file at build time. Now the security issue is a problem for the person
maintaining the CI server - which is me too but at least no-one will  
find it

by searching the code base for instances of 'username'.

However, maven-resources-plugin fails to substitute the last property
because it comes after the '@' sign:

Acquire::http::Proxy  
"http://${proxy.username}:${proxy.pw}@${proxy.host}";;


Can I do anything about that?

Regards
Adam



--
Sent from: http://maven.40175.n5.nabble.com/Maven-Users-f40176.html

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Handling password

2017-12-06 Thread ahardy42
After a bit of creative thinking, I put the username:password into variables
in a profile in the settings file and let maven substitute them into the
file at build time. Now the security issue is a problem for the person
maintaining the CI server - which is me too but at least no-one will find it
by searching the code base for instances of 'username'.

However, maven-resources-plugin fails to substitute the last property
because it comes after the '@' sign:

Acquire::http::Proxy "http://${proxy.username}:${proxy.pw}@${proxy.host}";;

Can I do anything about that? 

Regards
Adam



--
Sent from: http://maven.40175.n5.nabble.com/Maven-Users-f40176.html

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org