Package org.gradle.tooling.model.build

Examples of org.gradle.tooling.model.build.GradleEnvironment


    public VersionOnlyBuildEnvironment(String gradleVersion) {
        this.gradleVersion = gradleVersion;
    }

    public GradleEnvironment getGradle() {
        return new GradleEnvironment() {
            public String getGradleVersion() {
                return gradleVersion;
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.gradle.tooling.model.build.GradleEnvironment

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.