Package org.jenkinsci.plugins.configfiles.common

Examples of org.jenkinsci.plugins.configfiles.common.CleanTempFilesAction


                Config config = IvyConfig.provider.getConfigById(project.getSettings());
                if (config != null) {
                    FilePath tmp = getWorkspace().createTextTempFile("ivy", "xml", config.content);
                    settings = tmp.getRemote();
                    addAction(new CleanTempFilesAction(settings));

                } else {
                    String settingsFile = project.getIvySettingsFile();
                    if (settingsFile != null) {
                        settings = getWorkspace().child(settingsFile).getRemote();
View Full Code Here

TOP

Related Classes of org.jenkinsci.plugins.configfiles.common.CleanTempFilesAction

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.