Package org.gradle.wrapper

Source Code of org.gradle.wrapper.Wrapper

/*
* Copyright 2007-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.wrapper;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Properties;

/**
* @author Hans Dockter
*/
public class Wrapper {
    public static final String WRAPPER_PROPERTIES_PROPERTY = "org.gradle.wrapper.properties";
   
    public static final String URL_ROOT_PROPERTY = "urlRoot";
    public static final String DISTRIBUTION_BASE_PROPERTY = "distributionBase";
    public static final String ZIP_STORE_BASE_PROPERTY = "zipStoreBase";
    public static final String DISTRIBUTION_PATH_PROPERTY = "distributionPath";
    public static final String DISTRIBUTION_VERSION_PROPERTY = "distributionVersion";
    public static final String ZIP_STORE_PATH_PROPERTY = "zipStorePath";
    public static final String DISTRIBUTION_NAME_PROPERTY = "distributionName";
    public static final String DISTRIBUTION_CLASSIFIER_PROPERTY = "distributionClassifier";

    public void execute(String[] args, Install install, BootstrapMainStarter bootstrapMainStarter) throws Exception {
        Properties wrapperProperties = new Properties();
        InputStream inStream = new FileInputStream(new File(System.getProperty(WRAPPER_PROPERTIES_PROPERTY)));
        try {
            wrapperProperties.load(inStream);
        } finally {
            inStream.close();
        }
        if (GradleWrapperMain.isDebug()) {
            System.out.println("wrapperProperties = " + wrapperProperties);
        }
        String version = (String) wrapperProperties.get(DISTRIBUTION_VERSION_PROPERTY);
        String gradleHome = install.createDist(
                (String) wrapperProperties.get(URL_ROOT_PROPERTY),
                (String) wrapperProperties.get(DISTRIBUTION_BASE_PROPERTY),
                (String) wrapperProperties.get(DISTRIBUTION_PATH_PROPERTY),
                (String) wrapperProperties.get(DISTRIBUTION_NAME_PROPERTY),
                version,
                (String) wrapperProperties.get(DISTRIBUTION_CLASSIFIER_PROPERTY),
                (String) wrapperProperties.get(ZIP_STORE_BASE_PROPERTY),
                (String) wrapperProperties.get(ZIP_STORE_PATH_PROPERTY)
        );
        if (GradleWrapperMain.isDebug()) {
            System.out.println("args = " + Arrays.asList(args));
        }
        bootstrapMainStarter.start(args, gradleHome, version);
    }
}
TOP

Related Classes of org.gradle.wrapper.Wrapper

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.