Skip to content

Commit

Permalink
Remove useless @author tags (apache#1226)
Browse files Browse the repository at this point in the history
This information is usually more accurately given by the GIT history
  • Loading branch information
gnodet authored Sep 6, 2023
1 parent c0b8a76 commit 0b32463
Show file tree
Hide file tree
Showing 689 changed files with 0 additions and 772 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,6 @@
/**
* Tests that the global settings.xml shipped with the distribution is in good state.
*
* @author Benjamin Bentmann
*/
class GlobalSettingsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,6 @@
import org.apache.maven.artifact.versioning.VersionRange;

/**
* @author Jason van Zyl
*/
public class DefaultArtifact implements Artifact {
private String groupId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 25,6 @@
* dependencies transitively</li>
* </ul>
*
* @author <a href="mailto:[email protected]">Jason van Zyl</a>
*/
public interface ArtifactHandler {
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 25,6 @@
/**
* Repository layout.
*
* @author jdcasey
* @deprecated Avoid use of this type, if you need access to local repository use repository system session instead.
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 24,6 @@
import org.apache.maven.artifact.repository.ArtifactRepository;

/**
* @author Jason van Zyl
*/
public class ArtifactNotFoundException extends AbstractArtifactResolutionException {
private String downloadUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 24,6 @@
import org.apache.maven.artifact.repository.ArtifactRepository;

/**
* @author Jason van Zyl
*/
public class ArtifactResolutionException extends AbstractArtifactResolutionException {
@SuppressWarnings("checkstyle:parameternumber")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<>());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 33,6 @@
/**
* Tests {@link ArtifactUtils}.
*
* @author Benjamin Bentmann
*/
class ArtifactUtilsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 28,6 @@
/**
* Test ComparableVersion.
*
* @author <a href="mailto:[email protected]">Hervé Boutemy</a>
*/
@SuppressWarnings("unchecked")
class ComparableVersionTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 27,6 @@
/**
* Test DefaultArtifactVersion.
*
* @author <a href="mailto:[email protected]">Brett Porter</a>
*/
class DefaultArtifactVersionTest {
private ArtifactVersion newArtifactVersion(String version) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 23,6 @@
* thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
* that exhibits the problem.
*
* @author Benjamin Bentmann
* @author Robert Scholte
*/
class DefaultProblem implements Problem {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 24,6 @@
/**
* Collects problems that are encountered during settings building.
*
* @author Benjamin Bentmann
* @author Robert Scholte
*/
class DefaultProblemCollector implements ProblemCollector {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 27,6 @@
/**
* Wraps an ordinary {@link File} as a source.
*
* @author Benjamin Bentmann
*/
public class FileSource implements Source {
private final File file;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 23,6 @@
* thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
* that exhibits the problem.
*
* @author Benjamin Bentmann
* @author Robert Scholte
*/
public interface Problem {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 23,6 @@
/**
* Collects problems that are encountered during settings building.
*
* @author Benjamin Bentmann
* @author Robert Scholte
*/
public interface ProblemCollector {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 22,6 @@

/**
*
* @author Robert Scholte
* @since 3.3.0
*/
public class ProblemCollectorFactory {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 24,6 @@
/**
* Provides access to the contents of a source independently of the backing store (e.g. file system, database, memory).
*
* @author Benjamin Bentmann
*/
public interface Source {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 26,6 @@
/**
* Wraps an ordinary {@link CharSequence} as a source.
*
* @author Benjamin Bentmann
*/
public class StringSource implements Source {
private final String content;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 26,6 @@
/**
* Wraps an ordinary {@link URL} as a source.
*
* @author Benjamin Bentmann
*/
public class UrlSource implements Source {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,6 @@
import org.apache.maven.extension.internal.CoreExports;

/**
* @author Jason van Zyl
*/
@Named
@Singleton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 30,6 @@
/**
* @deprecated As of 3.2.2, and there is no direct replacement. This is an internal class which was not marked as such,
* but should have been.
* @author jvanzyl
*
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 25,6 @@
* repository doesn't have a corresponding {@link org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout}
* component in the current container.
*
* @author jdcasey
*/
public class UnknownRepositoryLayoutException extends InvalidRepositoryException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 19,6 @@
package org.apache.maven.artifact.deployer;

/**
* @author Jason van Zyl
*/
public class ArtifactDeploymentException extends Exception {
public ArtifactDeploymentException(String message) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 45,6 @@
import org.eclipse.aether.util.artifact.SubArtifact;

/**
* @author Jason van Zyl
*/
@Named
@Singleton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 19,6 @@
package org.apache.maven.artifact.manager;

/**
* @author Olivier Lamy
*/
@Deprecated
public class WagonConfigurationException extends org.apache.maven.repository.legacy.WagonConfigurationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 22,6 @@
import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;

/**
* @author jdcasey
*/
public interface ArtifactRepositoryFactory {
String ROLE = ArtifactRepositoryFactory.class.getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 34,6 @@
import org.eclipse.aether.RepositorySystemSession;

/**
* @author jdcasey
*/
@Named
@Singleton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 48,6 @@
* <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
* of the public API. In particular, this class can be changed or deleted without prior notice.
*
* @author Benjamin Bentmann
*/
public class LegacyLocalRepositoryManager implements LocalRepositoryManager {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading

0 comments on commit 0b32463

Please sign in to comment.