You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2019/03/21 12:32:25 UTC

[maven-dependency-plugin] branch IMPROVED_CODE updated (50f4ea8 -> 4bd4eae)

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch IMPROVED_CODE
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git.


 discard 50f4ea8  - Fixed JavaDoc. - Removed references which will not being rendered.
     add ebec0d1  [MSHADE-309] - issue tracker link on the web site of shade plugin does not work.
     new 4bd4eae  - Fixed JavaDoc. - Removed references which will not being rendered. - Removed unused classes in src/test/java/org/codehaus.*

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   (50f4ea8)
            \
             N -- N -- N   refs/heads/IMPROVED_CODE (4bd4eae)

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:
 src/site/apt/index.apt.vm                          |  2 +-
 .../plexus/util/interpolation/Interpolator.java    | 33 ------------
 .../util/interpolation/RegexBasedInterpolator.java | 63 ----------------------
 .../plexus/util/interpolation/ValueSource.java     | 33 ------------
 4 files changed, 1 insertion(+), 130 deletions(-)
 delete mode 100644 src/test/java/org/codehaus/plexus/util/interpolation/Interpolator.java
 delete mode 100644 src/test/java/org/codehaus/plexus/util/interpolation/RegexBasedInterpolator.java
 delete mode 100644 src/test/java/org/codehaus/plexus/util/interpolation/ValueSource.java


[maven-dependency-plugin] 01/01: - Fixed JavaDoc. - Removed references which will not being rendered. - Removed unused classes in src/test/java/org/codehaus.*

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch IMPROVED_CODE
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git

commit 4bd4eae1814bb4e93bed33660dc7a31e3094df51
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Thu Mar 21 10:14:54 2019 +0100

    - Fixed JavaDoc.
    - Removed references which will not being rendered.
    - Removed unused classes in src/test/java/org/codehaus.*
---
 .../dependency/PurgeLocalRepositoryMojo.java       |  1 +
 .../dependency/analyze/AbstractAnalyzeMojo.java    |  3 --
 .../plexus/util/interpolation/Interpolator.java    | 33 ------------
 .../util/interpolation/RegexBasedInterpolator.java | 63 ----------------------
 .../plexus/util/interpolation/ValueSource.java     | 33 ------------
 5 files changed, 1 insertion(+), 132 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java b/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
index b86b941..ac03641 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
@@ -362,6 +362,7 @@ public class PurgeLocalRepositoryMojo
      * Purges the local repository for the dependencies in the given Maven project.
      *
      * @param theProject Maven project.
+     * @param purgedArtifacts The artifacts that were already purged.
      * @throws MojoFailureException in case of errors during the purge.
      */
     private void purgeLocalRepository( MavenProject theProject, Set<Artifact> purgedArtifacts )
diff --git a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
index 0e0f584..5c71b2c 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
@@ -174,7 +174,6 @@ public abstract class AbstractAnalyzeMojo
      * </p>
      *
      * @since 2.10
-     * @see StrictPatternIncludesArtifactFilter
      */
     @Parameter
     private String[] ignoredDependencies = new String[0];
@@ -194,7 +193,6 @@ public abstract class AbstractAnalyzeMojo
      * </p>
      *
      * @since 2.10
-     * @see StrictPatternIncludesArtifactFilter
      */
     @Parameter
     private String[] ignoredUsedUndeclaredDependencies = new String[0];
@@ -214,7 +212,6 @@ public abstract class AbstractAnalyzeMojo
      * </p>
      *
      * @since 2.10
-     * @see StrictPatternIncludesArtifactFilter
      */
     @Parameter
     private String[] ignoredUnusedDeclaredDependencies = new String[0];
diff --git a/src/test/java/org/codehaus/plexus/util/interpolation/Interpolator.java b/src/test/java/org/codehaus/plexus/util/interpolation/Interpolator.java
deleted file mode 100644
index 81b9195..0000000
--- a/src/test/java/org/codehaus/plexus/util/interpolation/Interpolator.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package org.codehaus.plexus.util.interpolation;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-/**
- * COPIED FROM plexus-utils-1.5.15 TO SATISFY TESTS Interpolator interface. Based on existing RegexBasedInterpolator
- * interface.
- *
- * @author cstamas
- * @deprecated Use plexus-interpolation APIs instead.
- * @version $Id: Interpolator.java 12174 2010-05-16 21:04:35Z rfscholte $
- */
-public interface Interpolator
-    extends org.codehaus.plexus.interpolation.Interpolator
-{
-}
diff --git a/src/test/java/org/codehaus/plexus/util/interpolation/RegexBasedInterpolator.java b/src/test/java/org/codehaus/plexus/util/interpolation/RegexBasedInterpolator.java
deleted file mode 100644
index 9e0f6a7..0000000
--- a/src/test/java/org/codehaus/plexus/util/interpolation/RegexBasedInterpolator.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package org.codehaus.plexus.util.interpolation;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.util.List;
-
-/**
- * COPIED FROM plexus-utils-1.5.15 TO SATISFY TESTS
- *
- * @version $Id: RegexBasedInterpolator.java 12174 2010-05-16 21:04:35Z rfscholte $
- * @deprecated Use plexus-interpolation APIs instead.
- */
-public class RegexBasedInterpolator
-    extends org.codehaus.plexus.interpolation.RegexBasedInterpolator
-    implements Interpolator
-{
-    public RegexBasedInterpolator()
-    {
-        super();
-    }
-
-    public RegexBasedInterpolator( List valueSources )
-    {
-        super( valueSources );
-    }
-
-    public RegexBasedInterpolator( String startRegex, String endRegex, List valueSources )
-    {
-        super( startRegex, endRegex, valueSources );
-    }
-
-    public RegexBasedInterpolator( String startRegex, String endRegex )
-    {
-        super( startRegex, endRegex );
-    }
-
-    public void addValueSource( ValueSource valueSource )
-    {
-        super.addValueSource( valueSource );
-    }
-
-    public void removeValuesSource( ValueSource valueSource )
-    {
-        super.removeValuesSource( valueSource );
-    }
-}
diff --git a/src/test/java/org/codehaus/plexus/util/interpolation/ValueSource.java b/src/test/java/org/codehaus/plexus/util/interpolation/ValueSource.java
deleted file mode 100644
index 05d6bef..0000000
--- a/src/test/java/org/codehaus/plexus/util/interpolation/ValueSource.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package org.codehaus.plexus.util.interpolation;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-/**
- * COPIED FROM plexus-utils-1.5.15 TO SATISFY TESTS
- *
- * @author jdcasey
- * @deprecated Use plexus-interpolation APIs instead.
- * @version $Id: ValueSource.java 12174 2010-05-16 21:04:35Z rfscholte $
- */
-public interface ValueSource
-    extends org.codehaus.plexus.interpolation.ValueSource
-{
-
-}