Package org.gradle.tooling.model.internal.outcomes

Examples of org.gradle.tooling.model.internal.outcomes.GradleFileBuildOutcome


    private void addArtifacts(Project project, List<GradleFileBuildOutcome> outcomes) {
        Configuration configuration = project.getConfigurations().findByName("archives");
        if (configuration != null) {
            for (PublishArtifact artifact : configuration.getArtifacts()) {
                GradleFileBuildOutcome outcome = artifactTransformer.transform(artifact, project);
                outcomes.add(outcome);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.gradle.tooling.model.internal.outcomes.GradleFileBuildOutcome

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.