Package org.gradle.api.publish.ivy

Examples of org.gradle.api.publish.ivy.IvyArtifact


        this.publicationName = publicationName;
        this.ivyArtifactParser = ivyArtifactParser;
    }

    public IvyArtifact artifact(Object source) {
        IvyArtifact artifact = ivyArtifactParser.parseNotation(source);
        add(artifact);
        return artifact;
    }
View Full Code Here


        add(artifact);
        return artifact;
    }

    public IvyArtifact artifact(Object source, Action<? super IvyArtifact> config) {
        IvyArtifact artifact = artifact(source);
        config.execute(artifact);
        return artifact;
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.publish.ivy.IvyArtifact

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.