Examples of IvyArtifact


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

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

        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
Copyright © 2018 www.massapi.com. 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.