This is an automated email from the ASF dual-hosted git repository.
gboue pushed a change to branch MJAVADOC-516
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git.
discard 14c837c [MJAVADOC-516] Replace usage of deprecated HttpClient code
add c922342 [MJAVADOC-517] NPE under Java 10 RC Replace JavadocVersion
with JavaVersion from plexus-java Extract parts from commons-lang3 SystemUtils,
which should not be used anymore; it uses enums for java versions, which means
an update is required for every new Java version.
add 8d0b6d4 updated Modello xsd url
add b49d947 [MJAVADOC-571] Upgrade plexus-java to 0.9.7
add e637834 [MJAVADOC-515] - Upgrade parent to 31 o Fixed checkstyle
issues related to upgrade.
add d955df5 [MJAVADOC-519] - IT detectLinks fails on Windows
add e4a55bb Upgrade maven-surefire-plugin
add 7c75ad5 [MJAVADOC-512] - Even when
<javadocVersion>1.8.0</javadocVersion> matches there still is a warning.
add c611330 [MJAVADOC-512] - Even when
<javadocVersion>1.8.0</javadocVersion> matches there still is a warning.
add 84a1e6b [MNGSITE-332] - Changed download templates of plugins not to
reference .md5 anymore
add 86aa561 Skip Java 10 due to com.sun.tools.doclets removal in Java 10
which causes failing tests, must be fixed later
add 8e47dca [MJAVADOC-520] Upgrade dependencies
add 3df4a85 [MJAVADOC-521] - Added github information.
add 41a8475 Fix javadoc errors
add e00b87b [maven-release-plugin] prepare release
maven-javadoc-plugin-3.0.1
add e7da1a4 [maven-release-plugin] prepare for next development iteration
add e2e0316 [INFRA-16467] move components documentation out of CMS space
add 976b8d2 [MJAVADOC-530] - Clean up additionalparam documentation
add 4e95ecf Merge pull request #6 from marschall/MJAVADOC-530
add 65bdf55 Switch to asfMavenTlp set https.protocols for Java 7
add 5410f11 Fix JenkinsFile
add dc510d2 Fix unittests which depend on connection with Central :(
add 3ccb3cc [MJAVADOC-532] <link> entries that do not redirect are ignored
add 407343b [MJAVADOC-533] <link> entries that point to a resource that
requires an Accept header may be ignored
new 29dc4dd [MJAVADOC-516] Replace usage of deprecated HttpClient code
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (14c837c)
\
N -- N -- N refs/heads/MJAVADOC-516 (29dc4dd)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
CONTRIBUTING.md | 91 ++++++
Jenkinsfile | 2 +-
README.md | 99 +++++++
pom.xml | 23 +-
src/it/projects/detectLinks/pom.xml | 5 +-
.../plugins/javadoc/AbstractFixJavadocMojo.java | 10 +-
.../maven/plugins/javadoc/AbstractJavadocMojo.java | 68 ++---
.../maven/plugins/javadoc/JavadocReport.java | 4 +-
.../apache/maven/plugins/javadoc/JavadocUtil.java | 320 ++++++++++-----------
.../maven/plugins/javadoc/JavadocVersion.java | 2 +
.../apache/maven/plugins/javadoc/SystemUtils.java | 181 ++++++++++++
.../javadoc/resolver/SourceResolverConfig.java | 6 +-
src/main/mdo/javadocOptions.mdo | 4 +-
src/site/apt/examples/alternate-doclet.apt.vm | 14 +-
src/site/fml/faq.fml | 4 +-
src/site/xdoc/download.xml.vm | 2 +-
.../maven/plugins/javadoc/FixJavadocMojoTest.java | 18 +-
.../maven/plugins/javadoc/JavadocJarTest.java | 10 +-
.../maven/plugins/javadoc/JavadocReportTest.java | 10 +-
.../maven/plugins/javadoc/JavadocUtilTest.java | 81 ++++++
21 files changed, 701 insertions(+), 254 deletions(-)
create mode 100644 CONTRIBUTING.md
create mode 100644 README.md
create mode 100644
src/main/java/org/apache/maven/plugins/javadoc/SystemUtils.java