forked from apache/maven
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove useless @author tags (apache#1226)
This information is usually more accurately given by the GIT history
- Loading branch information
Showing
689 changed files
with
0 additions
and
772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 25,6 @@ | |
* dependencies transitively</li> | ||
* </ul> | ||
* | ||
* @author <a href="mailto:[email protected]">Jason van Zyl</a> | ||
*/ | ||
public interface ArtifactHandler { | ||
@Deprecated | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 24,6 @@ | |
/** | ||
* Describes a set of policies for a repository to use under certain conditions. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
* @deprecated Avoid use of this type, if you need access to local repository use repository system session instead. | ||
*/ | ||
@Deprecated | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 21,6 @@ | |
/** | ||
* Problem storing the repository metadata in the local repository. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class RepositoryMetadataStoreException extends Exception { | ||
public RepositoryMetadataStoreException(String message) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 28,6 @@ | |
/** | ||
* Base class for artifact resolution exceptions. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class AbstractArtifactResolutionException extends Exception { | ||
private String groupId; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 23,6 @@ | |
/** | ||
* Indicates a cycle in the dependency graph. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class CyclicDependencyException extends ArtifactResolutionException { | ||
private Artifact artifact; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 21,6 @@ | |
import org.apache.maven.artifact.Artifact; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Jason van Zyl</a> | ||
*/ | ||
public interface ArtifactFilter { | ||
boolean include(Artifact artifact); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 22,6 @@ | |
* Describes an artifact version in terms of its components, converts it to/from a string and | ||
* compares two versions. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public interface ArtifactVersion extends Comparable<ArtifactVersion> { | ||
int getMajorVersion(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,8 59,6 @@ | |
* over {@code 1.0.0.X1}.</li> | ||
* </ul> | ||
* | ||
* @author <a href="mailto:[email protected]">Kenney Westerhof</a> | ||
* @author <a href="mailto:[email protected]">Hervé Boutemy</a> | ||
* @see <a href="https://maven.apache.org/pom.html#version-order-specification">"Versioning" in the POM reference</a> | ||
*/ | ||
public class ComparableVersion implements Comparable<ComparableVersion> { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 23,6 @@ | |
/** | ||
* Default implementation of artifact versioning. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class DefaultArtifactVersion implements ArtifactVersion { | ||
private Integer majorVersion; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 21,6 @@ | |
/** | ||
* Occurs when a version is invalid. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class InvalidVersionSpecificationException extends Exception { | ||
public InvalidVersionSpecificationException(String message) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 27,6 @@ | |
/** | ||
* Occurs when ranges exclude each other and no valid value remains. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class OverConstrainedVersionException extends ArtifactResolutionException { | ||
public OverConstrainedVersionException(String msg, Artifact artifact) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 21,6 @@ | |
/** | ||
* Describes a restriction in versioning. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class Restriction { | ||
private final ArtifactVersion lowerBound; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 31,6 @@ | |
/** | ||
* Construct a version range from a specification. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class VersionRange { | ||
private static final Map<String, VersionRange> CACHE_SPEC = Collections.synchronizedMap(new WeakHashMap<>()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 26,6 @@ | |
* TODO merge with artifactmetadatasource | ||
* TODO retrieval exception not appropriate for store | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public interface ArtifactMetadata { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 33,6 @@ | |
/** | ||
* Tests {@link ArtifactUtils}. | ||
* | ||
* @author Benjamin Bentmann | ||
*/ | ||
class ArtifactUtilsTest { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 28,6 @@ | |
/** | ||
* Test ComparableVersion. | ||
* | ||
* @author <a href="mailto:[email protected]">Hervé Boutemy</a> | ||
*/ | ||
@SuppressWarnings("unchecked") | ||
class ComparableVersionTest { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 27,6 @@ | |
/** | ||
* Test DefaultArtifactVersion. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
class DefaultArtifactVersionTest { | ||
private ArtifactVersion newArtifactVersion(String version) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 33,6 @@ | |
/** | ||
* Tests version range construction. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
class VersionRangeTest { | ||
private static final String CHECK_NUM_RESTRICTIONS = "check number of restrictions"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 22,6 @@ | |
|
||
/** | ||
* | ||
* @author Robert Scholte | ||
* @since 3.3.0 | ||
*/ | ||
public class ProblemCollectorFactory { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 22,6 @@ | |
* Type safe reincarnation of Artifact scope. Also supplies the {@code DEFAULT_SCOPE} as well | ||
* as convenience method to deal with scope relationships. | ||
* | ||
* @author <a href="[email protected]">Oleg Gusakov</a> | ||
* | ||
*/ | ||
public enum ArtifactScopeEnum { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 24,6 @@ | |
/** | ||
* Type safe enumeration for the artifact status field. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public final class ArtifactStatus implements Comparable<ArtifactStatus> { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 19,6 @@ | |
package org.apache.maven.artifact.installer; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Jason van Zyl</a> | ||
*/ | ||
public class ArtifactInstallationException extends Exception { | ||
public ArtifactInstallationException(String message) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 24,6 @@ | |
import org.apache.maven.artifact.repository.ArtifactRepository; | ||
|
||
/** | ||
* @author <a href="[email protected]">Michal Maczka</a> | ||
*/ | ||
public interface ArtifactInstaller { | ||
String ROLE = ArtifactInstaller.class.getName(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 30,6 @@ | |
/** | ||
* Manages <a href="https://maven.apache.org/wagon">Wagon</a> related operations in Maven. | ||
* | ||
* @author <a href="[email protected]">Michal Maczka </a> | ||
*/ | ||
@Deprecated | ||
public interface WagonManager extends org.apache.maven.repository.legacy.WagonManager { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 32,6 @@ | |
* This class is an abstraction of the location from/to resources can be | ||
* transferred. | ||
* | ||
* @author <a href="[email protected]">Michal Maczka </a> | ||
*/ | ||
@Deprecated | ||
public class DefaultArtifactRepository extends Repository implements ArtifactRepository { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 34,6 @@ | |
import org.eclipse.aether.RepositorySystemSession; | ||
|
||
/** | ||
* @author jdcasey | ||
*/ | ||
@Named | ||
@Singleton | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 36,6 @@ | |
/** | ||
* Shared methods of the repository metadata handling. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public abstract class AbstractRepositoryMetadata implements RepositoryMetadata { | ||
private static final String LS = System.lineSeparator(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 28,6 @@ | |
/** | ||
* Metadata for the artifact directory of the repository. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public class ArtifactRepositoryMetadata extends AbstractRepositoryMetadata { | ||
private Artifact artifact; | ||
|
Oops, something went wrong.