Example usage for org.apache.maven.artifact Artifact interface-usage

List of usage examples for org.apache.maven.artifact Artifact interface-usage

Introduction

In this page you can find the example usage for org.apache.maven.artifact Artifact interface-usage.

Usage

From source file com.picocontainer.modules.maven.MockArtifact.java

/**
 * @todo move to maven-artifact-test
 */
class MockArtifact implements Artifact {
    private String groupId;

From source file com.soffid.maven.plugin.mda.MockArtifact.java

/**
 * @todo move to maven-artifact-test
 */
class MockArtifact implements Artifact {
    private String groupId;

From source file cop.maven.plugins.mocks.ArtifactMock.java

/**
 * @author Oleg Cherednik
 * @since 17.02.2017
 */
public class ArtifactMock implements Artifact {
    private String scope;

From source file de.zalando.mojo.aspectj.MockArtifact.java

/**
 * Fake implementation of artifict to test with
 * 
 * @author <a href="mailto:tel@objectnet.no">Thor Age Eldby</a>
 */
public class MockArtifact implements Artifact {

From source file es.caib.maven.plugin.par.MockArtifact.java

/**
 * @todo move to maven-artifact-test
 */
class MockArtifact implements Artifact {
    private String groupId;

From source file es.caib.maven.plugin.sar.MockArtifact.java

/**
 * @todo move to maven-artifact-test
 */
class MockArtifact implements Artifact {
    private String groupId;

From source file org.arakhne.maven.ExtendedArtifact.java

/**
 * Artifact implementation which also includes the artifact name,
 * contributors, authors, and website.
 *
 * @author $Author: galland$
 * @version $FullVersion$

From source file org.codehaus.mojo.aspectj.MockArtifact.java

/**
 * Fake implementation of artifict to test with
 * 
 * @author <a href="mailto:tel@objectnet.no">Thor Age Eldby</a>
 */
public class MockArtifact implements Artifact {

From source file org.echocat.jomon.maven.boot.ArtifactWithDependencies.java

public interface ArtifactWithDependencies extends Artifact {

    public Set<ArtifactWithDependencies> getDependencies();

}

From source file org.jetbrains.idea.maven.server.embedder.CustomArtifact.java

public class CustomArtifact implements Artifact {
    private static final Map<String, File> ourStubCache = new HashMap<String, File>();
    private static final ReentrantReadWriteLock ourCacheLock = new ReentrantReadWriteLock();
    private static final Lock ourCacheReadLock = ourCacheLock.readLock();
    private static final Lock ourCacheWriteLock = ourCacheLock.writeLock();