svn commit: r1861197 - in /maven/website/components: archetype-archives/archetype-3.1.0_/ archetype/

2019-06-12 Thread tibordigana
Author: tibordigana
Date: Wed Jun 12 21:50:57 2019
New Revision: 1861197

Log:
Publish archeype 3.1.1 documentation

Added:
maven/website/components/archetype/
  - copied from r1861196, 
maven/website/components/archetype-archives/archetype-LATEST/
maven/website/components/archetype-archives/archetype-3.1.0_/
  - copied from r1861196, 
maven/website/components/archetype-archives/archetype-LATEST/



[maven] branch MNG-6672 updated (2fd2863 -> 25ffca0)

2019-06-12 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MNG-6672
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard 2fd2863  [MNG-6672] Upgrade Maven Resolver to 1.4.0
omit da05c25  Use properly quoted shell arguments with "$@"
omit 8f1cac0  [MNG-6671] Upgrade Modello to 1.11
omit 92b5191  Revert "Modello changes"
omit 5035837  [MNG-6671] Upgrade Modello to 1.10.1
omit 8aaeb8a  [MNG-6581] - Update to latest Modello plugin version
omit aed5130  [MNG-6665] toolchain.xml file should support environment 
variables
omit 01405a2  [MNG-6667] Enhance the error reporting when trying to build a 
modelVersion that the current Maven doesn't understand
omit 275a971  Include Java 12 for testing
omit 3495521  -DdeployAtEnd=true doesn't deploy anything
omit a117168  oops fix branch name
omit 8524e04  fix Jenkinsfile as it is script
omit 660e745  Always deploy snapshot from master (#250)
 add 25ffca0  [MNG-6672] Upgrade Maven Resolver to 1.4.0

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   (2fd2863)
\
 N -- N -- N   refs/heads/MNG-6672 (25ffca0)

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.

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile|  11 +-
 deploySite.sh  |   4 +-
 .../building/DefaultToolchainsBuilder.java | 105 ++-
 .../toolchain/io/DefaultToolchainsWriter.java  |  54 
 .../maven/toolchain/io/ToolchainsWriter.java   |  48 ---
 .../project/DefaultMavenProjectBuilderTest.java|  68 +-
 .../building/DefaultToolchainsBuilderTest.java | 150 -
 .../projects/future-model-version-pom.xml  |  25 
 .../projects/future-schema-model-version-pom.xml   |  24 
 .../resources/projects/past-model-version-pom.xml  |  26 
 .../StringSearchModelInterpolator.java |   5 -
 .../model/validation/DefaultModelValidator.java| 100 ++
 .../validation/DefaultModelValidatorTest.java  |   4 +-
 .../internal/DefaultVersionResolver.java   |  41 +-
 pom.xml|   8 +-
 15 files changed, 96 insertions(+), 577 deletions(-)
 delete mode 100644 
maven-core/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsWriter.java
 delete mode 100644 
maven-core/src/main/java/org/apache/maven/toolchain/io/ToolchainsWriter.java
 delete mode 100644 
maven-core/src/test/resources/projects/future-model-version-pom.xml
 delete mode 100644 
maven-core/src/test/resources/projects/future-schema-model-version-pom.xml
 delete mode 100644 
maven-core/src/test/resources/projects/past-model-version-pom.xml



[maven] 01/01: [MNG-6672] Upgrade Maven Resolver to 1.4.0

2019-06-12 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch maven-resolver-1.4.0
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 25ffca06337570a1603dd26097f92a49c5381eec
Author: Michael Osipov 
AuthorDate: Sat Jun 8 21:31:01 2019 +0200

[MNG-6672] Upgrade Maven Resolver to 1.4.0
---
 .../internal/DefaultVersionResolver.java   | 41 ++
 pom.xml|  2 +-
 2 files changed, 35 insertions(+), 8 deletions(-)

diff --git 
a/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
 
b/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
index 502aba1..d307c55 100644
--- 
a/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
+++ 
b/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java
@@ -35,7 +35,6 @@ import org.eclipse.aether.impl.MetadataResolver;
 import org.eclipse.aether.impl.RepositoryEventDispatcher;
 import org.eclipse.aether.impl.SyncContextFactory;
 import org.eclipse.aether.impl.VersionResolver;
-import org.eclipse.aether.internal.impl.CacheUtils;
 import org.eclipse.aether.metadata.DefaultMetadata;
 import org.eclipse.aether.metadata.Metadata;
 import org.eclipse.aether.repository.ArtifactRepository;
@@ -154,7 +153,7 @@ public class DefaultVersionResolver
 Record record = (Record) obj;
 result.setVersion( record.version );
 result.setRepository(
-CacheUtils.getRepository( session, 
request.getRepositories(), record.repoClass, record.repoId ) );
+getRepository( session, request.getRepositories(), 
record.repoClass, record.repoId ) );
 return result;
 }
 }
@@ -429,6 +428,34 @@ public class DefaultVersionResolver
 return StringUtils.clean( classifier ) + ':' + StringUtils.clean( 
extension );
 }
 
+private ArtifactRepository getRepository( RepositorySystemSession session,
+  List 
repositories, Class repoClass,
+  String repoId )
+{
+if ( repoClass != null )
+{
+if ( WorkspaceRepository.class.isAssignableFrom( repoClass ) )
+{
+return session.getWorkspaceReader().getRepository();
+}
+else if ( LocalRepository.class.isAssignableFrom( repoClass ) )
+{
+return session.getLocalRepository();
+}
+else
+{
+for ( RemoteRepository repository : repositories )
+{
+if ( repoId.equals( repository.getId() ) )
+{
+return repository;
+}
+}
+}
+}
+return null;
+}
+
 private boolean isSafelyCacheable( RepositorySystemSession session, 
Artifact artifact )
 {
 /*
@@ -502,7 +529,8 @@ public class DefaultVersionResolver
 extension = artifact.getExtension();
 version = artifact.getVersion();
 localRepo = session.getLocalRepository().getBasedir();
-workspace = CacheUtils.getWorkspace( session );
+WorkspaceReader reader = session.getWorkspaceReader();
+workspace = ( reader != null ) ? reader.getRepository() : null;
 repositories = new ArrayList<>( request.getRepositories().size() );
 boolean repoMan = false;
 for ( RemoteRepository repository : request.getRepositories() )
@@ -526,7 +554,7 @@ public class DefaultVersionResolver
 hash = hash * 31 + extension.hashCode();
 hash = hash * 31 + version.hashCode();
 hash = hash * 31 + localRepo.hashCode();
-hash = hash * 31 + CacheUtils.repositoriesHashCode( repositories );
+hash = hash * 31 + repositories.hashCode();
 hashCode = hash;
 }
 
@@ -546,8 +574,7 @@ public class DefaultVersionResolver
 return artifactId.equals( that.artifactId ) && groupId.equals( 
that.groupId ) && classifier.equals(
 that.classifier ) && extension.equals( that.extension ) && 
version.equals( that.version )
 && context.equals( that.context ) && localRepo.equals( 
that.localRepo )
-&& CacheUtils.eq( workspace, that.workspace )
-&& CacheUtils.repositoriesEquals( repositories, 
that.repositories );
+&& Objects.equals( workspace, that.workspace ) && 
repositories.equals( that.repositories );
 }
 
 @Override
@@ -582,4 +609,4 @@ public class DefaultVersionResolver
 }
 }
 
-}
\ No newline at end of file
+}
diff --git a/pom.xml b/pom.xml

[maven] branch maven-resolver-1.4.0 updated (69d5a55 -> 25ffca0)

2019-06-12 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch maven-resolver-1.4.0
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard 69d5a55  Upgrade to Maven Resolver 1.4.0
 new 25ffca0  [MNG-6672] Upgrade Maven Resolver to 1.4.0

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   (69d5a55)
\
 N -- N -- N   refs/heads/maven-resolver-1.4.0 (25ffca0)

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:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[maven] 01/01: [MNG-6672] Upgrade Maven Resolver to 1.4.0

2019-06-12 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-6672
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 2fd28634147279e5163b0967ccf92fb53bcdf938
Author: Michael Osipov 
AuthorDate: Wed Jun 12 22:16:01 2019 +0200

[MNG-6672] Upgrade Maven Resolver to 1.4.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0d8a11a..c9f5c4d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -64,7 +64,7 @@ under the License.
 1.7
 1.11
 1.3
-1.3.3
+1.4.0
 1.7.25
 2.2.1
 
true



[maven] branch MNG-6672 created (now 2fd2863)

2019-06-12 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MNG-6672
in repository https://gitbox.apache.org/repos/asf/maven.git.


  at 2fd2863  [MNG-6672] Upgrade Maven Resolver to 1.4.0

This branch includes the following new commits:

 new 2fd2863  [MNG-6672] Upgrade Maven Resolver to 1.4.0

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.




svn commit: r1861193 - in /maven/website/components: resolver-archives/resolver-1.4.0/ resolver/

2019-06-12 Thread michaelo
Author: michaelo
Date: Wed Jun 12 19:55:58 2019
New Revision: 1861193

Log:
Publish Maven Resolver 1.4.0 documentation

Added:
maven/website/components/resolver/
  - copied from r1861192, 
maven/website/components/resolver-archives/resolver-LATEST/
maven/website/components/resolver-archives/resolver-1.4.0/
  - copied from r1861192, 
maven/website/components/resolver-archives/resolver-LATEST/



[maven-shared-utils] 01/01: [MSHARED-826] Apply Java 7 syntax

2019-06-12 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MSHARED-826
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git

commit 392c19c947db0085e47650d1443e0491b378cbb3
Author: rfscholte 
AuthorDate: Wed Jun 12 20:26:18 2019 +0200

[MSHARED-826] Apply Java 7 syntax
---
 .../java/org/apache/maven/shared/utils/Expand.java |  26 +--
 .../org/apache/maven/shared/utils/PathTool.java|   4 +
 .../apache/maven/shared/utils/PropertyUtils.java   |  92 +++-
 .../org/apache/maven/shared/utils/StringUtils.java |   7 +-
 .../apache/maven/shared/utils/WriterFactory.java   |   1 -
 .../shared/utils/cli/CommandLineCallable.java  |   4 +-
 .../shared/utils/cli/CommandLineException.java |   1 -
 .../utils/cli/CommandLineTimeOutException.java |   1 -
 .../maven/shared/utils/cli/CommandLineUtils.java   |  12 +-
 .../apache/maven/shared/utils/cli/Commandline.java |  35 +---
 .../maven/shared/utils/cli/DefaultConsumer.java|   5 -
 .../maven/shared/utils/cli/StreamFeeder.java   |   1 -
 .../maven/shared/utils/cli/StreamPumper.java   |   1 +
 .../shared/utils/cli/WriterStreamConsumer.java |   4 -
 .../utils/cli/javatool/AbstractJavaTool.java   |  50 +
 .../cli/javatool/AbstractJavaToolRequest.java  |  16 +-
 .../utils/cli/javatool/JavaToolException.java  |   1 -
 .../maven/shared/utils/cli/shell/BourneShell.java  |  12 +-
 .../maven/shared/utils/cli/shell/CmdShell.java |   1 +
 .../apache/maven/shared/utils/cli/shell/Shell.java |   4 +-
 .../maven/shared/utils/introspection/ClassMap.java |   3 +-
 .../shared/utils/introspection/MethodMap.java  |   9 +-
 .../introspection/ReflectionValueExtractor.java|   1 -
 .../shared/utils/io/DirectoryWalkListener.java |   2 -
 .../maven/shared/utils/io/DirectoryWalker.java |   8 +-
 .../apache/maven/shared/utils/io/FileUtils.java| 233 ++---
 .../org/apache/maven/shared/utils/io/IOUtil.java   |  15 ++
 .../apache/maven/shared/utils/io/Java7Support.java | 171 +++
 .../maven/shared/utils/io/WalkCollector.java   |  10 +-
 .../shared/utils/logging/AnsiMessageBuilder.java   |  17 ++
 .../shared/utils/logging/PlainMessageBuilder.java  |  17 ++
 .../maven/shared/utils/reflection/Reflector.java   |  52 +
 .../shared/utils/xml/PrettyPrintXMLWriter.java |  14 +-
 .../maven/shared/utils/xml/XmlStreamReader.java|   4 +-
 .../maven/shared/utils/xml/XmlWriterUtil.java  |   3 +-
 .../org/apache/maven/shared/utils/xml/Xpp3Dom.java |   8 +-
 .../maven/shared/utils/xml/Xpp3DomBuilder.java |  21 +-
 .../maven/shared/utils/xml/Xpp3DomUtils.java   |   2 +-
 .../shared/utils/cli/CommandLineUtilsTest.java |   1 -
 .../ReflectionValueExtractorTest.java  |   2 +-
 .../shared/utils/testhelpers/ExceptionHelper.java  |   2 +
 .../shared/utils/xml/PrettyPrintXmlWriterTest.java |   1 -
 .../maven/shared/utils/xml/XmlWriterUtilTest.java  |   3 +-
 43 files changed, 263 insertions(+), 614 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/utils/Expand.java 
b/src/main/java/org/apache/maven/shared/utils/Expand.java
index 28c01ed..8eb2bc3 100644
--- a/src/main/java/org/apache/maven/shared/utils/Expand.java
+++ b/src/main/java/org/apache/maven/shared/utils/Expand.java
@@ -30,7 +30,6 @@ import java.util.zip.ZipEntry;
 import java.util.zip.ZipInputStream;
 
 import org.apache.maven.shared.utils.io.FileUtils;
-import org.apache.maven.shared.utils.io.IOUtil;
 
 /**
  * Expand will unpack the given zip archive.
@@ -126,11 +125,8 @@ class Expand
 destDir = new File( System.getProperty( "user.dir" ) );
 }
 
-ZipInputStream in = null;
-try
+try ( ZipInputStream in = new ZipInputStream( new FileInputStream( 
srcFile ) ) )
 {
-in = new ZipInputStream( new FileInputStream( srcFile ) );
-
 for ( ZipEntry zipEntry = in.getNextEntry(); zipEntry != null; 
zipEntry = in.getNextEntry() )
 {
 String zipEntryName = zipEntry.getName();
@@ -138,13 +134,6 @@ class Expand
 
 extractFile( source, destDir, in, zipEntryName, zipEntryDate, 
zipEntry.isDirectory() );
 }
-
-in.close();
-in = null;
-}
-finally
-{
-IOUtil.close( in );
 }
 }
 
@@ -188,23 +177,14 @@ class Expand
 else
 {
 byte[] buffer = new byte[BUFFER_SIZE];
-OutputStream out = null;
-try
+
+try ( OutputStream out = new FileOutputStream( targetFile ) )
 {
-out = new FileOutputStream( targetFile );
-
 int len;
 while ( ( len = compressedInputStream.read( buffer ) ) >= 
0 )
 {
 out.write( buffer, 0, len );
 }
-
-

[maven-shared-utils] branch MSHARED-826 created (now 392c19c)

2019-06-12 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch MSHARED-826
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git.


  at 392c19c  [MSHARED-826] Apply Java 7 syntax

This branch includes the following new commits:

 new 392c19c  [MSHARED-826] Apply Java 7 syntax

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.




[maven-archetype] annotated tag maven-archetype-3.1.1_vote-1 updated (35fdcaf -> 80f4497)

2019-06-12 Thread tibordigana
This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a change to annotated tag maven-archetype-3.1.1_vote-1
in repository https://gitbox.apache.org/repos/asf/maven-archetype.git.


*** WARNING: tag maven-archetype-3.1.1_vote-1 was modified! ***

from 35fdcaf  (commit)
  to 80f4497  (tag)
 tagging 35fdcafac67420f9062bfe9042e78d62276e93b2 (commit)
 replaces maven-archetype-3.1.0
  by tibordigana
  on Wed Jun 12 19:09:16 2019 +0200

- Log -
[maven-release-plugin] copy for tag maven-archetype-3.1.1_vote-1
---


No new revisions were added by this update.

Summary of changes:



svn commit: r1861143 [3/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,348 +1,348 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-JDKInternalsMojo (Apache Maven JDeps Plugin 3.1.1 API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.maven.plugins.jdeps
-Class JDKInternalsMojo
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/AbstractMojo.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin">org.apache.maven.plugin.AbstractMojo
-
-
-org.apache.maven.plugins.jdeps.AbstractJDepsMojo
-
-
-org.apache.maven.plugins.jdeps.JDKInternalsMojo
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/ContextEnabled.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">ContextEnabled, http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">Mojo
-
-
-
-https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugins.annotations">@Mojo(https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html?is-external=true#name--;
 title="class or interface in 
org.apache.maven.plugins.annotations">name="jdkinternals",
-  https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html?is-external=true#requiresDependencyResolution--;
 title="class or interface in 
org.apache.maven.plugins.annotations">requiresDependencyResolution=https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/ResolutionScope.html?is-external=true#COMPILE;
 title="class or interface in org.apache.maven.plugins.annotations">COMPILE,
-  https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html?is-external=true#defaultPhase--;
 title="class or interface in 
org.apache.maven.plugins.annotations">defaultPhase=https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/LifecyclePhase.html?is-external=true#PROCESS_CLASSES;
 title="class or interface in 
org.apache.maven.plugins.annotations">PROCESS_CLASSES,
-  https://maven.apache.org/plugin-tools/maven-plugin-annotations/apidocs/org/apache/maven/plugins/annotations/Mojo.html?is-external=true#threadSafe--;
 title="class or interface in 
org.apache.maven.plugins.annotations">threadSafe=true)
-public class JDKInternalsMojo
-extends AbstractJDepsMojo
-Check if main classes depend on internal JDK classes
-
-Author:
-Robert Scholte
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfaceorg.apache.maven.plugin.http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">Mojo
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true#ROLE;
 title="class or interface in org.apache.maven.plugin">ROLE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-JDKInternalsMojo()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All 

svn commit: r1861143 [4/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDKInternalsMojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDKInternalsMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDKInternalsMojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,125 +1,125 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Uses of Class org.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo 
(Apache Maven JDeps Plugin 3.1.1 API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
-
-
-Uses of 
Classorg.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo
-
-No usage of 
org.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
-
-Copyright  20152018 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+Uses of Class org.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo 
(Apache Maven JDeps Plugin 3.1.2 API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Uses of 
Classorg.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo
+
+No usage of 
org.apache.maven.plugins.jdeps.AbstractJDKInternalsMojo
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+Copyright  20152019 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
\ No newline at end of file

Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDepsMojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDepsMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDepsMojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,179 +1,179 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-Uses of Class org.apache.maven.plugins.jdeps.AbstractJDepsMojo (Apache 
Maven JDeps Plugin 3.1.1 API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10,"i3":6,"i4":6,"i5":10,"i6":10,"i7":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.maven.plugins.jdeps
-Class AbstractJDepsMojo
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/AbstractMojo.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin">org.apache.maven.plugin.AbstractMojo
-
-
-org.apache.maven.plugins.jdeps.AbstractJDepsMojo
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/ContextEnabled.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">ContextEnabled, http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">Mojo
-
-
-Direct Known Subclasses:
-AbstractJDKInternalsMojo, 
JDKInternalsMojo, TestJDKInternalsMojo
-
-
-
-public abstract class AbstractJDepsMojo
-extends http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/AbstractMojo.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">AbstractMojo
-Abstract Mojo for JDeps
-
-Author:
-Robert Scholte
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfaceorg.apache.maven.plugin.http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true;
 title="class or interface in org.apache.maven.plugin">Mojo
-http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/Mojo.html?is-external=true#ROLE;
 title="class or interface in org.apache.maven.plugin">ROLE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-AbstractJDepsMojo()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsAbstract MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-protected void
-addJDepsClasses(http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/Commandline.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">Commandlinecmd,
-   https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttps://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html?is-external=true;
 title="class or interface in 
java.nio.file">PathdependenciesToAnalyze)
-
-
-protected void
-addJDepsOptions(http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/Commandline.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">Commandlinecmd,
-   https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttps://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html?is-external=true;
 title="class or interface in 
java.nio.file">PathdependenciesToAnalyze)
-
-
-void
-execute()
-
-
-protected abstract https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-getClassesDirectory()
-
-
-protected abstract 

svn commit: r1861143 [9/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Added: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/issue-management.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/issue-management.html
 (added)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/issue-management.html
 Wed Jun 12 15:21:08 2019
@@ -0,0 +1,142 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Maven JDeps Plugin  Issue Management
+
+
+
+
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+  
+  
+
+  
+https://www.apache.org/; 
id="bannerLeft">
+
+
+  
+
+  
+
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Plugins/
+  Apache Maven JDeps Plugin/
+Issue Management
+| 
Last Published: 2019-06-12
+  |Version: 3.1.2
+  http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/; 
class="externalLink" title="Javadoc Tool">Javadoc Tool
+
+  
+  
+
+  
+
+  Overview
+Introduction
+Goals
+Usage
+http://www.apache.org/licenses/; class="externalLink" 
title="License">License
+Download
+  Project Documentation
+Project Information
+
+About
+Summary
+Dependency Information
+Team
+Source Code Management
+Issue 
Management
+Mailing Lists
+Dependency Management
+Dependencies
+Dependency Convergence
+CI Management
+Plugin Management
+Plugins
+Distribution Management
+
+
+Project Reports
+  Maven Projects
+Archetype
+Artifact Resolver
+Doxia
+JXR
+Maven
+Parent POMs
+Plugins
+Plugin Testing
+Plugin Tools
+Resource Bundles
+SCM
+Shared Components
+Skins
+Surefire
+Wagon
+  ASF
+https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
+https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
+https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
+
+https://www.google.com/search; method="get" >
+  
+  
+
+asyncJs( 
'https://cse.google.com/brand?form=search-form' )
+  
+  
+
+
+
+https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
+
+
+
+http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+
+  
+
+
+
+Overview
+This project uses http://www.atlassian.com/software/jira;>JIRA.
+
+Issue Management
+Issues, bugs, and feature requests should be submitted to the following 
issue management system for this project.
+https://issues.apache.org/jira/browse/MJDEPS;>https://issues.apache.org/jira/browse/MJDEPS
+
+  
+
+
+
+  
+
+Copyright 20152019
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+  
+
+  
+
\ No newline at end of file

Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/jdkinternals-mojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/jdkinternals-mojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/jdkinternals-mojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven JDeps Plugin  jdeps:jdkinternals
 
@@ -41,8 +41,8 @@
   Plugins/
   Apache Maven JDeps Plugin/
 jdeps:jdkinternals
-| 
Last Published: 2018-02-24
- 

svn commit: r1861143 [1/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Author: eolivelli
Date: Wed Jun 12 15:21:08 2019
New Revision: 1861143

Log:
Site checkin for project Apache Maven JDeps Plugin

Added:

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/ci-management.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/issue-management.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/mailing-lists.html
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/scm.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/summary.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/team.html
Removed:

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/integration.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/issue-tracking.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/mail-lists.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/project-summary.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/source-repository.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/team-list.html
Modified:

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/allclasses-frame.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/allclasses-noframe.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/constant-values.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/deprecated-list.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/help-doc.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/index-all.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/index.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/AbstractJDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/HelpMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/TestJDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/AbstractJDepsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/HelpMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/JDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/class-use/TestJDKInternalsMojo.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumer.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/class-use/JDepsConsumer.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/package-frame.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/package-summary.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/package-tree.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/package-use.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/package-frame.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/package-summary.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/package-tree.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/package-use.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/overview-frame.html

maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/overview-summary.html


svn commit: r1861143 [5/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumer.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumer.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/apidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumer.html
 Wed Jun 12 15:21:08 2019
@@ -1,326 +1,326 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-JDepsConsumer (Apache Maven JDeps Plugin 3.1.1 API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.maven.plugins.jdeps.consumers
-Class JDepsConsumer
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/CommandLineUtils.StringStreamConsumer.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer
-
-
-org.apache.maven.plugins.jdeps.consumers.JDepsConsumer
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/StreamConsumer.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">StreamConsumer
-
-
-
-public class JDepsConsumer
-extends http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/CommandLineUtils.StringStreamConsumer.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">CommandLineUtils.StringStreamConsumer
-implements http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/StreamConsumer.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">StreamConsumer
-Consumes the output of the jdeps tool
-
-Author:
-Robert Scholte
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-JDepsConsumer()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-consumeLine(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringline)
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-getOffendingPackages()
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-getProfiles()
-
-
-
-
-
-
-Methods inherited from classorg.codehaus.plexus.util.cli.http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/CommandLineUtils.StringStreamConsumer.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.util.cli">CommandLineUtils.StringStreamConsumer
-http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/cli/CommandLineUtils.StringStreamConsumer.html?is-external=true#getOutput--;
 title="class or interface in 
org.codehaus.plexus.util.cli">getOutput
-
-
-
-
-
-Methods inherited from classjava.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object

svn commit: r1861143 [10/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class

2019-06-12 Thread eolivelli
;></a>
@@ -161,19 +164,19 @@ function toggleDisplay(elementId) {
 <tr class="a">
 <th>Package</th>
 <th>Tests</th>
-<th>Errors </th>
+<th>Errors</th>
 <th>Failures</th>
 <th>Skipped</th>
 <th>Success Rate</th>
 <th>Time</th></tr>
 <tr class="b">
 <td><a 
href="#org.apache.maven.plugins.jdeps.consumers">org.apache.maven.plugins.jdeps.consumers</a></td>
-<td>2</td>
+<td>3</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.043</td></tr></table><br />
+<td>0.159</td></tr></table><br />
 <p>Note: package statistics are not computed recursively, they only sum up all 
of its testsuites numbers.</p>
 <div class="section">
 <h3><a 
name="org.apache.maven.plugins.jdeps.consumers"></a>org.apache.maven.plugins.jdeps.consumers</h3><a
 name="org.apache.maven.plugins.jdeps.consumers"></a>
@@ -182,34 +185,38 @@ function toggleDisplay(elementId) {
 <th></th>
 <th>Class</th>
 <th>Tests</th>
-<th>Errors </th>
+<th>Errors</th>
 <th>Failures</th>
 <th>Skipped</th>
 <th>Success Rate</th>
 <th>Time</th></tr>
 <tr class="b">
-<td><a href="#org.apache.maven.plugins.jdeps.consumersJDepsConsumerTest"><img 
src="images/icon_success_sml.gif" alt="" /></a></td>
-<td><a 
href="#org.apache.maven.plugins.jdeps.consumersJDepsConsumerTest">JDepsConsumerTest</a></td>
-<td>2</td>
+<td><a href="#org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest"><img 
src="images/icon_success_sml.gif" alt="" /></a></td>
+<td><a 
href="#org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest">JDepsConsumerTest</a></td>
+<td>3</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.043</td></tr></table></div><br /></div>
+<td>0.159</td></tr></table></div><br /></div>
 <div class="section">
 <h2><a name="Test_Cases"></a>Test Cases</h2><a name="Test_Cases"></a>
 <p>[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] 
[<a href="#Test_Cases">Test Cases</a>]</p>
 <div class="section">
-<h3><a name="JDepsConsumerTest"></a>JDepsConsumerTest</h3><a 
name="org.apache.maven.plugins.jdeps.consumersJDepsConsumerTest"></a>
+<h3><a name="JDepsConsumerTest"></a>JDepsConsumerTest</h3><a 
name="org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest"></a>
 <table border="1" class="table table-striped">
 <tr class="a">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
 <td><a 
name="TC_org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest.testProfile"></a>testProfile</td>
-<td>0.002</td></tr>
+<td>0.016</td></tr>
 <tr class="b">
 <td><img src="images/icon_success_sml.gif" alt="" /></td>
 <td><a 
name="TC_org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest.testJDKInterAPI"></a>testJDKInterAPI</td>
-<td>0</td></tr></table></div><br /></div>
+<td>0.005</td></tr>
+<tr class="a">
+<td><img src="images/icon_success_sml.gif" alt="" /></td>
+<td><a 
name="TC_org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest.testJDKInternalAPI_Linux_Java8"></a>testJDKInternalAPI_Linux_Java8</td>
+<td>0.001</td></tr></table></div><br /></div>
 </div>
   </div>
 </div>
@@ -217,7 +224,7 @@ function toggleDisplay(elementId) {
 <footer>
   <div class="container-fluid">
 <div class="row-fluid">
-<p>Copyright &copy;2015&#x2013;2018
+<p>Copyright &copy;2015&#x2013;2019
 <a href="<a  rel="nofollow" href="https://www.apa

svn commit: r1861143 [11/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/testapidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/testapidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/testapidocs/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
 Wed Jun 12 15:21:08 2019
@@ -1,283 +1,296 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
-
-
-
-
-JDepsConsumerTest (Apache Maven JDeps Plugin 3.1.1 Test API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-
-
-
-org.apache.maven.plugins.jdeps.consumers
-Class JDepsConsumerTest
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.plugins.jdeps.consumers.JDepsConsumerTest
-
-
-
-
-
-
-
-
-public class JDepsConsumerTest
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-JDepsConsumerTest()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-testJDKInterAPI()
-
-
-void
-testProfile()
-
-
-
-
-
-
-Methods inherited from classjava.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--;
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-;
 title="class or interface in java.lang">equals, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--;
 title="class or interface in java.lang">finalize, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--;
 title="class or interface in java.lang">getClass, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--;
 title="class or interface in java.lang">hashCode, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--;
 title="class or interface in java.lang">notify, https://docs.oracle.com/javase/8/docs/api/ja
 va/lang/Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--;
 title="class or interface in java.lang">toString, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--;
 title="class or interface in java.lang">wait, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-;
 title="class or interface in java.lang">wait, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-;
 title="class or interface in java.lang">wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-JDepsConsumerTest
-publicJDepsConsumerTest()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-testJDKInterAPI
-publicvoidtestJDKInterAPI()
-
-
-
-
-
-
-
-testProfile
-publicvoidtestProfile()
-
-
-
-
-
-
-
-
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
-
-
-
-
-

svn commit: r1861143 [13/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/AbstractJDepsMojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,634 +1,644 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
-
-AbstractJDepsMojo xref
-
-
-
-View
 Javadoc
-1   package org.apache.maven.plugins.jdeps;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
-11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import java.io.File;
-23  import java.io.IOException;
-24  import java.lang.reflect.InvocationTargetException;
-25  import java.lang.reflect.Method;
-26  import java.nio.file.Path;
-27  import java.nio.file.Paths;
-28  import java.util.ArrayList;
-29  import java.util.Collection;
-30  import java.util.Collections;
-31  import java.util.LinkedHashSet;
-32  import java.util.List;
-33  import java.util.Map;
-34  import java.util.Properties;
-35  import java.util.Set;
-36  import java.util.StringTokenizer;
-37  
-38  import org.apache.commons.lang3.SystemUtils;
-39  import org.apache.maven.artifact.Artifact;
-40  import org.apache.maven.artifact.ArtifactUtils;
-41  import 
org.apache.maven.artifact.DependencyResolutionRequiredException;
-42  import org.apache.maven.execution.MavenSession;
-43  import org.apache.maven.plugin.AbstractMojo;
-44  import 
org.apache.maven.plugin.MojoExecutionException;
-45  import 
org.apache.maven.plugin.MojoFailureException;
-46  import 
org.apache.maven.plugins.jdeps.consumers.JDepsConsumer;
-47  import 
org.apache.maven.plugins.annotations.Component;
-48  import 
org.apache.maven.plugins.annotations.Parameter;
-49  import org.apache.maven.project.MavenProject;
-50  import org.apache.maven.toolchain.Toolchain;
-51  import org.apache.maven.toolchain.ToolchainManager;
-52  import org.codehaus.plexus.util.MatchPatterns;
-53  import org.codehaus.plexus.util.StringUtils;
-54  import 
org.codehaus.plexus.util.cli.CommandLineException;
-55  import 
org.codehaus.plexus.util.cli.CommandLineUtils;
-56  import org.codehaus.plexus.util.cli.Commandline;
-57  
-58  /**
-59   * Abstract Mojo for JDeps
-60   * 
-61   * @author Robert Scholte
-62   *
-63   */
-64  public abstract class AbstractJDepsMojo
-65  extends AbstractMojo
-66  {
-67  
-68  @Parameter( 
defaultValue = "${project}", readonly = true, required = true )
-69  private MavenProject project;
-70  
-71  @Parameter( 
defaultValue = "${session}", readonly = true, required = true )
-72  private MavenSession session;
-73  
-74  @Parameter( 
defaultValue = "${project.build.directory}", 
readonly = true, required = true )
-75  private File outputDirectory;
-76  
-77  /**
-78   * Indicates whether the build will continue 
even if there are jdeps warnings.
-79   */
-80  @Parameter( 
defaultValue = "true", property = "jdeps.failOnWarning" )
-81  private boolean failOnWarning;
-82  
-83  /**
-84   * Specifies the version when processing 
multi-release JAR files version should be an integer =9 or base.
-85   * 
-86   * @since 3.1.1
-87   */
-88  @Parameter
-89  private String multiRelease;
-90  
-91  /**
-92   * Additional dependencies which should be 
analyzed besides the classes.
-93   * Specify as {@code groupId:artifactId}, 
allowing ant-pattern.
-94   * 
-95   * E.g.
-96   * pre
-97   *   
lt;dependenciesToAnalyzeIncludesgt;
-98   * 
lt;includegt;*:*lt;/includegt;
-99   * 
lt;includegt;org.foo.*:*lt;/includegt;
-100  * 
lt;includegt;com.foo.bar:*lt;/includegt;
-101  * 
lt;includegt;dot.foo.bar:utilitieslt;/includegt;
-102  *   
lt;/dependenciesToAnalyzeIncludesgt;  
-103  * /pre

svn commit: r1861143 [8/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class-

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/invoker-report.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/invoker-report.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/invoker-report.html
 Wed Jun 12 15:21:08 2019
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
 
 
-
+
 
 Apache Maven JDeps Plugin  Invoker Report
 
@@ -41,8 +41,8 @@
   Plugins/
   Apache Maven JDeps Plugin/
 Invoker Report
-| 
Last Published: 2018-02-24
-  |Version: 3.1.1
+| 
Last Published: 2019-06-12
+  |Version: 3.1.2
   http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/; 
class="externalLink" title="Javadoc Tool">Javadoc Tool
 
   
@@ -132,12 +132,12 @@
 Avg Time
 
 7
-4
+5
+0
 2
-1
-66.7%
-23.6s
-3.4s
+100.0%
+64.5s
+9.2s
 
 Build Details
 
@@ -147,2894 +147,40 @@
 Time
 Message
 
-basic\pom.xml
-success
-6.1s
-
+module/pom.xml
+skipped
+0.0s
+Skipped due to JRE version
 
-dependenciesToAnalyze\pom.xml
-success
-4.3s
-
-
-module\pom.xml
+multirelease/pom.xml
 skipped
 0.0s
 Skipped due to JRE version
+
+unsupported-api_test/pom.xml
+success
+22.4s
+
 
-multirelease\pom.xml
+package/pom.xml
 success
-2.6s
+10.3s
 
 
-package\pom.xml
+basic/pom.xml
 success
-2.4s
+8.1s
 
 
-unsupported-api_main\pom.xml
-failure-post-hook
-2.9s
-The post-build script did not succeed. assert buildLog.text.contains( 
Found offending packages:${LS} sun.misc - JDK internal API 
(java.base) ) || buildLog.text.contains( Found offending 
packages:${LS} sun.misc - JDK internal API (rt.jar) )
-   ||||
|  |||  
  |
-   ||false|
|  ||false
-   || |
|  |Apache Maven 3.5.2 
(138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T09:58:13+02:00)
-   || |
|  |Maven home: D:\apache-maven-3.5.2\bin\..
-   || |
|  |Java version: 1.8.0_152, vendor: Oracle 
Corporation
-   || |
|  |Java home: C:\Program 
Files\Java\jdk1.8.0_152\jre
-   || |
|  |Default locale: nl_NL, platform 
encoding: Cp1252
-   || |
|  |OS name: windows 10, 
version: 10.0, arch: amd64, family: windows
-   || |
|  |[DEBUG] Created new class realm 
maven.api
-   || |
|  |[DEBUG] Importing foreign packages into 
class realm maven.api
-   || |
|  |[DEBUG]   Imported: javax.annotation.* 
 plexus.core
-   || |
|  |[DEBUG]   Imported: 
javax.enterprise.inject.*  plexus.core
-   || |
|  |[DEBUG]   Imported: 
javax.enterprise.util.*  plexus.core
-   || |
|  |[DEBUG]   Imported: javax.inject.*  
plexus.core
-   || |
|  |[DEBUG]   Imported: org.apache.maven.* 
 plexus.core
-   || |
|  |[DEBUG]   Imported: 
org.apache.maven.artifact  plexus.core
-   || |
|  |[DEBUG]   Imported: 
org.apache.maven.classrealm  plexus.core
-   || |
|  |[DEBUG]   Imported: 
org.apache.maven.cli  plexus.core
-   || |

svn commit: r1861143 [12/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref-test/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref-test/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref-test/org/apache/maven/plugins/jdeps/consumers/JDepsConsumerTest.html
 Wed Jun 12 15:21:08 2019
@@ -1,77 +1,92 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
-
-JDepsConsumerTest xref
-
-
-
-View
 Javadoc
-1   package org.apache.maven.plugins.jdeps.consumers;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
-11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  import static 
org.junit.Assert.assertEquals;
-22  
-23  import org.junit.Test;
-24  
-25  public class 
JDepsConsumerTest
-26  {
-27  
-28  private JDepsConsumer consumer;
-29  
-30  @Test
-31  public void 
testJDKInterAPI()
-32  {
-33  
-34  consumer = 
new JDepsConsumer();
-35  
consumer.consumeLine( "test-classes - 
java.base" );
-36  
consumer.consumeLine( "   unnamed 
(test-classes)" );
-37  
consumer.consumeLine( "  - java.io 
   " );
-38  
consumer.consumeLine( "  - java.lang   
   " );
-39  
consumer.consumeLine( "  - sun.misc
   JDK internal API (java.base)" );
-40  
-41  assertEquals( 
1, consumer.getOffendingPackages().size() );
-42  assertEquals( 
"JDK internal API (java.base)", 
consumer.getOffendingPackages().get( "sun.misc" 
) );
-43  assertEquals( 
0, consumer.getProfiles().size() );
-44  }
-45  
-46  @Test
-47  public void 
testProfile()
-48  {
-49  consumer = 
new JDepsConsumer();
-50  
consumer.consumeLine( "E:java-workspaceapache-maven-pluginsmaven-jdeps-plugintargetclasses
 - "
-51  + "C:Program 
FilesJavajdk1.8.0jrelibrt.jar 
(compact1)" );
-52  
consumer.consumeLine( "   unnamed 
(classes)" );
-53  
consumer.consumeLine( "  - java.io 
   compact1" );
-54  
consumer.consumeLine( "  - java.lang   
   compact1" );
-55  
consumer.consumeLine( "  - sun.misc
   JDK internal API (rt.jar)" );
-56  
-57  assertEquals( 
1, consumer.getOffendingPackages().size() );
-58  assertEquals( 
"JDK internal API (rt.jar)", 
consumer.getOffendingPackages().get( "sun.misc" 
) );
-59  assertEquals( 
2, consumer.getProfiles().size() );
-60  assertEquals( 
"compact1", consumer.getProfiles().get( "java.io" ) );
-61  assertEquals( 
"compact1", consumer.getProfiles().get( "java.lang" ) );
-62  }
-63  
-64  }
-
-
-Copyright  20152018 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+
+JDepsConsumerTest xref
+
+
+
+View
 Javadoc
+1   package org.apache.maven.plugins.jdeps.consumers;
+2   
+3   /*
+4* Licensed to the Apache Software Foundation (ASF) under 
one
+5* or more contributor license agreements.  See the NOTICE 
file
+6* distributed with this work for additional 
information
+7* regarding copyright ownership.  The ASF licenses this 
file
+8* to you under the Apache License, Version 2.0 (the
+9* "License"); you may not use this file except in 
compliance
+10   * with the License.  You may obtain a copy of the License 
at
+11   *
+12   *   http://www.apache.org/licenses/LICENSE-2.; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
+13   *
+14   * Unless required by applicable law or 

svn commit: r1861143 [15/15] - in /maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugins/jdeps/ apidocs/org/apache/maven/plugins/jdeps/class

2019-06-12 Thread eolivelli
Modified: 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
==
--- 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-jdeps-plugin-LATEST/xref/org/apache/maven/plugins/jdeps/JDKInternalsMojo.html
 Wed Jun 12 15:21:08 2019
@@ -1,78 +1,78 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
-http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
-
-JDKInternalsMojo xref
-
-
-
-View
 Javadoc
-1   package org.apache.maven.plugins.jdeps;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
-11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import java.nio.file.Path;
-23  import java.nio.file.Paths;
-24  import java.util.Collection;
-25  import java.util.LinkedHashSet;
-26  import java.util.Set;
-27  
-28  import 
org.apache.maven.artifact.DependencyResolutionRequiredException;
-29  import 
org.apache.maven.plugins.annotations.LifecyclePhase;
-30  import org.apache.maven.plugins.annotations.Mojo;
-31  import 
org.apache.maven.plugins.annotations.ResolutionScope;
-32  
-33  /**
-34   * Check if main classes depend on internal JDK 
classes
-35   * 
-36   * @author Robert Scholte
-37   *
-38   */
-39  @Mojo( name = "jdkinternals", 
-40 
requiresDependencyResolution = ResolutionScope.COMPILE,
-41 defaultPhase = 
LifecyclePhase.PROCESS_CLASSES, threadSafe = true )
-42  public class 
JDKInternalsMojo
-43  extends AbstractJDepsMojo
-44  {
-45  
-46  @Override
-47  protected String getClassesDirectory()
-48  {
-49  return 
getProject().getBuild().getOutputDirectory();
-50  }
-51  
-52  @Override
-53  protected CollectionPath getClassPath()
-54  throws DependencyResolutionRequiredException
-55  {
-56  
SetPath classPath = new 
LinkedHashSet( getProject().getCompileClasspathElements().size() );
-57  
-58  for ( String elm : 
getProject().getCompileClasspathElements() )
-59  {
-60  
classPath.add( Paths.get( elm ) );
-61  }
-62  
-63  return classPath;
-64  }
-65  }
-
-
-Copyright  20152018 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
-
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+
+JDKInternalsMojo xref
+
+
+
+View
 Javadoc
+1   package org.apache.maven.plugins.jdeps;
+2   
+3   /*
+4* Licensed to the Apache Software Foundation (ASF) under 
one
+5* or more contributor license agreements.  See the NOTICE 
file
+6* distributed with this work for additional 
information
+7* regarding copyright ownership.  The ASF licenses this 
file
+8* to you under the Apache License, Version 2.0 (the
+9* "License"); you may not use this file except in 
compliance
+10   * with the License.  You may obtain a copy of the License 
at
+11   *
+12   *   http://www.apache.org/licenses/LICENSE-2.; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
+13   *
+14   * Unless required by applicable law or agreed to in 
writing,
+15   * software distributed under the License is distributed on 
an
+16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+17   * KIND, either express or implied.  See the License for 
the
+18   * specific language governing permissions and 
limitations
+19   * under the License.
+20   */
+21  
+22  import java.nio.file.Path;
+23  import java.nio.file.Paths;
+24  import java.util.Collection;
+25  import java.util.LinkedHashSet;
+26  import java.util.Set;
+27  
+28  import 
org.apache.maven.artifact.DependencyResolutionRequiredException;
+29  import 
org.apache.maven.plugins.annotations.LifecyclePhase;
+30  import org.apache.maven.plugins.annotations.Mojo;
+31  import 
org.apache.maven.plugins.annotations.ResolutionScope;
+32  
+33  /**
+34   * Check if main classes depend on internal 

[maven-jdeps-plugin] annotated tag maven-jdeps-plugin-3.1.2 created (now 4c14de1)

2019-06-12 Thread eolivelli
This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a change to annotated tag maven-jdeps-plugin-3.1.2
in repository https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git.


  at 4c14de1  (tag)
 tagging edcbab0c81a93338dab6fad479108e1102f86ca1 (commit)
 replaces maven-jdeps-plugin-3.1.1
  by Enrico Olivelli
  on Wed Jun 12 15:12:52 2019 +0200

- Log -
[maven-release-plugin] copy for tag maven-jdeps-plugin-3.1.2
---

No new revisions were added by this update.



[maven-jdeps-plugin] branch master updated: [maven-release-plugin] prepare for next development iteration

2019-06-12 Thread eolivelli
This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 48afa06  [maven-release-plugin] prepare for next development iteration
48afa06 is described below

commit 48afa061e57e9f2aa853ade3f1a22b5d19f6d723
Author: Enrico Olivelli 
AuthorDate: Wed Jun 12 15:12:57 2019 +0200

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index ef5ec0c..4bf2821 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@ under the License.
   
 
   maven-jdeps-plugin
-  3.1.2
+  3.1.3-SNAPSHOT
   maven-plugin
 
   Apache Maven JDeps Plugin
@@ -45,7 +45,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
 
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
 
https://github.com/apache/maven-jdeps-plugin/tree/${project.scm.tag}
-maven-jdeps-plugin-3.1.2
+HEAD
   
   
 JIRA



[maven-jdeps-plugin] branch master updated: [maven-release-plugin] prepare release maven-jdeps-plugin-3.1.2

2019-06-12 Thread eolivelli
This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new edcbab0  [maven-release-plugin] prepare release 
maven-jdeps-plugin-3.1.2
edcbab0 is described below

commit edcbab0c81a93338dab6fad479108e1102f86ca1
Author: Enrico Olivelli 
AuthorDate: Wed Jun 12 15:12:38 2019 +0200

[maven-release-plugin] prepare release maven-jdeps-plugin-3.1.2
---
 pom.xml | 234 
 1 file changed, 117 insertions(+), 117 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1fb5f3b..ef5ec0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,117 +1,117 @@
-
-
-
-
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
-  4.0.0
-
-  
-org.apache.maven.plugins
-maven-plugins
-33
-
-  
-
-  maven-jdeps-plugin
-  3.1.2-SNAPSHOT
-  maven-plugin
-
-  Apache Maven JDeps Plugin
-  The JDeps Plugin uses the jdeps tool to analyze classes for 
internal API calls.
-  2015
-
-  
-${mavenVersion}
-  
-  
-  
-
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
-
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
-
https://github.com/apache/maven-jdeps-plugin/tree/${project.scm.tag}
-HEAD
-  
-  
-JIRA
-https://issues.apache.org/jira/browse/MJDEPS
-  
-  
-Jenkins
-https://builds.apache.org/job/maven-box/job/maven-jdeps-plugin/
-  
-  
-
-  apache.website
-  
scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}
-
-  
-
-  
-3.0
-7
-  
-
-  
-
-  Andrea Nenni
-
-  
-
-  
-
-  org.apache.maven.plugin-tools
-  maven-plugin-annotations
-  provided
-
-
-
-  org.apache.maven
-  maven-plugin-api
-  ${mavenVersion}
-
-
-  org.apache.maven
-  maven-core
-  ${mavenVersion}
-
-
-  org.apache.maven
-  maven-model
-  ${mavenVersion}
-
-
-  org.codehaus.plexus
-  plexus-utils
-  3.1.0
-
-
-  org.apache.commons
-  commons-lang3
-  3.5
-
-
-
-
-  junit
-  junit
-  4.11
-  test
-
-  
-
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
+  4.0.0
+
+  
+org.apache.maven.plugins
+maven-plugins
+33
+
+  
+
+  maven-jdeps-plugin
+  3.1.2
+  maven-plugin
+
+  Apache Maven JDeps Plugin
+  The JDeps Plugin uses the jdeps tool to analyze classes for 
internal API calls.
+  2015
+
+  
+${mavenVersion}
+  
+  
+  
+
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
+
scm:git:https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
+
https://github.com/apache/maven-jdeps-plugin/tree/${project.scm.tag}
+maven-jdeps-plugin-3.1.2
+  
+  
+JIRA
+https://issues.apache.org/jira/browse/MJDEPS
+  
+  
+Jenkins
+https://builds.apache.org/job/maven-box/job/maven-jdeps-plugin/
+  
+  
+
+  apache.website
+  
scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}
+
+  
+
+  
+3.0
+7
+  
+
+  
+
+  Andrea Nenni
+
+  
+
+  
+
+  org.apache.maven.plugin-tools
+  maven-plugin-annotations
+  provided
+
+
+
+  org.apache.maven
+  maven-plugin-api
+  ${mavenVersion}
+
+
+  org.apache.maven
+  maven-core
+  ${mavenVersion}
+
+
+  org.apache.maven
+  maven-model
+  ${mavenVersion}
+
+
+  org.codehaus.plexus
+  plexus-utils
+  3.1.0
+
+
+  org.apache.commons
+  commons-lang3
+  3.5
+
+
+
+
+  junit
+  junit
+  4.11
+  test
+
+  
+