diff --git a/core/src/main/java/hudson/tasks/Ant.java b/core/src/main/java/hudson/tasks/Ant.java deleted file mode 100644 index de03b08612b1ba88afebd5c48c78f48012a6b47d..0000000000000000000000000000000000000000 --- a/core/src/main/java/hudson/tasks/Ant.java +++ /dev/null @@ -1,462 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Tom Huybrechts, Yahoo! Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks; - -import hudson.CopyOnWrite; -import hudson.EnvVars; -import hudson.Extension; -import hudson.FilePath; -import hudson.Functions; -import hudson.Launcher; -import hudson.Util; -import hudson.model.AbstractBuild; -import hudson.model.AbstractProject; -import hudson.model.BuildListener; -import hudson.model.Computer; -import hudson.model.EnvironmentSpecific; -import jenkins.model.Jenkins; -import hudson.model.Node; -import hudson.model.TaskListener; -import hudson.remoting.Callable; -import hudson.slaves.NodeSpecific; -import hudson.tasks._ant.AntConsoleAnnotator; -import hudson.tools.ToolDescriptor; -import hudson.tools.ToolInstallation; -import hudson.tools.DownloadFromUrlInstaller; -import hudson.tools.ToolInstaller; -import hudson.tools.ToolProperty; -import hudson.util.ArgumentListBuilder; -import hudson.util.VariableResolver; -import hudson.util.FormValidation; -import hudson.util.XStream2; -import net.sf.json.JSONObject; -import org.kohsuke.stapler.DataBoundConstructor; -import org.kohsuke.stapler.StaplerRequest; -import org.kohsuke.stapler.QueryParameter; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Properties; -import java.util.List; -import java.util.Collections; -import java.util.Set; - -/** - * Ant launcher. - * - * @author Kohsuke Kawaguchi - */ -public class Ant extends Builder { - /** - * The targets, properties, and other Ant options. - * Either separated by whitespace or newline. - */ - private final String targets; - - /** - * Identifies {@link AntInstallation} to be used. - */ - private final String antName; - - /** - * ANT_OPTS if not null. - */ - private final String antOpts; - - /** - * Optional build script path relative to the workspace. - * Used for the Ant '-f' option. - */ - private final String buildFile; - - /** - * Optional properties to be passed to Ant. Follows {@link Properties} syntax. - */ - private final String properties; - - @DataBoundConstructor - public Ant(String targets,String antName, String antOpts, String buildFile, String properties) { - this.targets = targets; - this.antName = antName; - this.antOpts = Util.fixEmptyAndTrim(antOpts); - this.buildFile = Util.fixEmptyAndTrim(buildFile); - this.properties = Util.fixEmptyAndTrim(properties); - } - - public String getBuildFile() { - return buildFile; - } - - public String getProperties() { - return properties; - } - - public String getTargets() { - return targets; - } - - /** - * Gets the Ant to invoke, - * or null to invoke the default one. - */ - public AntInstallation getAnt() { - for( AntInstallation i : getDescriptor().getInstallations() ) { - if(antName!=null && antName.equals(i.getName())) - return i; - } - return null; - } - - /** - * Gets the ANT_OPTS parameter, or null. - */ - public String getAntOpts() { - return antOpts; - } - - @Override - public boolean perform(AbstractBuild build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException { - ArgumentListBuilder args = new ArgumentListBuilder(); - - EnvVars env = build.getEnvironment(listener); - env.overrideAll(build.getBuildVariables()); - - AntInstallation ai = getAnt(); - if(ai==null) { - args.add(launcher.isUnix() ? "ant" : "ant.bat"); - } else { - ai = ai.forNode(Computer.currentComputer().getNode(), listener); - ai = ai.forEnvironment(env); - String exe = ai.getExecutable(launcher); - if (exe==null) { - listener.fatalError(Messages.Ant_ExecutableNotFound(ai.getName())); - return false; - } - args.add(exe); - } - - VariableResolver vr = new VariableResolver.ByMap(env); - String buildFile = env.expand(this.buildFile); - String targets = env.expand(this.targets); - - FilePath buildFilePath = buildFilePath(build.getModuleRoot(), buildFile, targets); - - if(!buildFilePath.exists()) { - // because of the poor choice of getModuleRoot() with CVS/Subversion, people often get confused - // with where the build file path is relative to. Now it's too late to change this behavior - // due to compatibility issue, but at least we can make this less painful by looking for errors - // and diagnosing it nicely. See HUDSON-1782 - - // first check if this appears to be a valid relative path from workspace root - FilePath buildFilePath2 = buildFilePath(build.getWorkspace(), buildFile, targets); - if(buildFilePath2.exists()) { - // This must be what the user meant. Let it continue. - buildFilePath = buildFilePath2; - } else { - // neither file exists. So this now really does look like an error. - listener.fatalError("Unable to find build script at "+buildFilePath); - return false; - } - } - - if(buildFile!=null) { - args.add("-file", buildFilePath.getName()); - } - - Set sensitiveVars = build.getSensitiveBuildVariables(); - - args.addKeyValuePairs("-D",build.getBuildVariables(),sensitiveVars); - - args.addKeyValuePairsFromPropertyString("-D",properties,vr,sensitiveVars); - - args.addTokenized(targets.replaceAll("[\t\r\n]+"," ")); - - if(ai!=null) - env.put("ANT_HOME",ai.getHome()); - if(antOpts!=null) - env.put("ANT_OPTS",env.expand(antOpts)); - - if(!launcher.isUnix()) { - args = args.toWindowsCommand(); - // For some reason, ant on windows rejects empty parameters but unix does not. - // Add quotes for any empty parameter values: - List newArgs = new ArrayList(args.toList()); - newArgs.set(newArgs.size() - 1, newArgs.get(newArgs.size() - 1).replaceAll( - "(?<= )(-D[^\" ]+)= ", "$1=\"\" ")); - args = new ArgumentListBuilder(newArgs.toArray(new String[newArgs.size()])); - } - - long startTime = System.currentTimeMillis(); - try { - AntConsoleAnnotator aca = new AntConsoleAnnotator(listener.getLogger(),build.getCharset()); - int r; - try { - r = launcher.launch().cmds(args).envs(env).stdout(aca).pwd(buildFilePath.getParent()).join(); - } finally { - aca.forceEol(); - } - return r==0; - } catch (IOException e) { - Util.displayIOException(e,listener); - - String errorMessage = Messages.Ant_ExecFailed(); - if(ai==null && (System.currentTimeMillis()-startTime)<1000) { - if(getDescriptor().getInstallations()==null) - // looks like the user didn't configure any Ant installation - errorMessage += Messages.Ant_GlobalConfigNeeded(); - else - // There are Ant installations configured but the project didn't pick it - errorMessage += Messages.Ant_ProjectConfigNeeded(); - } - e.printStackTrace( listener.fatalError(errorMessage) ); - return false; - } - } - - private static FilePath buildFilePath(FilePath base, String buildFile, String targets) { - if(buildFile!=null) return base.child(buildFile); - // some users specify the -f option in the targets field, so take that into account as well. - // see - String[] tokens = Util.tokenize(targets); - for (int i = 0; i { - @CopyOnWrite - private volatile AntInstallation[] installations = new AntInstallation[0]; - - public DescriptorImpl() { - load(); - } - - protected DescriptorImpl(Class clazz) { - super(clazz); - } - - /** - * Obtains the {@link AntInstallation.DescriptorImpl} instance. - */ - public AntInstallation.DescriptorImpl getToolDescriptor() { - return ToolInstallation.all().get(AntInstallation.DescriptorImpl.class); - } - - public boolean isApplicable(Class jobType) { - return true; - } - - @Override - public String getHelpFile() { - return "/help/project-config/ant.html"; - } - - public String getDisplayName() { - return Messages.Ant_DisplayName(); - } - - public AntInstallation[] getInstallations() { - return installations; - } - - @Override - public Ant newInstance(StaplerRequest req, JSONObject formData) throws FormException { - return (Ant)req.bindJSON(clazz,formData); - } - - public void setInstallations(AntInstallation... antInstallations) { - this.installations = antInstallations; - save(); - } - } - - /** - * Represents the Ant installation on the system. - */ - public static final class AntInstallation extends ToolInstallation implements - EnvironmentSpecific, NodeSpecific { - // to remain backward compatible with earlier Hudson that stored this field here. - @Deprecated - private transient String antHome; - - @DataBoundConstructor - public AntInstallation(String name, String home, List> properties) { - super(name, launderHome(home), properties); - } - - /** - * @deprecated as of 1.308 - * Use {@link #AntInstallation(String, String, List)} - */ - public AntInstallation(String name, String home) { - this(name,home,Collections.>emptyList()); - } - - private static String launderHome(String home) { - if(home.endsWith("/") || home.endsWith("\\")) { - // see https://issues.apache.org/bugzilla/show_bug.cgi?id=26947 - // Ant doesn't like the trailing slash, especially on Windows - return home.substring(0,home.length()-1); - } else { - return home; - } - } - - /** - * install directory. - * - * @deprecated as of 1.307. Use {@link #getHome()}. - */ - public String getAntHome() { - return getHome(); - } - - /** - * Gets the executable path of this Ant on the given target system. - */ - public String getExecutable(Launcher launcher) throws IOException, InterruptedException { - return launcher.getChannel().call(new Callable() { - public String call() throws IOException { - File exe = getExeFile(); - if(exe.exists()) - return exe.getPath(); - return null; - } - }); - } - - private File getExeFile() { - String execName = Functions.isWindows() ? "ant.bat" : "ant"; - String home = Util.replaceMacro(getHome(), EnvVars.masterEnvVars); - - return new File(home,"bin/"+execName); - } - - /** - * Returns true if the executable exists. - */ - public boolean getExists() throws IOException, InterruptedException { - return getExecutable(new Launcher.LocalLauncher(TaskListener.NULL))!=null; - } - - private static final long serialVersionUID = 1L; - - public AntInstallation forEnvironment(EnvVars environment) { - return new AntInstallation(getName(), environment.expand(getHome()), getProperties().toList()); - } - - public AntInstallation forNode(Node node, TaskListener log) throws IOException, InterruptedException { - return new AntInstallation(getName(), translateFor(node, log), getProperties().toList()); - } - - @Extension - public static class DescriptorImpl extends ToolDescriptor { - - @Override - public String getDisplayName() { - return "Ant"; - } - - // for compatibility reasons, the persistence is done by Ant.DescriptorImpl - @Override - public AntInstallation[] getInstallations() { - return Jenkins.getInstance().getDescriptorByType(Ant.DescriptorImpl.class).getInstallations(); - } - - @Override - public void setInstallations(AntInstallation... installations) { - Jenkins.getInstance().getDescriptorByType(Ant.DescriptorImpl.class).setInstallations(installations); - } - - @Override - public List getDefaultInstallers() { - return Collections.singletonList(new AntInstaller(null)); - } - - /** - * Checks if the ANT_HOME is valid. - */ - public FormValidation doCheckHome(@QueryParameter File value) { - // this can be used to check the existence of a file on the server, so needs to be protected - if(!Jenkins.getInstance().hasPermission(Jenkins.ADMINISTER)) - return FormValidation.ok(); - - if(value.getPath().equals("")) - return FormValidation.ok(); - - if(!value.isDirectory()) - return FormValidation.error(Messages.Ant_NotADirectory(value)); - - File antJar = new File(value,"lib/ant.jar"); - if(!antJar.exists()) - return FormValidation.error(Messages.Ant_NotAntDirectory(value)); - - return FormValidation.ok(); - } - - public FormValidation doCheckName(@QueryParameter String value) { - return FormValidation.validateRequired(value); - } - } - - public static class ConverterImpl extends ToolConverter { - public ConverterImpl(XStream2 xstream) { super(xstream); } - @Override protected String oldHomeField(ToolInstallation obj) { - return ((AntInstallation)obj).antHome; - } - } - } - - /** - * Automatic Ant installer from apache.org. - */ - public static class AntInstaller extends DownloadFromUrlInstaller { - @DataBoundConstructor - public AntInstaller(String id) { - super(id); - } - - @Extension - public static final class DescriptorImpl extends DownloadFromUrlInstaller.DescriptorImpl { - public String getDisplayName() { - return Messages.InstallFromApache(); - } - - @Override - public boolean isApplicable(Class toolType) { - return toolType==AntInstallation.class; - } - } - } -} diff --git a/core/src/main/java/hudson/tasks/_ant/AntConsoleAnnotator.java b/core/src/main/java/hudson/tasks/_ant/AntConsoleAnnotator.java deleted file mode 100644 index 7ddd6cb9d9e8cb75214e5a1be5cf8869642aeb25..0000000000000000000000000000000000000000 --- a/core/src/main/java/hudson/tasks/_ant/AntConsoleAnnotator.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2010, Sun Microsystems, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks._ant; - -import hudson.console.LineTransformationOutputStream; - -import java.io.IOException; -import java.io.OutputStream; -import java.nio.ByteBuffer; -import java.nio.charset.Charset; - -/** - * Filter {@link OutputStream} that places an annotation that marks Ant target execution. - * - * @author Kohsuke Kawaguchi - * @sine 1.349 - */ -public class AntConsoleAnnotator extends LineTransformationOutputStream { - private final OutputStream out; - private final Charset charset; - - private boolean seenEmptyLine; - - public AntConsoleAnnotator(OutputStream out, Charset charset) { - this.out = out; - this.charset = charset; - } - - @Override - protected void eol(byte[] b, int len) throws IOException { - String line = charset.decode(ByteBuffer.wrap(b, 0, len)).toString(); - - // trim off CR/LF from the end - line = trimEOL(line); - - if (seenEmptyLine && endsWith(line,':') && line.indexOf(' ')<0) - // put the annotation - new AntTargetNote().encodeTo(out); - - if (line.equals("BUILD SUCCESSFUL") || line.equals("BUILD FAILED")) - new AntOutcomeNote().encodeTo(out); - - seenEmptyLine = line.length()==0; - out.write(b,0,len); - } - - private boolean endsWith(String line, char c) { - int len = line.length(); - return len>0 && line.charAt(len-1)==c; - } - - @Override - public void close() throws IOException { - super.close(); - out.close(); - } - -} diff --git a/core/src/main/java/hudson/tasks/_ant/AntOutcomeNote.java b/core/src/main/java/hudson/tasks/_ant/AntOutcomeNote.java deleted file mode 100644 index 6a73b555247d99706adbb1453f9eae0cc6f40079..0000000000000000000000000000000000000000 --- a/core/src/main/java/hudson/tasks/_ant/AntOutcomeNote.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2010, InfraDNA, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks._ant; - -import hudson.Extension; -import hudson.MarkupText; -import hudson.console.ConsoleAnnotationDescriptor; -import hudson.console.ConsoleAnnotator; -import hudson.console.ConsoleNote; - -/** - * Annotates the BUILD SUCCESSFUL/FAILED line of the Ant execution. - * - * @author Kohsuke Kawaguchi - */ -public class AntOutcomeNote extends ConsoleNote { - public AntOutcomeNote() { - } - - @Override - public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { - if (text.getText().contains("FAIL")) - text.addMarkup(0,text.length(),"",""); - if (text.getText().contains("SUCCESS")) - text.addMarkup(0,text.length(),"",""); - return null; - } - - @Extension - public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { - public String getDisplayName() { - return "Ant build outcome"; - } - } -} diff --git a/core/src/main/java/hudson/tasks/_ant/AntTargetNote.java b/core/src/main/java/hudson/tasks/_ant/AntTargetNote.java deleted file mode 100644 index 39586bc0f5a132b3e508e711d36f280cdd3056f3..0000000000000000000000000000000000000000 --- a/core/src/main/java/hudson/tasks/_ant/AntTargetNote.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2010, Sun Microsystems, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks._ant; - -import hudson.Extension; -import hudson.MarkupText; -import hudson.console.ConsoleNote; -import hudson.console.ConsoleAnnotationDescriptor; -import hudson.console.ConsoleAnnotator; - -import java.util.regex.Pattern; - -/** - * Marks the log line "TARGET:" that Ant uses to mark the beginning of the new target. - * @sine 1.349 - */ -public final class AntTargetNote extends ConsoleNote { - public AntTargetNote() { - } - - @Override - public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) { - // still under development. too early to put into production - if (!ENABLED) return null; - - MarkupText.SubText t = text.findToken(Pattern.compile(".*(?=:)")); - if (t!=null) - t.addMarkup(0,t.length(),"",""); - return null; - } - - @Extension - public static final class DescriptorImpl extends ConsoleAnnotationDescriptor { - public String getDisplayName() { - return "Ant targets"; - } - } - - public static boolean ENABLED = !Boolean.getBoolean(AntTargetNote.class.getName()+".disabled"); -} diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config.jelly b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config.jelly deleted file mode 100644 index ee6e04cf2a33d77f7d15289f53713e062265077a..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config.jelly +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_da.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_da.properties deleted file mode 100644 index 03a148422b18e1455627f2af8e0b878e6833ba15..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_da.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Navn diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_de.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_de.properties deleted file mode 100644 index e1f5e60ff0c7c746114973db7af002fca93142b0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_de.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Name diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_es.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_es.properties deleted file mode 100644 index 4ad9e470e326b080373db8b67a7c695ec1784501..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_es.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Nombre diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_fr.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_fr.properties deleted file mode 100644 index 5fc25fc139a2af52714af9910980cea4b969a882..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_fr.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Nom diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ja.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ja.properties deleted file mode 100644 index 9b141b0023b25b6907f6383bb976181ecbf6c8dd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ja.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=\u540D\u524D diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_nl.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_nl.properties deleted file mode 100644 index d15409d6cf7e340e8b9ed923a401f0db6e6b2d6f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_nl.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Naam diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_pt_BR.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_pt_BR.properties deleted file mode 100644 index 14eb16ae1aa2e1231da4d4329f46ae632df0ed3b..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_pt_BR.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=Nome diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ru.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ru.properties deleted file mode 100644 index 2be8aec78f8a263627f05fab7e8912c627ba8a29..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/config_ru.properties +++ /dev/null @@ -1,24 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Name=\u0438\u043C\u044F -name=\u0438\u043C\u044F diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_fr.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_fr.properties deleted file mode 100644 index f88007758ff9e44632c5c3f02bcf9094815f5211..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_fr.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=Installations de Ant -List\ of\ Ant\ installations\ on\ this\ system=Liste des installations de Ant sur ce systme -name=Nom diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ja.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ja.properties deleted file mode 100644 index cc814ef9cc1171bc073668f057931dde283fc546..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ja.properties +++ /dev/null @@ -1,27 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u6E08\u307FAnt -List\ of\ Ant\ installations\ on\ this\ system=Jenkins\u3067\u5229\u7528\u3059\u308B\u3001\u3053\u306E\u30B7\u30B9\u30C6\u30E0\u306B\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u305FAnt\u306E\u4E00\u89A7\u3067\u3059 -name=\u540D\u524D -Add\ Ant=Ant\u8FFD\u52A0 -Delete\ Ant=Ant\u524A\u9664 diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_nl.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_nl.properties deleted file mode 100644 index 0d1ba7833ab3f4e746688c16d2325d364c694eb0..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_nl.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=Ant installatie -List\ of\ Ant\ installations\ on\ this\ system=Lijst van de op dit systeem beschikbare installaties. -name=naam diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_pt_BR.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_pt_BR.properties deleted file mode 100644 index 35970bd568aa7ecd7dd9b88b06c47a6683069746..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_pt_BR.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=Instala\u00e7\u00e2o do Ant -List\ of\ Ant\ installations\ on\ this\ system=Lista de instala\u00e7\u00f5es do Ant neste sistema -name=nome diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ru.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ru.properties deleted file mode 100644 index 0001cc01cffe8966ee7cccb2ccdb26ad8c2fc2ff..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_ru.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=\u0418\u043d\u0441\u0442\u0430\u043b\u043b\u044f\u0446\u0438\u044f Ant -List\ of\ Ant\ installations\ on\ this\ system=\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u043d\u0441\u0442\u0430\u043b\u043b\u044f\u0446\u0438\u0439 Ant \u043d\u0430 \u044d\u0442\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 -name=\u0418\u043c\u044f diff --git a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_tr.properties b/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_tr.properties deleted file mode 100644 index 1ab3bbde9ef8c29396ffa3ac4eb70bde0f6e4855..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/AntInstallation/global_tr.properties +++ /dev/null @@ -1,25 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ installation=Ant\ kurulumu -List\ of\ Ant\ installations\ on\ this\ system=Sistemdeki\ Ant\ kurulumlar\u0131n\u0131n\ listesi -name=isim diff --git a/core/src/main/resources/hudson/tasks/Ant/config.groovy b/core/src/main/resources/hudson/tasks/Ant/config.groovy deleted file mode 100644 index 05d6efccbd1fdc571294dadda724fff37b6802f8..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config.groovy +++ /dev/null @@ -1,52 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2011, CloudBees, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks.Ant; -f=namespace(lib.FormTagLib) - -if (descriptor.installations.length != 0) { - f.entry(title:_("Ant Version")) { - select(class:"setting-input",name:"ant.antName") { - option(value:"(Default)", _("Default")) - descriptor.installations.each { - f.option(selected:it.name==instance?.ant?.name, value:it.name, it.name) - } - } - } -} - -f.entry(title:_("Targets"),help:"/help/ant/ant-targets.html") { - f.expandableTextbox(name:"ant.targets",value:instance?.targets) -} - -f.advanced { - f.entry(title:_("Build File"),help:"/help/ant/ant-buildfile.html") { - f.expandableTextbox(name:"ant.buildFile",value:instance?.buildFile) - } - f.entry(title:_("Properties"),help:"/help/ant/ant-properties.html") { - f.expandableTextbox(name:"ant.properties",value:instance?.properties) - } - f.entry(title:_("Java Options"),help:"/help/ant/ant-opts.html") { - f.expandableTextbox(name:"ant.antOpts",value:instance?.antOpts) - } -} diff --git a/core/src/main/resources/hudson/tasks/Ant/config_da.properties b/core/src/main/resources/hudson/tasks/Ant/config_da.properties deleted file mode 100644 index 80cf993c0b6dc10cee943a95d6187468af52409d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_da.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Default=Standard -Build\ File=Byggefil -Properties=Egenskaber -Targets=M\u00e5l -Ant\ Version=Ant version -Java\ Options=Java tilvalg diff --git a/core/src/main/resources/hudson/tasks/Ant/config_de.properties b/core/src/main/resources/hudson/tasks/Ant/config_de.properties deleted file mode 100644 index d8c7da881b35e32f4d1e83c8bfc2aa042e1aec5e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_de.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Ant Version -Default=Standard -Targets=Target -Build\ File=Ant Build Datei -Properties=Systemeigenschaften -Java\ Options=Java-Optionen diff --git a/core/src/main/resources/hudson/tasks/Ant/config_es.properties b/core/src/main/resources/hudson/tasks/Ant/config_es.properties deleted file mode 100644 index dde0b6c116cfac976581b3f2968b25dcfc2ee442..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_es.properties +++ /dev/null @@ -1,29 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Versin de Ant -Default=Por defecto -Targets=Destinos -Build\ File=Fichero Ant -Properties=Propiedades -Java\ Options=Opciones de java - diff --git a/core/src/main/resources/hudson/tasks/Ant/config_fr.properties b/core/src/main/resources/hudson/tasks/Ant/config_fr.properties deleted file mode 100644 index 10b8c48ba5d5c95d3d124730646cf96ac30d8d92..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_fr.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Version de Ant -Default=Par dfaut -Targets=Cibles -Build\ File=Fichier de Build -Properties=Proprits -Java\ Options=Options Java diff --git a/core/src/main/resources/hudson/tasks/Ant/config_ja.properties b/core/src/main/resources/hudson/tasks/Ant/config_ja.properties deleted file mode 100644 index 8a750ebfacff790f34a29536df23087487d024bb..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_ja.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=\u4F7F\u7528\u3059\u308BAnt -Default=\u30C7\u30D5\u30A9\u30EB\u30C8 -Targets=\u30BF\u30FC\u30B2\u30C3\u30C8 -Build\ File=\u30D3\u30EB\u30C9\u30D5\u30A1\u30A4\u30EB -Properties=\u30D7\u30ED\u30D1\u30C6\u30A3 -Java\ Options=Java\u30AA\u30D7\u30B7\u30E7\u30F3 diff --git a/core/src/main/resources/hudson/tasks/Ant/config_nl.properties b/core/src/main/resources/hudson/tasks/Ant/config_nl.properties deleted file mode 100644 index b7295d27194ee82f510fd85f8c75b3a9d1b60af5..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_nl.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Ant versie -Default=Standaard -Targets=Doelen -Build\ File=Ant bouwbestand -Properties=Eigenschappen -Java\ Options=Java opties diff --git a/core/src/main/resources/hudson/tasks/Ant/config_pt_BR.properties b/core/src/main/resources/hudson/tasks/Ant/config_pt_BR.properties deleted file mode 100644 index 7e39a40787998c8203e28d5143f6142296de1978..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_pt_BR.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Vers\u00e3o do Ant -Default=Padr\u00e3o -Targets=Alvos -Build\ File=Arquivo de Constru\u00e7\u00e3o -Properties=Propriedades -Java\ Options=Op\u00e7\u00f5es Java diff --git a/core/src/main/resources/hudson/tasks/Ant/config_ru.properties b/core/src/main/resources/hudson/tasks/Ant/config_ru.properties deleted file mode 100644 index 54b2e38ab9141223f02412f9977b5662aac8b629..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_ru.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=\u0412\u0435\u0440\u0441\u0438\u044f Ant -Default=\u041f\u043e-\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e -Targets=\u0426\u0435\u043b\u0438 -Build\ File=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0439 \u0444\u0430\u0439\u043b Ant -Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 -Java\ Options=\u041e\u043f\u0446\u0438\u0438 Java diff --git a/core/src/main/resources/hudson/tasks/Ant/config_tr.properties b/core/src/main/resources/hudson/tasks/Ant/config_tr.properties deleted file mode 100644 index aa147aebc0a74cfc85f56b161bd34ba398a3dbca..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/Ant/config_tr.properties +++ /dev/null @@ -1,28 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Ant\ Version=Ant Versiyonu -Default=Varsay\u0131lan -Targets=Hedefler -Build\ File=Yap\u0131land\u0131rma Dosyas\u0131 -Properties=\u00d6zellikler -Java\ Options=Java\ Se\u00e7enekleri diff --git a/core/src/main/resources/hudson/tasks/_ant/AntOutcomeNote/style.css b/core/src/main/resources/hudson/tasks/_ant/AntOutcomeNote/style.css deleted file mode 100644 index dd42930986c057387036d9985836bd3a6bfaab8e..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntOutcomeNote/style.css +++ /dev/null @@ -1,8 +0,0 @@ -.ant-outcome-failure { - font-weight: bold; - color: red; -} - -.ant-outcome-success { - color: #204A87; -} \ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline.jelly b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline.jelly deleted file mode 100644 index f26323b6fe72284bf950d7dbd206145733fc89b4..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline.jelly +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - -
${%Executed Ant Targets}
-
-
-
\ No newline at end of file diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_da.properties b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_da.properties deleted file mode 100644 index 249822d689be655c7503df42e86cb8af40f97fea..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_da.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Executed\ Ant\ Targets=Afvikl Ant m\u00e5l diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_de.properties b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_de.properties deleted file mode 100644 index d151598263d97f6ba4221066ff3aa3bc6dd2d5e7..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_de.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Executed\ Ant\ Targets=Ausgefhrte Ant-Targets diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_es.properties b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_es.properties deleted file mode 100644 index a993fa0ffec0e4fafbd7360bc68985f9d74f7e6d..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_es.properties +++ /dev/null @@ -1 +0,0 @@ -Executed\ Ant\ Targets=Tareas de ant ejecutadas diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_ja.properties b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_ja.properties deleted file mode 100644 index a909619cf65acef5b415e32aea206626272b1b2f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_ja.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi,Seiji Sogabe -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Executed\ Ant\ Targets=\u5B9F\u884C\u3055\u308C\u305FAnt\u306E\u30BF\u30FC\u30B2\u30C3\u30C8 diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_pt_BR.properties b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_pt_BR.properties deleted file mode 100644 index b3bad2070914cb865a58d99dbfc794b3e1b5287f..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/DescriptorImpl/outline_pt_BR.properties +++ /dev/null @@ -1,23 +0,0 @@ -# The MIT License -# -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -Executed\ Ant\ Targets=Metas Ant executadas diff --git a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/script.js b/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/script.js deleted file mode 100644 index 3b6af7aa7cc88f384ee63f8e319c02b61a1ea2fd..0000000000000000000000000000000000000000 --- a/core/src/main/resources/hudson/tasks/_ant/AntTargetNote/script.js +++ /dev/null @@ -1,48 +0,0 @@ -(function() { - // created on demand - var outline = null; - var loading = false; - - var queue = []; // ant targets are queued up until we load outline. - - function loadOutline() { - if (outline!=null) return false; // already loaded - - if (!loading) { - loading = true; - var u = new Ajax.Updater(document.getElementById("side-panel"), - rootURL+"/descriptor/hudson.tasks._ant.AntTargetNote/outline", - {insertion: Insertion.Bottom, onComplete: function() { - if (!u.success()) return; // we can't us onSuccess because that kicks in before onComplete - outline = document.getElementById("console-outline-body"); - loading = false; - queue.each(handle); - }}); - } - return true; - } - - function handle(e) { - if (loadOutline()) { - queue.push(e); - } else { - var id = "ant-target-"+(iota++); - outline.appendChild(parseHtml("
  • "+e.innerHTML+"
  • ")) - - if (document.all) - e.innerHTML += ''; // IE8 loses "name" attr in appendChild - else { - var a = document.createElement("a"); - a.setAttribute("name",id); - e.appendChild(a); - } - } - } - - Behaviour.register({ - // insert for each Ant target and put it into the outline - "b.ant-target" : function(e) { - handle(e); - } - }); -}()); diff --git a/core/src/test/java/hudson/tasks/_ant/AntTargetNoteTest.java b/core/src/test/java/hudson/tasks/_ant/AntTargetNoteTest.java deleted file mode 100644 index b10dc90e10ba8a3bebdaa43979ef97d18292269f..0000000000000000000000000000000000000000 --- a/core/src/test/java/hudson/tasks/_ant/AntTargetNoteTest.java +++ /dev/null @@ -1,50 +0,0 @@ -package hudson.tasks._ant; - -import hudson.MarkupText; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Unit test for the {@link AntTargetNote} class. - */ -public class AntTargetNoteTest { - - private boolean enabled; - - @Before - public void setUp() { - enabled = AntTargetNote.ENABLED; - } - - @After - public void tearDown() { - // Restore the original setting. - AntTargetNote.ENABLED = enabled; - } - - @Test - public void testAnnotateTarget() { - assertEquals("TARGET:", annotate("TARGET:")); - } - - @Test - public void testAnnotateTargetContainingColon() { - // See HUDSON-7026. - assertEquals("TEST:TARGET:", annotate("TEST:TARGET:")); - } - - @Test - public void testDisabled() { - AntTargetNote.ENABLED = false; - assertEquals("TARGET:", annotate("TARGET:")); - } - - private String annotate(String text) { - MarkupText markupText = new MarkupText(text); - new AntTargetNote().annotate(new Object(), markupText, 0); - return markupText.toString(true); - } -} diff --git a/test/src/test/java/hudson/tasks/AntTest.java b/test/src/test/java/hudson/tasks/AntTest.java deleted file mode 100644 index 2fc5894c95e6f879249af859d0b1e3c97c9dc15f..0000000000000000000000000000000000000000 --- a/test/src/test/java/hudson/tasks/AntTest.java +++ /dev/null @@ -1,206 +0,0 @@ -/* - * The MIT License - * - * Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Yahoo! Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package hudson.tasks; - -import com.gargoylesoftware.htmlunit.html.HtmlButton; -import com.gargoylesoftware.htmlunit.html.HtmlForm; -import com.gargoylesoftware.htmlunit.html.HtmlPage; -import hudson.Functions; -import hudson.matrix.Axis; -import hudson.matrix.AxisList; -import hudson.matrix.MatrixRun; -import hudson.matrix.MatrixProject; -import hudson.model.Cause.UserCause; -import hudson.model.FreeStyleBuild; -import hudson.model.FreeStyleProject; -import hudson.model.ParametersDefinitionProperty; -import hudson.model.PasswordParameterDefinition; -import hudson.model.StringParameterDefinition; -import hudson.tasks.Ant.AntInstallation; -import hudson.tasks.Ant.AntInstallation.DescriptorImpl; -import hudson.tasks.Ant.AntInstaller; -import hudson.tools.InstallSourceProperty; -import hudson.tools.ToolProperty; -import hudson.tools.ToolPropertyDescriptor; -import hudson.util.DescribableList; -import org.jvnet.hudson.test.Bug; -import org.jvnet.hudson.test.ExtractResourceSCM; -import org.jvnet.hudson.test.HudsonTestCase; -import org.jvnet.hudson.test.SingleFileSCM; - -/** - * @author Kohsuke Kawaguchi - */ -public class AntTest extends HudsonTestCase { - /** - * Tests the round-tripping of the configuration. - */ - public void testConfigRoundtrip() throws Exception { - FreeStyleProject p = createFreeStyleProject(); - p.getBuildersList().add(new Ant("a",null,"-b","c.xml","d=e")); - - WebClient webClient = new WebClient(); - HtmlPage page = webClient.getPage(p,"configure"); - - HtmlForm form = page.getFormByName("config"); - submit(form); - - Ant a = p.getBuildersList().get(Ant.class); - assertNotNull(a); - assertEquals("a",a.getTargets()); - assertNull(a.getAnt()); - assertEquals("-b",a.getAntOpts()); - assertEquals("c.xml",a.getBuildFile()); - assertEquals("d=e",a.getProperties()); - } - - /** - * Simulates the addition of the new Ant via UI and makes sure it works. - */ - public void testGlobalConfigAjax() throws Exception { - HtmlPage p = new WebClient().goTo("configure"); - HtmlForm f = p.getFormByName("config"); - HtmlButton b = getButtonByCaption(f, "Add Ant"); - b.click(); - findPreviousInputElement(b,"name").setValueAttribute("myAnt"); - findPreviousInputElement(b,"home").setValueAttribute("/tmp/foo"); - submit(f); - verify(); - - // another submission and verify it survives a roundtrip - p = new WebClient().goTo("configure"); - f = p.getFormByName("config"); - submit(f); - verify(); - } - - private void verify() throws Exception { - AntInstallation[] l = get(DescriptorImpl.class).getInstallations(); - assertEquals(1,l.length); - assertEqualBeans(l[0],new AntInstallation("myAnt","/tmp/foo",NO_PROPERTIES),"name,home"); - - // by default we should get the auto installer - DescribableList,ToolPropertyDescriptor> props = l[0].getProperties(); - assertEquals(1,props.size()); - InstallSourceProperty isp = props.get(InstallSourceProperty.class); - assertEquals(1,isp.installers.size()); - assertNotNull(isp.installers.get(AntInstaller.class)); - } - - public void testSensitiveParameters() throws Exception { - FreeStyleProject project = createFreeStyleProject(); - ParametersDefinitionProperty pdb = new ParametersDefinitionProperty( - new StringParameterDefinition("string", "defaultValue", "string description"), - new PasswordParameterDefinition("password", "12345", "password description"), - new StringParameterDefinition("string2", "Value2", "string description") - ); - project.addProperty(pdb); - project.setScm(new SingleFileSCM("build.xml", hudson.tasks._ant.AntTargetAnnotationTest.class.getResource("simple-build.xml"))); - - project.getBuildersList().add(new Ant("foo",null,null,null,null)); - - FreeStyleBuild build = project.scheduleBuild2(0).get(); - String buildLog = getLog(build); - assertNotNull(buildLog); - System.out.println(buildLog); - assertFalse(buildLog.contains("-Dpassword=12345")); - } - - public void testParameterExpansion() throws Exception { - String antName = configureDefaultAnt().getName(); - // *_URL vars are not set if hudson.getRootUrl() is null: - ((Mailer.DescriptorImpl)hudson.getDescriptor(Mailer.class)).setHudsonUrl("http://test/"); - // Use a matrix project so we have env stuff via builtins, parameters and matrix axis. - MatrixProject project = createMatrixProject("test project"); // Space in name - project.setAxes(new AxisList(new Axis("AX", "is"))); - project.addProperty(new ParametersDefinitionProperty( - new StringParameterDefinition("FOO", "bar", ""))); - project.setScm(new ExtractResourceSCM(getClass().getResource("ant-job.zip"))); - project.getBuildersList().add(new Ant("", antName, null, null, - "vNUM=$BUILD_NUMBER\nvID=$BUILD_ID\nvJOB=$JOB_NAME\nvTAG=$BUILD_TAG\nvEXEC=$EXECUTOR_NUMBER\n" - + "vNODE=$NODE_NAME\nvLAB=$NODE_LABELS\nvJAV=$JAVA_HOME\nvWS=$WORKSPACE\nvHURL=$HUDSON_URL\n" - + "vBURL=$BUILD_URL\nvJURL=$JOB_URL\nvHH=$HUDSON_HOME\nvJH=$JENKINS_HOME\nvFOO=$FOO\nvAX=$AX")); - assertBuildStatusSuccess(project.scheduleBuild2(0, new UserCause())); - MatrixRun build = project.getItem("AX=is").getLastBuild(); - String log = getLog(build); - assertTrue("Missing $BUILD_NUMBER: " + log, log.contains("vNUM=1")); - assertTrue("Missing $BUILD_ID: " + log, log.contains("vID=2")); // Assuming the year starts with 2! - assertTrue("Missing $JOB_NAME: " + log, log.contains(project.getName())); - // Odd build tag, but it's constructed with getParent().getName() and the parent is the - // matrix configuration, not the project.. if matrix build tag ever changes, update - // expected value here: - assertTrue("Missing $BUILD_TAG: " + log, log.contains("vTAG=jenkins-AX=is-1")); - assertTrue("Missing $EXECUTOR_NUMBER: " + log, log.matches("(?s).*vEXEC=\\d.*")); - // $NODE_NAME is expected to be empty when running on master.. not checking. - assertTrue("Missing $NODE_LABELS: " + log, log.contains("vLAB=master")); - assertTrue("Missing $JAVA_HOME: " + log, log.matches("(?s).*vJH=[^\\r\\n].*")); - assertTrue("Missing $WORKSPACE: " + log, log.matches("(?s).*vWS=[^\\r\\n].*")); - assertTrue("Missing $HUDSON_URL: " + log, log.contains("vHURL=http")); - assertTrue("Missing $BUILD_URL: " + log, log.contains("vBURL=http")); - assertTrue("Missing $JOB_URL: " + log, log.contains("vJURL=http")); - assertTrue("Missing $HUDSON_HOME: " + log, log.matches("(?s).*vHH=[^\\r\\n].*")); - assertTrue("Missing $JENKINS_HOME: " + log, log.matches("(?s).*vJH=[^\\r\\n].*")); - assertTrue("Missing build parameter $FOO: " + log, log.contains("vFOO=bar")); - assertTrue("Missing matrix axis $AX: " + log, log.contains("vAX=is")); - } - - public void testParameterExpansionByShell() throws Exception { - String antName = configureDefaultAnt().getName(); - FreeStyleProject project = createFreeStyleProject(); - project.setScm(new ExtractResourceSCM(getClass().getResource("ant-job.zip"))); - String homeVar = Functions.isWindows() ? "%HOME%" : "$HOME"; - project.addProperty(new ParametersDefinitionProperty( - new StringParameterDefinition("vFOO", homeVar, ""), - new StringParameterDefinition("vBAR", "Home sweet " + homeVar + ".", ""))); - project.getBuildersList().add(new Ant("", antName, null, null, - "vHOME=" + homeVar + "\nvFOOHOME=Foo " + homeVar + "\n")); - FreeStyleBuild build = project.scheduleBuild2(0, new UserCause()).get(); - assertBuildStatusSuccess(build); - String log = getLog(build); - if (!Functions.isWindows()) homeVar = "\\" + homeVar; // Regex escape for $ - assertTrue("Missing simple HOME parameter: " + log, - log.matches("(?s).*vFOO=(?!" + homeVar + ").*")); - assertTrue("Missing HOME parameter with other text: " + log, - log.matches("(?s).*vBAR=Home sweet (?!" + homeVar + ")[^\\r\\n]*\\..*")); - assertTrue("Missing HOME ant property: " + log, - log.matches("(?s).*vHOME=(?!" + homeVar + ").*")); - assertTrue("Missing HOME ant property with other text: " + log, - log.matches("(?s).*vFOOHOME=Foo (?!" + homeVar + ").*")); - } - - @Bug(7108) - public void testEscapeXmlInParameters() throws Exception { - String antName = configureDefaultAnt().getName(); - FreeStyleProject project = createFreeStyleProject(); - project.setScm(new ExtractResourceSCM(getClass().getResource("ant-job.zip"))); - project.addProperty(new ParametersDefinitionProperty( - new StringParameterDefinition("vFOO", "", ""))); - project.getBuildersList().add(new Ant("", antName, null, null, "vBAR=\n")); - FreeStyleBuild build = project.scheduleBuild2(0, new UserCause()).get(); - assertBuildStatusSuccess(build); - String log = getLog(build); - assertTrue("Missing parameter: " + log, log.contains("vFOO=")); - assertTrue("Missing ant property: " + log, log.contains("vBAR=")); - } -} diff --git a/test/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java b/test/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java deleted file mode 100644 index 5743cd10dda4d10b776f105742dbe92853bfa45f..0000000000000000000000000000000000000000 --- a/test/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java +++ /dev/null @@ -1,34 +0,0 @@ -package hudson.tasks._ant; - -import com.gargoylesoftware.htmlunit.html.HtmlElement; -import com.gargoylesoftware.htmlunit.html.HtmlPage; -import hudson.model.FreeStyleBuild; -import hudson.model.FreeStyleProject; -import hudson.tasks.Ant; -import org.jvnet.hudson.test.HudsonTestCase; -import org.jvnet.hudson.test.SingleFileSCM; - -/** - * @author Kohsuke Kawaguchi - */ -public class AntTargetAnnotationTest extends HudsonTestCase { - public void test1() throws Exception { - FreeStyleProject p = createFreeStyleProject(); - Ant.AntInstallation ant = configureDefaultAnt(); - p.getBuildersList().add(new Ant("foo",ant.getName(),null,null,null)); - p.setScm(new SingleFileSCM("build.xml",getClass().getResource("simple-build.xml"))); - FreeStyleBuild b = buildAndAssertSuccess(p); - - AntTargetNote.ENABLED = true; - try { - HudsonTestCase.WebClient wc = createWebClient(); - HtmlPage c = wc.getPage(b, "console"); - System.out.println(c.asText()); - - HtmlElement o = c.getElementById("console-outline"); - assertEquals(2,o.selectNodes(".//LI").size()); - } finally { - AntTargetNote.ENABLED = false; - } - } -} diff --git a/test/src/test/resources/hudson/tasks/_ant/simple-build.xml b/test/src/test/resources/hudson/tasks/_ant/simple-build.xml deleted file mode 100644 index 76daae76320dff9bc6466ac5af52f1eb908f57f9..0000000000000000000000000000000000000000 --- a/test/src/test/resources/hudson/tasks/_ant/simple-build.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - abc - - - def - - diff --git a/test/src/test/resources/hudson/tasks/ant-job.zip b/test/src/test/resources/hudson/tasks/ant-job.zip deleted file mode 100644 index 9ea93f2baa53b0bde647ee5b1c02579ff4f8deac..0000000000000000000000000000000000000000 Binary files a/test/src/test/resources/hudson/tasks/ant-job.zip and /dev/null differ diff --git a/war/src/main/webapp/help/ant/ant-buildfile.html b/war/src/main/webapp/help/ant/ant-buildfile.html deleted file mode 100644 index 2d85e0a585647f00c4c343b0c87a4113d04f843a..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - If your build requires a custom -buildfile, - specify it here. By default Ant will use the build.xml in the root directory; - this option can be used to use build files with a different name or in a subdirectory. -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_de.html b/war/src/main/webapp/help/ant/ant-buildfile_de.html deleted file mode 100644 index c2b7d7aaa8c903dc55fc7fb19393bab213dc9d10..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_de.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Geben Sie hier den Wert für die Ant-Option -buildfile - an. Standardmäßig verwendet Ant das Skript build.xml im Stammvereichnis. - Mit dieser Option können Sie aber auch Ant-Skripte mit abweichenden Namen oder aus - Unterverzeichnissen verwenden. -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_fr.html b/war/src/main/webapp/help/ant/ant-buildfile_fr.html deleted file mode 100644 index 22a56c216c2994d792c7661cd67e51278472189b..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_fr.html +++ /dev/null @@ -1,9 +0,0 @@ -
    - Si votre build nécessite un - fichier de build - particulier, indiquez-le ici. Par défaut, Ant utilisera le fichier - build.xml dans le répertoire racine. Cette option peut être - utilisée pour pointer vers des fichiers de build de noms différents ou - placés dans un sous-répertoire. -
    - diff --git a/war/src/main/webapp/help/ant/ant-buildfile_ja.html b/war/src/main/webapp/help/ant/ant-buildfile_ja.html deleted file mode 100644 index 2282954beef82599ef104209b4afb884c6ff947f..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_ja.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - ビルドが特別なビルドファイルを必要とする場合、ここに指定します - (-buildfileオプションと同義)。 - デフォルトでは、Antはルートディレクトリのbuild.xmlを使用しますが、 - このオプションを指定すると、違う名前かサブディレクトリのビルドファイルを使用できます。 -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_nl.html b/war/src/main/webapp/help/ant/ant-buildfile_nl.html deleted file mode 100755 index 33c4f90b0db9835fba613ba87f0deb473c4e24c9..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_nl.html +++ /dev/null @@ -1,3 +0,0 @@ -
    - Indien uw project een niet standaard bouwconfiguratie vereist, dan kunt u die hier opgeven. Standaard gebruikt Ant het build.xml bestand in de hoofdfolder. Met deze optie kunt u anders genaamde bouwbestanden, of zelfs bouwbestanden in sub-folders gebruiken. -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_pt_BR.html b/war/src/main/webapp/help/ant/ant-buildfile_pt_BR.html deleted file mode 100644 index da319b8c01a366d4827745795dbc8d7dd5f4e94d..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_pt_BR.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Se sua construção necessita de um -buildfile customizado, - especifique-o aqui. Por padrão o Ant usará o build.xml no diretório raíz, - esta opção pode ser usada para usar arquivos de construção com um nome diferente o em um subdiretório. -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_ru.html b/war/src/main/webapp/help/ant/ant-buildfile_ru.html deleted file mode 100644 index 2f5ddd09e04e27e55483077e6e634928aa3bf98b..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_ru.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Если ваша сборка требует особый -buildfile, - укажите его здесь. По-умолчанию Ant будет использовать build.xml из корневой - директории. Эта опция позволяет использовать конфигурационные файлы с другим именем или - находящийся в поддиректории. -
    diff --git a/war/src/main/webapp/help/ant/ant-buildfile_tr.html b/war/src/main/webapp/help/ant/ant-buildfile_tr.html deleted file mode 100644 index af0042251d76a8d3dd2fe239990a39ee87a83cb4..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-buildfile_tr.html +++ /dev/null @@ -1,7 +0,0 @@ -
    - Eğer yapılandırma işleminiz, varsayılanın dışında bir yapılandırma dosyası ile - çalışıyorsa, bu dosyanın ismini buraya yazmanız gerekir. -
    - Bu alanı, varsayılan durumun dışında bir yapılandırma dosyası isminiz var ise veya yapılandırma dosyanız farklı bir dizinde ise kullanmanız gerekir, - eğer herhangi bir dosya ismi yazmazsanız, kök dizinde bulunan build.xml dosyası kullanılacaktır. -
    diff --git a/war/src/main/webapp/help/ant/ant-opts.html b/war/src/main/webapp/help/ant/ant-opts.html deleted file mode 100644 index 93bbd47cfe7cbb89b3a814acff9d2c376aad7d2d..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - If your build requires a custom ANT_OPTS, - specify it here. Typically this may be used to specify java memory limits to use, for example -Xmx512m. - Note that other Ant options (such as -lib) should go to the "Ant targets" field. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-opts_de.html b/war/src/main/webapp/help/ant/ant-opts_de.html deleted file mode 100644 index e570b44a3a8efa03777dd05c618290d903191748..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_de.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - - Geben Sie hier Ihre ANT_OPTS an, - sofern Ihr Build spezielle Einstellungen benötigt. Typischerweise wird diese - Option eingesetzt, um Java-Speicherlimits anzugeben, z.B. mit -Xmx512m. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-opts_fr.html b/war/src/main/webapp/help/ant/ant-opts_fr.html deleted file mode 100644 index fc3431e18761d378eb3dbc58f42dd2e68e0a8b65..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_fr.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - - Si votre build nécessite une variable - ANT_OPTS - particulière, indiquez-la ici. Typiquement, cela peut être utilisé pour - spécifier une limite dans la quantité de mémoire que Java peut occuper, - par exemple -Xmx512m. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-opts_ja.html b/war/src/main/webapp/help/ant/ant-opts_ja.html deleted file mode 100644 index 8b7d8b46798e9c85784fad4e03ef939fd1ce418a..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_ja.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - ビルドが特別なAntのオプションを必要とする場合、 - ここに指定します。一般的に、これは-Xmx512mのように、使用するJavaのメモリの制限を指定するのに使用します。 - 他のAntのオプション(例えば、-lib)は、"ターゲット"欄に指定しなくてはならないことに注意してください。 -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-opts_nl.html b/war/src/main/webapp/help/ant/ant-opts_nl.html deleted file mode 100755 index 35527adaba2dc2161f299981f7132be81fd191ee..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_nl.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - Indien uw bouwpoging specifieke opties, via ANT_OPTS, nodig heeft, kunt U deze hier opgeven. Deze optie wordt typisch gebruikt voor het instellen van de java geheugenlimieten, bvb. -Xmx512m. - Merk op dat andere Ant opties ( zoals -lib) via het "Ant doelen" veld dienen opgegeven te worden. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-opts_pt_BR.html b/war/src/main/webapp/help/ant/ant-opts_pt_BR.html deleted file mode 100644 index edcb9ce805ae9a078f52f5583260410304d196c5..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_pt_BR.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Se sua construção necessita de uma ANT_OPTS customizadas, - especifique-a aqui. Tipicamente isto pode ser usado para especificar limites de memória para o java usar, por exemplo -Xmx512m. - Note que outras opções do Ant (tal como -lib) deveriam ir para o campo "Alvos Ant". -
    diff --git a/war/src/main/webapp/help/ant/ant-opts_ru.html b/war/src/main/webapp/help/ant/ant-opts_ru.html deleted file mode 100644 index d62b8f2bac47a07dfcd6b1cc7990b459138b7026..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_ru.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Если ваша сборка требует настройки ANT_OPTS, - укажите нужное значение в этом поле. Обычно это поле может использоваться для установки ограничения - на размер используемой java памяти, например, -Xmx512m. - Обратите внимание, что прочие опции Ant (такие как -lib) должны находиться в поле "Цели Ant". -
    diff --git a/war/src/main/webapp/help/ant/ant-opts_tr.html b/war/src/main/webapp/help/ant/ant-opts_tr.html deleted file mode 100644 index 707d52a38f3a19323797a2e6a2aee64c1196a96c..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-opts_tr.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Yapılandırmanız, özel bir ANT_OPTS gerektiriyorsa, - bu kısımda belirleyebilirsiniz. Mesela, java hafıza limitlerini belirlemek isterseniz, -Xmx512m parametresini buraya yazabilirsiniz. - Şunu unutmayın, -lib gibi diğer Ant seçenekleri, "Ant hedefleri" kısmına yazılmalıdır. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-properties.html b/war/src/main/webapp/help/ant/ant-properties.html deleted file mode 100644 index e157df5a1cb39fd0e8c8c3ca65b8e639c7c673b9..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties.html +++ /dev/null @@ -1,18 +0,0 @@ -
    - Properties needed by your ant build can be specified here (in standard properties file format): -
    # comment
    -name1=value1
    -name2=$VAR2
    -
    - These are passed to Ant like "-Dname1=value1 -Dname2=value2". - Always use $VAR style (even on Windows) for references to Jenkins-defined - environment variables. On Windows, %VAR% style references may be used - for environment variables that exist outside of Jenkins. - Backslashes are used for escaping, so use \\ for a single backslash. - Double quotes (") should be avoided, as ant on *nix wraps parameters in quotes - quotes and runs them through eval, and Windows has its own issues - with escaping.. in either case, use of quotes may result in build failure. - To define an empty property, simply write varname= -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_de.html b/war/src/main/webapp/help/ant/ant-properties_de.html deleted file mode 100644 index 7dfc048b2ab4ddd61b48c8ee982910a7110f03d6..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_de.html +++ /dev/null @@ -1,10 +0,0 @@ -
    - Geben Sie hier Eigenschaften an, die dem Ant-Skript übergeben werden (im Standardformat der - Properties-Dateien) -
    # comment
    -name1=value1
    -name2=value2
    -
    - Dies entspricht einer Übergabe an Ant in der Kommandozeile mit - "-Dname1=value1 -Dname2=value2". -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_fr.html b/war/src/main/webapp/help/ant/ant-properties_fr.html deleted file mode 100644 index 82f3e27379acd824ada5529e4eb05d88d056a348..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_fr.html +++ /dev/null @@ -1,10 +0,0 @@ -
    - Vous pouvez indiquer ici les propriétés nécessaires pour votre build Ant - (avec le format standard des fichiers de propriétés) : -
    # commentaire
    -nom1=valeur1
    -nom2=valeur2
    -
    - Ces propriétés sont passées à Ant ainsi : - "-Dnom1=valeur1 -Dnom2=valeur2" -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_ja.html b/war/src/main/webapp/help/ant/ant-properties_ja.html deleted file mode 100644 index b753abe2363926ddbf4998c612064a6d93c1a23e..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_ja.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Antのビルドで必要なプロパティをここに(標準的なプロパティファイル形式で)指定します。 -
    # comment
    -name1=value1
    -name2=value2
    -
    - このプロパティは、"-Dname1=value1 -Dname2=value2"のようにAntに渡されます。 -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_nl.html b/war/src/main/webapp/help/ant/ant-properties_nl.html deleted file mode 100755 index 5ce34e6997758d3c6b373916efe0ed59f199a55e..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_nl.html +++ /dev/null @@ -1,9 +0,0 @@ -
    - Vereiste bouwparameters kunnen hier opgegeven worden. Hierbij dient U gebruik te maken van het standaard parameterformaat: -
    # commentaar
    -naam1=waarde1
    -naam2=waarde2
    -
    - Deze parameters worden als volgt aan Ant doorgegeven: - "-Dnaam1=waarde1 -Dnaam2=waarde2" -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_pt_BR.html b/war/src/main/webapp/help/ant/ant-properties_pt_BR.html deleted file mode 100644 index edc67323a46bd0784c94023fea57070f07aaf34b..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_pt_BR.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Propriedades necessárias para sua construção ant podem ser especificadas aqui (no formato do arquivo de propriedades padrão): -
    # comentário
    -nome1=valor1
    -nome2=valor2
    -
    - Estas propriedades são passadas para o Ant como "-Dnome1=valor1 -Dnome2=valor2" -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_ru.html b/war/src/main/webapp/help/ant/ant-properties_ru.html deleted file mode 100644 index 03ab4e9fa3cd2276f33b8a1186fd39348f12a664..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_ru.html +++ /dev/null @@ -1,9 +0,0 @@ -
    - Свойства необходимые вашей сборке могут быть указаны здесь (в формате "Стандартного файла свойств"): -
    # комментарий
    -свойство1=значение1
    -свойство2=значение2
    -
    - - Они будут переданы в Ant в виде "-Dсвойство1=значение1 -Dсвойство2=значение2" -
    diff --git a/war/src/main/webapp/help/ant/ant-properties_tr.html b/war/src/main/webapp/help/ant/ant-properties_tr.html deleted file mode 100644 index f2ccce0e851a2b916a31577cc7d83548ea8160df..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-properties_tr.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Ant yapılandırmanız için gerekli olan özellikler (değişkenler) burada belirlenebilir (properties dosyası formatında) -
    # comment
    -name1=value1
    -name2=value2
    -
    - Bu değerler Ant'a "-Dname1=value1 -Dname2=value2" şeklinde aktarılır. -
    diff --git a/war/src/main/webapp/help/ant/ant-targets.html b/war/src/main/webapp/help/ant/ant-targets.html deleted file mode 100644 index 35fff0405b266ca96bc873c2529bee6ba18b9450..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - Specify a list of Ant targets to be invoked, or leave it empty to invoke the default Ant target - specified in the build script. Additionally, you can also use this field to specify other Ant options. -
    diff --git a/war/src/main/webapp/help/ant/ant-targets_de.html b/war/src/main/webapp/help/ant/ant-targets_de.html deleted file mode 100644 index 8db188c20e85b2358e69521fc239b5fd0de202e8..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_de.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Geben Sie eine Liste von auszuführenden Ant-Zielen (targets) an. Lassen Sie das Feld - frei, um das Standardziel (default target) auszuführen, das im Ant-Skript definiert ist. - Zusätzlich können Sie in diesem Feld weitere Ant-Optionen angeben. -
    diff --git a/war/src/main/webapp/help/ant/ant-targets_fr.html b/war/src/main/webapp/help/ant/ant-targets_fr.html deleted file mode 100644 index baf77b6dce56606110adc18c6181fbcad8d85463..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_fr.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - Spécifiez ici une liste des cibles Ant à invoquer, ou laissez le champ - vide pour invoquer la cible par défaut spécifiée dans le script. - Vous pouvez aussi utiliser ce champ pour spécifier des options Ant - supplémentaires. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-targets_ja.html b/war/src/main/webapp/help/ant/ant-targets_ja.html deleted file mode 100644 index 072a8001d39fe75389fecd064eb00334997443d9..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_ja.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - 実行するAntのターゲットのリストを指定します。何も指定しないと、ビルドスクリプトに指定したデフォルトのターゲットを実行します。 - Antの他のオプションをこの項目に指定することもできます。 -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-targets_nl.html b/war/src/main/webapp/help/ant/ant-targets_nl.html deleted file mode 100755 index 56e71fbd8cb070ab00e070f0ae3049e232718abf..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_nl.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - Geef een lijst van uit te voeren doelen op. Indien U dit veld leeg laat, zal het standaard Ant doel, zoals gedefiniëerd in uw bouwspecificatie, uitgvoerd worden. -U kunt dit veld tevens gebruiken voor het opgeven van extra Ant opties. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-targets_pt_BR.html b/war/src/main/webapp/help/ant/ant-targets_pt_BR.html deleted file mode 100644 index f763023076aaf55053294815e885c6b5ce9b78cb..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_pt_BR.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - Especifique a lista dos alvos Ant a serem invocados, ou deixe em branco para invocar o alvo padrão do Ant - especificado no script de construção. Adicionalmente, você também pode usar este campo para especificar outras opções do Ant. -
    diff --git a/war/src/main/webapp/help/ant/ant-targets_ru.html b/war/src/main/webapp/help/ant/ant-targets_ru.html deleted file mode 100644 index 92775a2dde295a19182fe48185b48fed97ccf65f..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_ru.html +++ /dev/null @@ -1,5 +0,0 @@ -
    - Укажите список целей Ant которые будут вызваны при сборке или оставьте поле пустым для вызова - целей по-умолчанию, указанных в сборочном сценарии. Также вы можете использовать это - поле для передачи других опций запуска Ant. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/ant/ant-targets_tr.html b/war/src/main/webapp/help/ant/ant-targets_tr.html deleted file mode 100644 index dda7a68d91b78e13cecd2eb08d5672b37ecb1f36..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/ant/ant-targets_tr.html +++ /dev/null @@ -1,4 +0,0 @@ -
    - Çağırılacak Ant hedeflerini belirleyin. Eğer boş bırakılırsa, yapılandırma dosyasında belirlenen hedef - çalıştırılacaktır. Bu alanı aynı zamanda diğer Ant seçeneklerini (ANT_OPTS) uygulamak için de kullanabilirsiniz. -
    \ No newline at end of file diff --git a/war/src/main/webapp/help/project-config/ant.html b/war/src/main/webapp/help/project-config/ant.html deleted file mode 100644 index 318cffdb775994ab2ac3fe330cc37567980bb1fa..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - For projects that use Ant as the build system. This causes Jenkins to - invoke Ant with the given targets and options. Any non-zero exit code - causes Jenkins to mark the build as a failure. -

    - Jenkins supplies some - environment variables that can be used from within the build script. -

    diff --git a/war/src/main/webapp/help/project-config/ant_de.html b/war/src/main/webapp/help/project-config/ant_de.html deleted file mode 100644 index 66d6b851b59a2c81dc2977a5a5015e1c087320b0..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_de.html +++ /dev/null @@ -1,9 +0,0 @@ -
    - Für Projekte, die Ant als Build-System verwenden. Dies veranlasst Jenkins, - Ant mit den angegebenen Zielen (targets) und Optionen aufzurufen. Ein Ergebniscode - ungleich 0 bewirkt, dass Jenkins den Build als Fehlschlag markiert. -

    - Jenkins stellt einige - Umgebungsvariablen bereit, die innerhalb des Build-Skriptes verwendet - verwendet werden können. -

    \ No newline at end of file diff --git a/war/src/main/webapp/help/project-config/ant_fr.html b/war/src/main/webapp/help/project-config/ant_fr.html deleted file mode 100644 index dfccf5f104664584f59b96c6390d2a8e7f22acd1..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_fr.html +++ /dev/null @@ -1,10 +0,0 @@ -
    - Pour les projets qui utilisent Ant comme outil de build. - Jenkins appellera Ant avec les cibles et les options spécifiées. - Un code de retour différent de zéro permet à Jenkins d'enregistrer le - build comme un échec. -

    - Jenkins fournit des - variables d'environnement qui peuvent être utilisées dans - le script de build. -

    \ No newline at end of file diff --git a/war/src/main/webapp/help/project-config/ant_ja.html b/war/src/main/webapp/help/project-config/ant_ja.html deleted file mode 100644 index 61743869aeb493328e36f4577a12fb0dab8dd0d6..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_ja.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - ビルドシステムとしてAntを使用するプロジェクトで利用します。この設定により、Jenkinsは指定されたターゲットとオプション等 - を利用して、Antを呼び出します。Antが非0の終了コードを返すと、エラーが起こったものとみなされてビルドは - 失敗扱いとなります。 -

    - Jenkinsは、幾つかの環境変数を - 提供します。これらの環境変数にはビルドスクリプトの中からアクセスする事ができます。 -

    diff --git a/war/src/main/webapp/help/project-config/ant_pt_BR.html b/war/src/main/webapp/help/project-config/ant_pt_BR.html deleted file mode 100644 index 3b6985f0e6a56cdd9484844751d85ecc3a9534d2..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_pt_BR.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Para projetos que usam Ant como sistema de construção. Isto faz o Jenkins - invocar o Ant com os alvos e opções informadas. Qualquer código de saída - diferente de zero faz com que o Jenkins marque a construção como falha. -

    - Jenkins fornece algumas - variáveis de ambiente que podem ser usadas de dentro do script de construção. -

    diff --git a/war/src/main/webapp/help/project-config/ant_ru.html b/war/src/main/webapp/help/project-config/ant_ru.html deleted file mode 100644 index fa43b275fb9141c470ac8ccd17703656945fdd30..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_ru.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Для проектов, использующих Ant для сборки. Указывает Jenkins вызывать Ant - с указанными целями и опциями. Сборка будет считаться провалившейся, если - вызов завершился с ненулевым кодом. -

    - Jenkins предоставляет дополнительные переменные - окружения которые могут быть использованы в сценарии сборки. -

    \ No newline at end of file diff --git a/war/src/main/webapp/help/project-config/ant_tr.html b/war/src/main/webapp/help/project-config/ant_tr.html deleted file mode 100644 index 34a0410463f27cbd5d7cdd24c5ed85eb4943b2be..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_tr.html +++ /dev/null @@ -1,8 +0,0 @@ -
    - Ant'ı yapılandırma sistemi aracı olarak kullanan projeler içindir. Bu seçenek - Jenkins'ın, Ant'ı, verilen hedef ve seçenekler ile çağırmasını sağlar. 0'ın dışında (non-zero) - oluşan çıkış kodları Jenkins'ın, yapılandırmayı başarısız olarak ilan etmesini sağlar. -

    - Jenkins yapılandırma scriptleri içerisinde kullanabilmek üzere - ortam değişkenleri sağlar. -

    \ No newline at end of file diff --git a/war/src/main/webapp/help/project-config/ant_zh_CN.html b/war/src/main/webapp/help/project-config/ant_zh_CN.html deleted file mode 100644 index 000af64f33c66ff516f059eda0a19676c45b0163..0000000000000000000000000000000000000000 --- a/war/src/main/webapp/help/project-config/ant_zh_CN.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - 项目使用Ant构建系统.这将导致Jenkins去调用Ant目标和选项.任何非零返回值都会导致 - Jenkins构建失败. -

    - Jenkins提供一些环境变量可以用在构建脚本中. -