Package org.apache.easyant.tasks

Examples of org.apache.easyant.tasks.ConfigureBuildScopedRepository


        project.setProperty(EasyAntMagicNames.OFFLINE_EASYANT_RESOLVER,
                EasyAntConstants.DEFAULT_OFFLINE_EASYANT_RESOLVER);
        project.setProperty(EasyAntMagicNames.OFFLINE_BASE_DIRECTORY, project.getBaseDir().getAbsolutePath()
                + "/offline/");

        ConfigureBuildScopedRepository easyantOfflineRepository = new ConfigureBuildScopedRepository();
        easyantOfflineRepository.setGenerateWrapperResoler(false);
        easyantOfflineRepository.setName(project.getProperty(EasyAntMagicNames.OFFLINE_EASYANT_RESOLVER));
        easyantOfflineRepository.setDictator(Project.toBoolean(project.getProperty(EasyAntMagicNames.EASYANT_OFFLINE)));
        easyantOfflineRepository.setSettingsRef(IvyInstanceHelper.buildEasyAntIvyReference(project));
        easyantOfflineRepository.setTarget(project.getProperty(EasyAntMagicNames.OFFLINE_BASE_DIRECTORY));
        executeTask(easyantOfflineRepository, "configure-offline-easyant-resolver", project);
    }
View Full Code Here

TOP

Related Classes of org.apache.easyant.tasks.ConfigureBuildScopedRepository

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.