diff --git a/src/main/java/hudson/scm/EnvVarsUtils.java b/src/main/java/hudson/scm/EnvVarsUtils.java index a6bb7c3..fc88a0a 100644 --- a/src/main/java/hudson/scm/EnvVarsUtils.java +++ b/src/main/java/hudson/scm/EnvVarsUtils.java @@ -26,7 +26,11 @@ import hudson.EnvVars; import hudson.Platform; +import hudson.model.Hudson; +import hudson.slaves.EnvironmentVariablesNodeProperty; + import java.io.File; +import java.util.List; import java.util.Map; /** @@ -35,15 +39,15 @@ public class EnvVarsUtils { /** - * Changes the behavior of {@link EnvVars#overrideAll(java.util.Map)} which - * drops variables which have value a null or a 0-length value: This - * implementation doesn't. - * - *

This is a fix for JENKINS-10045.

+ * Changes the behavior of {@link EnvVars#overrideAll(java.util.Map)} which drops variables which have value a null + * or a 0-length value: This implementation doesn't. + *

+ * This is a fix for JENKINS-10045. + *

* * @see EnvVars#overrideAll(java.util.Map) */ - public static void overrideAll(EnvVars env, Map all) { + public static void overrideAll(EnvVars env, Map all) { for (Map.Entry e : all.entrySet()) { override(env, e.getKey(), e.getValue()); } @@ -54,24 +58,23 @@ * @see EnvVars#override(java.lang.String, java.lang.String) */ private static void override(EnvVars env, String key, String value) { - // this implementation doesn't drop empty variables (JENKINS-10045) - //if(value == null || value.length() == 0) { - // remove(key); - // return; - //} - + // this implementation doesn't drop empty variables (JENKINS-10045) + // if(value == null || value.length() == 0) { + // remove(key); + // return; + // } + int idx = key.indexOf('+'); - if(idx > 0) { + if (idx > 0) { String realKey = key.substring(0, idx); String v = env.get(realKey); - if(v == null) { + if (v == null) { v = value; - } - else { + } else { // EnvVars.platform is private with no getter, but we really need it Platform platform = null; try { - platform = (Platform) EnvVars.class.getField("platform").get(env); + platform = (Platform)EnvVars.class.getField("platform").get(env); } catch (Exception e) { // nothing we can really do } @@ -86,4 +89,13 @@ env.put(key, value); } + public static EnvVars getEnvVarsFromGlobalNodeProperties() { + List list = Hudson.getInstance().getGlobalNodeProperties() + .getAll(EnvironmentVariablesNodeProperty.class); + EnvVars envVars = new EnvVars(); + for (EnvironmentVariablesNodeProperty environmentVariablesNodeProperty : list) { + envVars.putAll(environmentVariablesNodeProperty.getEnvVars().descendingMap()); + } + return envVars; + } } diff --git a/src/main/java/hudson/scm/SubversionChangeLogSet.java b/src/main/java/hudson/scm/SubversionChangeLogSet.java index 28de9f2..170b1b3 100644 --- a/src/main/java/hudson/scm/SubversionChangeLogSet.java +++ b/src/main/java/hudson/scm/SubversionChangeLogSet.java @@ -1,18 +1,18 @@ /* * The MIT License - * + * * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Erik Ramfelt - * + * * 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 @@ -23,10 +23,10 @@ */ package hudson.scm; +import hudson.EnvVars; import hudson.Util; import hudson.model.AbstractBuild; import hudson.model.User; -import hudson.scm.SubversionChangeLogSet.LogEntry; import hudson.scm.SubversionSCM.ModuleLocation; import java.io.IOException; @@ -48,22 +48,24 @@ /** * {@link ChangeLogSet} for Subversion. - * + * * @author Kohsuke Kawaguchi */ -public final class SubversionChangeLogSet extends ChangeLogSet { +public final class SubversionChangeLogSet extends ChangeLogSet { + private final List logs; /** * @GuardedBy this */ - private Map revisionMap; + private Map revisionMap; - /*package*/ SubversionChangeLogSet(AbstractBuild build, List logs) { + /* package */SubversionChangeLogSet(AbstractBuild build, List logs) { super(build); this.logs = prepareChangeLogEntries(logs); } + @Override public boolean isEmptySet() { return logs.isEmpty(); } @@ -73,6 +75,7 @@ } + @Override public Iterator iterator() { return logs.iterator(); } @@ -82,12 +85,13 @@ return "svn"; } - public synchronized Map getRevisionMap() throws IOException { - if(revisionMap==null) + public synchronized Map getRevisionMap() throws IOException { + if (revisionMap == null) { revisionMap = SubversionSCM.parseRevisionFile(build); + } return revisionMap; } - + private List prepareChangeLogEntries(List items) { items = removeDuplicatedEntries(items); // we want recent changes first @@ -100,7 +104,7 @@ /** * Removes duplicate entries, e.g. those coming form svn:externals. - * + * * @param items list of items * @return filtered list without duplicated entries */ @@ -112,15 +116,20 @@ @Exported public List getRevisions() throws IOException { List r = new ArrayList(); - for (Map.Entry e : getRevisionMap().entrySet()) - r.add(new RevisionInfo(e.getKey(),e.getValue())); + for (Map.Entry e : getRevisionMap().entrySet()) { + r.add(new RevisionInfo(e.getKey(), e.getValue())); + } return r; } - @ExportedBean(defaultVisibility=999) + @ExportedBean(defaultVisibility = 999) public static final class RevisionInfo { - @Exported public final String module; - @Exported public final long revision; + + @Exported + public final String module; + @Exported + public final long revision; + public RevisionInfo(String module, long revision) { this.module = module; this.revision = revision; @@ -130,10 +139,11 @@ /** * One commit. *

- * Setter methods are public only so that the objects can be constructed from Digester. - * So please consider this object read-only. + * Setter methods are public only so that the objects can be constructed from Digester. So please consider this + * object read-only. */ public static class LogEntry extends ChangeLogSet.Entry { + private int revision; private User author; private String date; @@ -143,6 +153,7 @@ /** * Gets the {@link SubversionChangeLogSet} to which this change set belongs. */ + @Override public SubversionChangeLogSet getParent() { return (SubversionChangeLogSet)super.getParent(); } @@ -157,10 +168,8 @@ /** * Gets the revision of the commit. - * *

- * If the commit made the repository revision 1532, this - * method returns 1532. + * If the commit made the repository revision 1532, this method returns 1532. */ @Exported public int getRevision() { @@ -170,7 +179,7 @@ public void setRevision(int revision) { this.revision = revision; } - + @Override public String getCommitId() { return String.valueOf(revision); @@ -178,34 +187,42 @@ @Override public long getTimestamp() { - return date!=null ? SVNDate.parseDate(date).getTime() : -1; + return date != null ? SVNDate.parseDate(date).getTime() : -1; } @Override public User getAuthor() { - if(author==null) + if (author == null) { return User.getUnknown(); + } return author; } @Override public Collection getAffectedPaths() { return new AbstractList() { + + @Override public String get(int index) { return preparePath(paths.get(index).value); } + + @Override public int size() { return paths.size(); } }; } - + private String preparePath(String path) { SCM scm = getParent().build.getProject().getScm(); - if (!(scm instanceof SubversionSCM)) return path; + if (!(scm instanceof SubversionSCM)) { + return path; + } ModuleLocation[] locations = ((SubversionSCM)scm).getLocations(); - for (int i = 0; i < locations.length; i++) { - String commonPart = findCommonPart(locations[i].remote, path); + for (ModuleLocation location : locations) { + EnvVars env = EnvVarsUtils.getEnvVarsFromGlobalNodeProperties(); + String commonPart = findCommonPart(location.getExpandedLocation(env).remote, path); if (commonPart != null) { if (path.startsWith("/")) { path = path.substring(1); @@ -219,7 +236,7 @@ } return path; } - + private String findCommonPart(String folder, String filePath) { if (folder == null || filePath == null) { return null; @@ -242,7 +259,7 @@ @Exported public String getUser() {// digester wants read/write property, even though it never reads. Duh. - return author!=null ? author.getDisplayName() : "unknown"; + return author != null ? author.getDisplayName() : "unknown"; } @Exported @@ -254,7 +271,8 @@ this.date = date; } - @Override @Exported + @Override + @Exported public String getMsg() { return msg; } @@ -263,28 +281,29 @@ this.msg = msg; } - public void addPath( Path p ) { + public void addPath(Path p) { p.entry = this; paths.add(p); } /** * Gets the files that are changed in this commit. - * @return - * can be empty but never null. + * + * @return can be empty but never null. */ @Exported public List getPaths() { return paths; } - + @Override public Collection getAffectedFiles() { - return paths; + return paths; } - + void finish() { Collections.sort(paths, new Comparator() { + @Override public int compare(Path o1, Path o2) { String path1 = Util.fixNull(o1.getValue()); @@ -293,7 +312,7 @@ } }); } - + @Override public boolean equals(Object o) { if (this == o) { @@ -303,7 +322,7 @@ return false; } - LogEntry that = (LogEntry) o; + LogEntry that = (LogEntry)o; if (revision != that.revision) { return false; @@ -334,11 +353,12 @@ /** * A file in a commit. *

- * Setter methods are public only so that the objects can be constructed from Digester. - * So please consider this object read-only. + * Setter methods are public only so that the objects can be constructed from Digester. So please consider this + * object read-only. */ - @ExportedBean(defaultVisibility=999) + @ExportedBean(defaultVisibility = 999) public static class Path implements AffectedFile { + private LogEntry entry; private char action; private String value; @@ -364,7 +384,7 @@ /** * Path in the repository. Such as /test/trunk/foo.c */ - @Exported(name="file") + @Exported(name = "file") public String getValue() { return value; } @@ -372,27 +392,33 @@ /** * Inherited from AffectedFile */ + @Override public String getPath() { - return getValue(); + return getValue(); } - + public void setValue(String value) { this.value = value; } + @Override @Exported public EditType getEditType() { - if( action=='A' ) + if (action == 'A') { return EditType.ADD; - if( action=='D' ) + } + if (action == 'D') { return EditType.DELETE; + } return EditType.EDIT; } } private static final class ReverseByRevisionComparator implements Comparator, Serializable { + private static final long serialVersionUID = 1L; + @Override public int compare(LogEntry a, LogEntry b) { return b.getRevision() - a.getRevision(); } diff --git a/src/main/java/hudson/scm/SubversionRepositoryStatus.java b/src/main/java/hudson/scm/SubversionRepositoryStatus.java index 19c6ad4..818f992 100644 --- a/src/main/java/hudson/scm/SubversionRepositoryStatus.java +++ b/src/main/java/hudson/scm/SubversionRepositoryStatus.java @@ -1,9 +1,8 @@ package hudson.scm; -import static java.util.logging.Level.FINE; -import static java.util.logging.Level.FINER; -import static java.util.logging.Level.WARNING; +import static java.util.logging.Level.*; import static javax.servlet.http.HttpServletResponse.SC_OK; +import hudson.EnvVars; import hudson.model.AbstractModelObject; import hudson.model.AbstractProject; import hudson.model.Hudson; @@ -28,31 +27,33 @@ /** * Per repository status. - * + * * @author Kohsuke Kawaguchi * @see SubversionStatus */ public class SubversionRepositoryStatus extends AbstractModelObject { + public final UUID uuid; public SubversionRepositoryStatus(UUID uuid) { this.uuid = uuid; } + @Override public String getDisplayName() { return uuid.toString(); } + @Override public String getSearchUrl() { return uuid.toString(); } /** * Notify the commit to this repository. - * *

- * Because this URL is not guarded, we can't really trust the data that's sent to us. But we intentionally - * don't protect this URL to simplify post-commit script set up. + * Because this URL is not guarded, we can't really trust the data that's sent to us. But we intentionally don't + * protect this URL to simplify post-commit script set up. */ public void doNotifyCommit(StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException { requirePOST(); @@ -61,28 +62,31 @@ Set affectedPath = new HashSet(); String line; BufferedReader r = new BufferedReader(req.getReader()); - + try { - while((line=r.readLine())!=null) { - if (LOGGER.isLoggable(FINER)) { - LOGGER.finer("Reading line: "+line); - } - affectedPath.add(line.substring(4)); - if (line.startsWith("svnlook changed --revision ")) { - String msg = "Expecting the output from the svnlook command but instead you just sent me the svnlook invocation command line: " + line; - LOGGER.warning(msg); - throw new IllegalArgumentException(msg); - } - } + while ((line = r.readLine()) != null) { + if (LOGGER.isLoggable(FINER)) { + LOGGER.finer("Reading line: " + line); + } + affectedPath.add(cropAffectedPathFromChangeInfo(line)); + if (line.startsWith("svnlook changed --revision ")) { + String msg = "Expecting the output from the svnlook command but instead you just sent me the svnlook invocation command line: " + + line; + LOGGER.warning(msg); + throw new IllegalArgumentException(msg); + } + } } finally { - IOUtils.closeQuietly(r); + IOUtils.closeQuietly(r); } - if(LOGGER.isLoggable(FINE)) - LOGGER.fine("Change reported to Subversion repository "+uuid+" on "+affectedPath); + if (LOGGER.isLoggable(FINE)) { + LOGGER.fine("Change reported to Subversion repository " + uuid + " on " + affectedPath); + } boolean scmFound = false, triggerFound = false, uuidFound = false, pathFound = false; - // we can't reliably use req.getParameter() as it can try to parse the payload, which we've already consumed above. + // we can't reliably use req.getParameter() as it can try to parse the payload, which we've already consumed + // above. // servlet container relies on Content-type to decide if it wants to parse the payload or not, and at least // in case of Jetty, it doesn't check if the payload is QueryParameterMap query = new QueryParameterMap(req); @@ -97,62 +101,91 @@ } } - OUTER: - for (AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class)) { + OUTER: for (AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class)) { try { SCM scm = p.getScm(); - if (scm instanceof SubversionSCM) scmFound = true; else continue; + if (scm instanceof SubversionSCM) { + scmFound = true; + } else { + continue; + } SCMTrigger trigger = p.getTrigger(SCMTrigger.class); - if (trigger!=null) triggerFound = true; else continue; + if (trigger != null) { + triggerFound = true; + } else { + continue; + } - SubversionSCM sscm = (SubversionSCM) scm; + EnvVars env = EnvVarsUtils.getEnvVarsFromGlobalNodeProperties(); + + SubversionSCM sscm = (SubversionSCM)scm; for (ModuleLocation loc : sscm.getLocations()) { - if (loc.getUUID(p).equals(uuid)) uuidFound = true; else continue; + if (loc.getUUID(p).equals(uuid)) { + uuidFound = true; + } else { + continue; + } - String m = loc.getSVNURL().getPath(); + String m = loc.getExpandedLocation(env).getSVNURL().getPath(); String n = loc.getRepositoryRoot(p).getPath(); - if(!m.startsWith(n)) continue; // repository root should be a subpath of the module path, but be defensive + if (!m.startsWith(n)) { + continue; // repository root should be a subpath of the module path, but be defensive + } String remaining = m.substring(n.length()); - if(remaining.startsWith("/")) remaining=remaining.substring(1); + if (remaining.startsWith("/")) { + remaining = remaining.substring(1); + } String remainingSlash = remaining + '/'; final RevisionParameterAction[] actions; - if ( rev != -1 ) { + if (rev != -1) { SvnInfo info[] = { new SvnInfo(loc.getURL(), rev) }; RevisionParameterAction action = new RevisionParameterAction(info); - actions = new RevisionParameterAction[] {action}; + actions = new RevisionParameterAction[] { action }; } else { actions = new RevisionParameterAction[0]; } for (String path : affectedPath) { - if(path.equals(remaining) /*for files*/ || path.startsWith(remainingSlash) /*for dirs*/ - || remaining.length()==0/*when someone is checking out the whole repo (that is, m==n)*/) { + if (path.equals(remaining) /* for files */|| path.startsWith(remainingSlash) /* for dirs */ + || remaining.length() == 0/* when someone is checking out the whole repo (that is, m==n) */) { // this project is possibly changed. poll now. // if any of the data we used was bogus, the trigger will not detect a change - LOGGER.fine("Scheduling the immediate polling of "+p); + LOGGER.fine("Scheduling the immediate polling of " + p); trigger.run(actions); pathFound = true; + + // trigger.run(new RevisionParameterAction[] { new RevisionParameterAction(new + // SvnInfo("http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC", rev))}); continue OUTER; } } } } catch (SVNException e) { - LOGGER.log(WARNING,"Failed to handle Subversion commit notification",e); + LOGGER.log(WARNING, "Failed to handle Subversion commit notification", e); } } - if (!scmFound) LOGGER.warning("No subversion jobs found"); - else if (!triggerFound) LOGGER.warning("No subversion jobs using SCM polling"); - else if (!uuidFound) LOGGER.warning("No subversion jobs using repository: " + uuid); - else if (!pathFound) LOGGER.fine("No jobs found matching the modified files"); + if (!scmFound) { + LOGGER.warning("No subversion jobs found"); + } else if (!triggerFound) { + LOGGER.warning("No subversion jobs using SCM polling"); + } else if (!uuidFound) { + LOGGER.warning("No subversion jobs using repository: " + uuid); + } else if (!pathFound) { + LOGGER.fine("No jobs found matching the modified files"); + } rsp.setStatus(SC_OK); } + private String cropAffectedPathFromChangeInfo(String line) { + return line.substring(1).trim(); + } + private static final Logger LOGGER = Logger.getLogger(SubversionRepositoryStatus.class.getName()); } diff --git a/src/main/java/hudson/scm/SubversionSCM.java b/src/main/java/hudson/scm/SubversionSCM.java index 972ca27..9ee352f 100644 --- a/src/main/java/hudson/scm/SubversionSCM.java +++ b/src/main/java/hudson/scm/SubversionSCM.java @@ -1,21 +1,21 @@ /* * The MIT License - * + * * Copyright (c) 2004-2012, Sun Microsystems, Inc., Kohsuke Kawaguchi, Fulvio Cavarretta, * Jean-Baptiste Quenot, Luca Domenico Milanesio, Renaud Bruyeron, Stephen Connolly, * Tom Huybrechts, Yahoo! Inc., Manufacture Francaise des Pneumatiques Michelin, * Romain Seguy, OHTAKE Tomohiro - * + * * 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 @@ -27,10 +27,8 @@ package hudson.scm; import static hudson.Util.fixEmptyAndTrim; -import static hudson.scm.PollingResult.BUILD_NOW; -import static hudson.scm.PollingResult.NO_CHANGES; -import static java.util.logging.Level.FINE; -import static java.util.logging.Level.WARNING; +import static hudson.scm.PollingResult.*; +import static java.util.logging.Level.*; import hudson.EnvVars; import hudson.Extension; import hudson.FilePath; @@ -56,14 +54,14 @@ import hudson.remoting.VirtualChannel; import hudson.scm.PollingResult.Change; import hudson.scm.UserProvidedCredential.AuthenticationManagerImpl; -import hudson.scm.subversion.CheckoutUpdater; import hudson.scm.subversion.Messages; +import hudson.scm.subversion.UpdaterException; +import hudson.scm.subversion.WorkspaceUpdaterDescriptor; +import hudson.scm.subversion.CheckoutUpdater; import hudson.scm.subversion.UpdateUpdater; import hudson.scm.subversion.UpdateWithRevertUpdater; -import hudson.scm.subversion.UpdaterException; import hudson.scm.subversion.WorkspaceUpdater; import hudson.scm.subversion.WorkspaceUpdater.UpdateTask; -import hudson.scm.subversion.WorkspaceUpdaterDescriptor; import hudson.util.EditDistance; import hudson.util.FormValidation; import hudson.util.LogTaskListener; @@ -165,32 +163,26 @@ import com.trilead.ssh2.crypto.Base64; /** - * Subversion SCM. - * - *

Plugin Developer Notes

+ * Subversion SCM.

Plugin Developer Notes

*

- * Plugins that interact with Subversion can use {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)} - * so that it can use the credentials (username, password, etc.) that the user entered for Hudson. - * See the javadoc of this method for the precautions you need to take if you run Subversion operations - * remotely on slaves. - * + * Plugins that interact with Subversion can use {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)} so + * that it can use the credentials (username, password, etc.) that the user entered for Hudson. See the javadoc of this + * method for the precautions you need to take if you run Subversion operations remotely on slaves. *

Implementation Notes

*

- * Because this instance refers to some other classes that are not necessarily - * Java serializable (like {@link #browser}), remotable {@link FileCallable}s all - * need to be declared as static inner classes. - * + * Because this instance refers to some other classes that are not necessarily Java serializable (like {@link #browser} + * ), remotable {@link FileCallable}s all need to be declared as static inner classes. + * * @author Kohsuke Kawaguchi */ public class SubversionSCM extends SCM implements Serializable { + /** - * the locations field is used to store all configured SVN locations (with - * their local and remote part). Direct access to this field should be - * avoided and the getLocations() method should be used instead. This is - * needed to make importing of old hudson-configurations possible as - * getLocations() will check if the modules field has been set and import - * the data. - * + * the locations field is used to store all configured SVN locations (with their local and remote part). Direct + * access to this field should be avoided and the getLocations() method should be used instead. This is needed to + * make importing of old hudson-configurations possible as getLocations() will check if the modules field has been + * set and import the data. + * * @since 1.91 */ private ModuleLocation[] locations = new ModuleLocation[0]; @@ -200,7 +192,7 @@ private String includedRegions; private String excludedUsers; /** - * Revision property names that are ignored for the sake of polling. Whitespace separated, possibly null. + * Revision property names that are ignored for the sake of polling. Whitespace separated, possibly null. */ private String excludedRevprop; private String excludedCommitMessages; @@ -221,77 +213,93 @@ /** * @deprecated as of 1.286 */ - public SubversionSCM(String[] remoteLocations, String[] localLocations, - boolean useUpdate, SubversionRepositoryBrowser browser) { - this(remoteLocations,localLocations, useUpdate, browser, null, null, null); + @Deprecated + public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate, + SubversionRepositoryBrowser browser) { + this(remoteLocations, localLocations, useUpdate, browser, null, null, null); } /** * @deprecated as of 1.311 */ - public SubversionSCM(String[] remoteLocations, String[] localLocations, - boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions) { - this(ModuleLocation.parse(remoteLocations,localLocations), useUpdate, false, browser, excludedRegions, null, null, null); + @Deprecated + public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate, + SubversionRepositoryBrowser browser, String excludedRegions) { + this(ModuleLocation.parse(remoteLocations, localLocations), useUpdate, false, browser, excludedRegions, null, + null, null); } /** * @deprecated as of 1.315 */ - public SubversionSCM(String[] remoteLocations, String[] localLocations, - boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) { - this(ModuleLocation.parse(remoteLocations,localLocations), useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, null); + @Deprecated + public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate, + SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) { + this(ModuleLocation.parse(remoteLocations, localLocations), useUpdate, false, browser, excludedRegions, + excludedUsers, excludedRevprop, null); } - /** + /** * @deprecated as of 1.315 */ - public SubversionSCM(List locations, - boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions) { + @Deprecated + public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser, + String excludedRegions) { this(locations, useUpdate, false, browser, excludedRegions, null, null, null); } - + /** * @deprecated as of 1.324 */ - public SubversionSCM(List locations, - boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) { + @Deprecated + public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser, + String excludedRegions, String excludedUsers, String excludedRevprop) { this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, null); } /** * @deprecated as of 1.328 */ - public SubversionSCM(List locations, - boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) { - this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages); + @Deprecated + public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser, + String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) { + this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, + excludedCommitMessages); } /** * @deprecated as of 1.xxx */ - public SubversionSCM(List locations, - boolean useUpdate, boolean doRevert, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) { - this(locations, useUpdate, doRevert, browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages, null); + @Deprecated + public SubversionSCM(List locations, boolean useUpdate, boolean doRevert, + SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, + String excludedCommitMessages) { + this(locations, useUpdate, doRevert, browser, excludedRegions, excludedUsers, excludedRevprop, + excludedCommitMessages, null); } /** - * @deprecated as of 1.23 + * @deprecated as of 1.23 */ - public SubversionSCM(List locations, - boolean useUpdate, boolean doRevert, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages, - String includedRegions) { - this(locations, useUpdate?(doRevert?new UpdateWithRevertUpdater():new UpdateUpdater()):new CheckoutUpdater(), - browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages, includedRegions); + @Deprecated + public SubversionSCM(List locations, boolean useUpdate, boolean doRevert, + SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, + String excludedCommitMessages, String includedRegions) { + this(locations, useUpdate ? (doRevert ? new UpdateWithRevertUpdater() : new UpdateUpdater()) + : new CheckoutUpdater(), browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages, + includedRegions); } @DataBoundConstructor public SubversionSCM(List locations, WorkspaceUpdater workspaceUpdater, - SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages, - String includedRegions) { + SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, + String excludedCommitMessages, String includedRegions) { for (Iterator itr = locations.iterator(); itr.hasNext();) { ModuleLocation ml = itr.next(); String remote = Util.fixEmptyAndTrim(ml.remote); - if(remote==null) itr.remove(); + if (remote == null) { + itr.remove(); + } } this.locations = locations.toArray(new ModuleLocation[locations.size()]); @@ -308,44 +316,47 @@ * Convenience constructor, especially during testing. */ public SubversionSCM(String svnUrl) { - this(svnUrl,"."); + this(svnUrl, "."); } /** * Convenience constructor, especially during testing. */ public SubversionSCM(String svnUrl, String local) { - this(new String[]{svnUrl},new String[]{local},true,null,null,null,null); + this(new String[] { svnUrl }, new String[] { local }, true, null, null, null, null); } /** - * @deprecated - * as of 1.91. Use {@link #getLocations()} instead. + * @deprecated as of 1.91. Use {@link #getLocations()} instead. */ + @Deprecated public String getModules() { return null; } /** * list of all configured svn locations - * + * * @since 1.91 */ @Exported public ModuleLocation[] getLocations() { - return getLocations(null, null); + return getLocations(null, null); } @Exported public WorkspaceUpdater getWorkspaceUpdater() { - if (workspaceUpdater!=null) + if (workspaceUpdater != null) { return workspaceUpdater; + } // data must have been read from old configuration. - if (useUpdate!=null && !useUpdate) + if (useUpdate != null && !useUpdate) { return new CheckoutUpdater(); - if (doRevert!=null && doRevert) + } + if (doRevert != null && doRevert) { return new UpdateWithRevertUpdater(); + } return new UpdateUpdater(); } @@ -355,23 +366,22 @@ /** * @since 1.252 - * @deprecated Use {@link #getLocations(EnvVars, AbstractBuild)} for vars - * expansion to be performed on all env vars rather than just - * build parameters. + * @deprecated Use {@link #getLocations(EnvVars, AbstractBuild)} for vars expansion to be performed on all env vars + * rather than just build parameters. */ - public ModuleLocation[] getLocations(AbstractBuild build) { + @Deprecated + public ModuleLocation[] getLocations(AbstractBuild build) { return getLocations(null, build); } /** - * List of all configured svn locations, expanded according to all env vars - * or, if none defined, according to only build parameters values. - * + * List of all configured svn locations, expanded according to all env vars or, if none defined, according to only + * build parameters values. + * * @param env If non-null, variable expansions are performed against these vars - * @param build If non-null (and if env is null), variable expansions are - * performed against the build parameters + * @param build If non-null (and if env is null), variable expansions are performed against the build parameters */ - public ModuleLocation[] getLocations(EnvVars env, AbstractBuild build) { + public ModuleLocation[] getLocations(EnvVars env, AbstractBuild build) { // check if we've got a old location if (modules != null) { // import the old configuration @@ -389,16 +399,16 @@ modules = null; } - if(env == null && build == null) + if (env == null && build == null) { return locations; + } ModuleLocation[] outLocations = new ModuleLocation[locations.length]; - if(env != null) { + if (env != null) { for (int i = 0; i < outLocations.length; i++) { outLocations[i] = locations[i].getExpandedLocation(env); } - } - else { + } else { for (int i = 0; i < outLocations.length; i++) { outLocations[i] = locations[i].getExpandedLocation(build); } @@ -419,8 +429,8 @@ } public String[] getExcludedRegionsNormalized() { - return (excludedRegions == null || excludedRegions.trim().equals("")) - ? null : excludedRegions.split("[\\r\\n]+"); + return (excludedRegions == null || excludedRegions.trim().equals("")) ? null : excludedRegions + .split("[\\r\\n]+"); } private Pattern[] getExcludedRegionsPatterns() { @@ -445,8 +455,8 @@ } public String[] getIncludedRegionsNormalized() { - return (includedRegions == null || includedRegions.trim().equals("")) - ? null : includedRegions.split("[\\r\\n]+"); + return (includedRegions == null || includedRegions.trim().equals("")) ? null : includedRegions + .split("[\\r\\n]+"); } private Pattern[] getIncludedRegionsPatterns() { @@ -472,12 +482,14 @@ public Set getExcludedUsersNormalized() { String s = fixEmptyAndTrim(excludedUsers); - if (s==null) + if (s == null) { return Collections.emptySet(); + } Set users = new HashSet(); - for (String user : s.split("[\\r\\n]+")) + for (String user : s.split("[\\r\\n]+")) { users.add(user.trim()); + } return users; } @@ -488,7 +500,9 @@ private String getExcludedRevpropNormalized() { String s = fixEmptyAndTrim(getExcludedRevprop()); - if (s!=null) return s; + if (s != null) { + return s; + } return getDescriptor().getGlobalExcludedRevprop(); } @@ -520,23 +534,23 @@ @Override public void buildEnvVars(AbstractBuild build, Map env) { super.buildEnvVars(build, env); - + ModuleLocation[] svnLocations = getLocations(build); try { - Map revisions = parseRevisionFile(build); - if(svnLocations.length==1) { + Map revisions = parseRevisionFile(build); + if (svnLocations.length == 1) { Long rev = revisions.get(getUrlWithoutRevision(svnLocations[0].remote)); - if(rev!=null) { - env.put("SVN_REVISION",rev.toString()); - env.put("SVN_URL",svnLocations[0].getURL()); + if (rev != null) { + env.put("SVN_REVISION", rev.toString()); + env.put("SVN_URL", svnLocations[0].getURL()); } - } else if(svnLocations.length>1) { - for(int i=0;i 1) { + for (int i = 0; i < svnLocations.length; i++) { Long rev = revisions.get(getUrlWithoutRevision(svnLocations[i].remote)); - if(rev!=null) { - env.put("SVN_REVISION_"+(i+1),rev.toString()); - env.put("SVN_URL_"+(i+1),svnLocations[i].getURL()); + if (rev != null) { + env.put("SVN_REVISION_" + (i + 1), rev.toString()); + env.put("SVN_URL_" + (i + 1), svnLocations[i].getURL()); } } } @@ -549,8 +563,9 @@ /** * Called after checkout/update has finished to compute the changelog. */ - private boolean calcChangeLog(AbstractBuild build, File changelogFile, BuildListener listener, List externals, EnvVars env) throws IOException, InterruptedException { - if(build.getPreviousBuild()==null) { + private boolean calcChangeLog(AbstractBuild build, File changelogFile, BuildListener listener, + List externals, EnvVars env) throws IOException, InterruptedException { + if (build.getPreviousBuild() == null) { // nothing to compare against return createEmptyChangeLog(changelogFile, listener, "log"); } @@ -565,33 +580,33 @@ } finally { os.close(); } - if(!created) + if (!created) { createEmptyChangeLog(changelogFile, listener, "log"); + } return true; } - /*package*/ static Map parseRevisionFile(AbstractBuild build) throws IOException { - return parseRevisionFile(build,false,false); + /* package */static Map parseRevisionFile(AbstractBuild build) throws IOException { + return parseRevisionFile(build, false, false); } /** * Reads the revision file of the specified build (or the closest, if the flag is so specified.) - * - * @param findClosest - * If true, this method will go back the build history until it finds a revision file. - * A build may not have a revision file for any number of reasons (such as failure, interruption, etc.) - * @return - * map from {@link SvnInfo#url Subversion URL} to its revision. If there is more than one, choose - * the one with the smallest revision number + * + * @param findClosest If true, this method will go back the build history until it finds a revision file. A build + * may not have a revision file for any number of reasons (such as failure, interruption, etc.) + * @return map from {@link SvnInfo#url Subversion URL} to its revision. If there is more than one, choose the one + * with the smallest revision number */ - /*package*/ static Map parseRevisionFile(AbstractBuild build, boolean findClosest, boolean prunePinnedExternals) throws IOException { - Map revisions = new HashMap(); // module -> revision + /* package */static Map parseRevisionFile(AbstractBuild build, boolean findClosest, + boolean prunePinnedExternals) throws IOException { + Map revisions = new HashMap(); // module -> revision if (findClosest) { - for (AbstractBuild b=build; b!=null; b=b.getPreviousBuild()) { - if(getRevisionFile(b).exists()) { + for (AbstractBuild b = build; b != null; b = b.getPreviousBuild()) { + if (getRevisionFile(b).exists()) { build = b; break; } @@ -600,44 +615,47 @@ {// read the revision file of the build File file = getRevisionFile(build); - if(!file.exists()) + if (!file.exists()) { // nothing to compare against return revisions; + } BufferedReader br = new BufferedReader(new FileReader(file)); try { String line; - while((line=br.readLine())!=null) { - boolean isPinned = false; - int indexLast = line.length(); - if (line.lastIndexOf("::p") == indexLast-3) { - isPinned = true; - indexLast -= 3; - } - int index = line.lastIndexOf('/'); - if(index<0) { - continue; // invalid line? + while ((line = br.readLine()) != null) { + boolean isPinned = false; + int indexLast = line.length(); + if (line.lastIndexOf("::p") == indexLast - 3) { + isPinned = true; + indexLast -= 3; + } + int index = line.lastIndexOf('/'); + if (index < 0) { + continue; // invalid line? } try { - String url = line.substring(0, index); - long revision = Long.parseLong(line.substring(index+1,indexLast)); - Long oldRevision = revisions.get(url); - if (isPinned) { - if (!prunePinnedExternals) { - if (oldRevision == null) - // If we're writing pinned, only write if there are no unpinned - revisions.put(url, revision); - } - } else { - // unpinned - if (oldRevision == null || oldRevision > revision) - // For unpinned, take minimum - revisions.put(url, revision); - } - } catch (NumberFormatException e) { - // perhaps a corrupted line. - LOGGER.log(WARNING, "Error parsing line " + line, e); - } + String url = line.substring(0, index); + long revision = Long.parseLong(line.substring(index + 1, indexLast)); + Long oldRevision = revisions.get(url); + if (isPinned) { + if (!prunePinnedExternals) { + if (oldRevision == null) { + // If we're writing pinned, only write if there are no unpinned + revisions.put(url, revision); + } + } + } else { + // unpinned + if (oldRevision == null || oldRevision > revision) { + // For unpinned, take minimum + revisions.put(url, revision); + } + } + } catch (NumberFormatException e) { + // perhaps a corrupted line. + LOGGER.log(WARNING, "Error parsing line " + line, e); + } } } finally { br.close(); @@ -648,20 +666,17 @@ } /** - * Parses the file that stores the locations in the workspace where modules loaded by svn:external - * is placed. - * + * Parses the file that stores the locations in the workspace where modules loaded by svn:external is placed. *

* Note that the format of the file has changed in 1.180 from simple text file to XML. - * - * @return - * immutable list. Can be empty but never null. + * + * @return immutable list. Can be empty but never null. */ - /*package*/ static List parseExternalsFile(AbstractProject project) throws IOException { + /* package */static List parseExternalsFile(AbstractProject project) throws IOException { File file = getExternalsFile(project); - if(file.exists()) { + if (file.exists()) { try { - return (List)new XmlFile(External.XSTREAM,file).read(); + return (List)new XmlFile(External.XSTREAM, file).read(); } catch (IOException e) { // in < 1.180 this file was a text file, so it may fail to parse as XML, // in which case let's just fall back @@ -678,14 +693,16 @@ public boolean requiresWorkspaceForPolling() { return false; } - - public boolean checkout(AbstractBuild build, Launcher launcher, FilePath workspace, final BuildListener listener, File changelogFile) throws IOException, InterruptedException { + + @Override + public boolean checkout(AbstractBuild build, Launcher launcher, FilePath workspace, final BuildListener listener, + File changelogFile) throws IOException, InterruptedException { EnvVars env = build.getEnvironment(listener); EnvVarsUtils.overrideAll(env, build.getBuildVariables()); List externals = null; try { - externals = checkout(build,workspace,listener,env); + externals = checkout(build, workspace, listener, env); } catch (UpdaterException e) { return false; } @@ -694,63 +711,67 @@ PrintWriter w = new PrintWriter(new FileOutputStream(getRevisionFile(build))); try { List pList = workspace.act(new BuildRevisionMapTask(build, this, listener, externals, env)); - List revList= new ArrayList(pList.size()); - for (SvnInfoP p: pList) { - if (p.pinned) - w.println( p.info.url +'/'+ p.info.revision + "::p"); - else - w.println( p.info.url +'/'+ p.info.revision); + List revList = new ArrayList(pList.size()); + for (SvnInfoP p : pList) { + if (p.pinned) { + w.println(p.info.url + '/' + p.info.revision + "::p"); + } else { + w.println(p.info.url + '/' + p.info.revision); + } revList.add(p.info); } - build.addAction(new SubversionTagAction(build,revList)); + build.addAction(new SubversionTagAction(build, revList)); } finally { w.close(); } // write out the externals info - new XmlFile(External.XSTREAM,getExternalsFile(build.getProject())).write(externals); + new XmlFile(External.XSTREAM, getExternalsFile(build.getProject())).write(externals); return calcChangeLog(build, changelogFile, listener, externals, env); } /** * Performs the checkout or update, depending on the configuration and workspace state. - * *

- * Use canonical path to avoid SVNKit/symlink problem as described in - * https://wiki.svnkit.com/SVNKit_FAQ - * - * @return null - * if the operation failed. Otherwise the set of local workspace paths - * (relative to the workspace root) that has loaded due to svn:external. + * Use canonical path to avoid SVNKit/symlink problem as described in https://wiki.svnkit.com/SVNKit_FAQ + * + * @return null if the operation failed. Otherwise the set of local workspace paths (relative to the workspace root) + * that has loaded due to svn:external. */ - private List checkout(AbstractBuild build, FilePath workspace, TaskListener listener, EnvVars env) throws IOException, InterruptedException { + private List checkout(AbstractBuild build, FilePath workspace, TaskListener listener, EnvVars env) + throws IOException, InterruptedException { if (repositoryLocationsNoLongerExist(build, listener, env)) { Run lsb = build.getProject().getLastSuccessfulBuild(); - if (lsb != null && build.getNumber()-lsb.getNumber()>10 - && build.getTimestamp().getTimeInMillis()-lsb.getTimestamp().getTimeInMillis() > TimeUnit2.DAYS.toMillis(1)) { + if (lsb != null + && build.getNumber() - lsb.getNumber() > 10 + && build.getTimestamp().getTimeInMillis() - lsb.getTimestamp().getTimeInMillis() > TimeUnit2.DAYS + .toMillis(1)) { // Disable this project if the location doesn't exist any more, see issue #763 // but only do so if there was at least some successful build, // to make sure that initial configuration error won't disable the build. see issue #1567 // finally, only disable a build if the failure persists for some time. // see http://www.nabble.com/Should-Hudson-have-an-option-for-a-content-fingerprint--td24022683.html - listener.getLogger().println("One or more repository locations do not exist anymore for " + build.getProject().getName() + ", project will be disabled."); + listener.getLogger().println( + "One or more repository locations do not exist anymore for " + build.getProject().getName() + + ", project will be disabled."); build.getProject().makeDisabled(true); return null; } } - + List externals = new ArrayList(); for (ModuleLocation location : getLocations(env, build)) { - externals.addAll( workspace.act(new CheckOutTask(build, this, location, build.getTimestamp().getTime(), listener, env))); + externals.addAll(workspace.act(new CheckOutTask(build, this, location, build.getTimestamp().getTime(), + listener, env))); // olamy: remove null check at it cause test failure - // see https://github.com/jenkinsci/subversion-plugin/commit/de23a2b781b7b86f41319977ce4c11faee75179b#commitcomment-1551273 - /*if ( externalsFound != null ){ - externals.addAll(externalsFound); - } else { - externals.addAll( new ArrayList( 0 ) ); - }*/ + // see + // https://github.com/jenkinsci/subversion-plugin/commit/de23a2b781b7b86f41319977ce4c11faee75179b#commitcomment-1551273 + /* + * if ( externalsFound != null ){ externals.addAll(externalsFound); } else { externals.addAll( new + * ArrayList( 0 ) ); } + */ } return externals; @@ -761,9 +782,11 @@ * Either run "svn co" or "svn up" equivalent. */ private static class CheckOutTask extends UpdateTask implements FileCallable> { + private final UpdateTask task; - public CheckOutTask(AbstractBuild build, SubversionSCM parent, ModuleLocation location, Date timestamp, TaskListener listener, EnvVars env) { + public CheckOutTask(AbstractBuild build, SubversionSCM parent, ModuleLocation location, Date timestamp, + TaskListener listener, EnvVars env) { this.authProvider = parent.getDescriptor().createAuthenticationProvider(build.getParent()); this.timestamp = timestamp; this.listener = listener; @@ -771,7 +794,8 @@ this.revisions = build.getAction(RevisionParameterAction.class); this.task = parent.getWorkspaceUpdater().createTask(); } - + + @Override public List invoke(File ws, VirtualChannel channel) throws IOException { clientManager = createClientManager(authProvider); manager = clientManager.getCore(); @@ -791,8 +815,8 @@ } /** - * This round-about way of executing the task ensures that the error-prone {@link #delegateTo(UpdateTask)} method - * correctly copies everything. + * This round-about way of executing the task ensures that the error-prone {@link #delegateTo(UpdateTask)} + * method correctly copies everything. */ @Override public List perform() throws IOException, InterruptedException { @@ -803,16 +827,18 @@ try { SVNDirEntry dir = clientManager.createRepository(location.getSVNURL(), true).info("/", -1); if (dir != null) {// I don't think this can ever be null, but be defensive - if (dir.getDate() != null && dir.getDate().after(new Date())) // see http://www.nabble.com/NullPointerException-in-SVN-Checkout-Update-td21609781.html that reported this being null. + if (dir.getDate() != null && dir.getDate().after(new Date())) // see + // http://www.nabble.com/NullPointerException-in-SVN-Checkout-Update-td21609781.html + // that reported this being null. { listener.getLogger().println(Messages.SubversionSCM_ClockOutOfSync()); } } } catch (SVNAuthenticationException e) { // if we don't have access to '/', ignore. error - LOGGER.log(Level.FINE,"Failed to estimate the remote time stamp",e); + LOGGER.log(Level.FINE, "Failed to estimate the remote time stamp", e); } catch (SVNException e) { - LOGGER.log(Level.INFO,"Failed to estimate the remote time stamp",e); + LOGGER.log(Level.INFO, "Failed to estimate the remote time stamp", e); } } @@ -820,24 +846,20 @@ } /** - * - * @deprecated as of 1.40 - * Use {@link #createClientManager(ISVNAuthenticationProvider)} + * @deprecated as of 1.40 Use {@link #createClientManager(ISVNAuthenticationProvider)} */ + @Deprecated public static SVNClientManager createSvnClientManager(ISVNAuthenticationProvider authProvider) { return createClientManager(authProvider).getCore(); } /** * Creates {@link SVNClientManager}. - * *

* This method must be executed on the slave where svn operations are performed. - * - * @param authProvider - * The value obtained from {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}. - * If the operation runs on slaves, - * (and properly remoted, if the svn operations run on slaves.) + * + * @param authProvider The value obtained from {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}. + * If the operation runs on slaves, (and properly remoted, if the svn operations run on slaves.) */ public static SvnClientManager createClientManager(ISVNAuthenticationProvider authProvider) { ISVNAuthenticationManager sam = createSvnAuthenticationManager(authProvider); @@ -846,12 +868,13 @@ /** * Creates the {@link DefaultSVNOptions}. - * + * * @return the {@link DefaultSVNOptions}. */ public static DefaultSVNOptions createDefaultSVNOptions() { DefaultSVNOptions defaultOptions = SVNWCUtil.createDefaultOptions(true); - DescriptorImpl descriptor = Hudson.getInstance() == null ? null : Hudson.getInstance().getDescriptorByType(DescriptorImpl.class); + DescriptorImpl descriptor = Hudson.getInstance() == null ? null : Hudson.getInstance().getDescriptorByType( + DescriptorImpl.class); if (defaultOptions != null && descriptor != null) { defaultOptions.setAuthStorageEnabled(descriptor.isStoreAuthToDisk()); } @@ -860,11 +883,12 @@ public static ISVNAuthenticationManager createSvnAuthenticationManager(ISVNAuthenticationProvider authProvider) { File configDir; - if (CONFIG_DIR!=null) + if (CONFIG_DIR != null) { configDir = new File(CONFIG_DIR); - else + } else { configDir = SVNWCUtil.getDefaultConfigurationDirectory(); - + } + ISVNAuthenticationManager sam = SVNWCUtil.createDefaultAuthenticationManager(configDir, null, null); sam.setAuthenticationProvider(authProvider); SVNAuthStoreHandlerImpl.install(sam); @@ -872,10 +896,9 @@ } /** - * @deprecated as of 2.0 - * Use {@link #createClientManager(AbstractProject)} - * + * @deprecated as of 2.0 Use {@link #createClientManager(AbstractProject)} */ + @Deprecated public static SVNClientManager createSvnClientManager(AbstractProject context) { return createClientManager(context).getCore(); } @@ -884,14 +907,16 @@ * Creates {@link SVNClientManager} for code running on the master. *

* CAUTION: this code only works when invoked on master. On slaves, use - * {@link #createSvnClientManager(ISVNAuthenticationProvider)} and get {@link ISVNAuthenticationProvider} - * from the master via remoting. + * {@link #createSvnClientManager(ISVNAuthenticationProvider)} and get {@link ISVNAuthenticationProvider} from the + * master via remoting. */ public static SvnClientManager createClientManager(AbstractProject context) { - return new SvnClientManager(createSvnClientManager(Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).createAuthenticationProvider(context))); + return new SvnClientManager(createSvnClientManager(Hudson.getInstance() + .getDescriptorByType(DescriptorImpl.class).createAuthenticationProvider(context))); } public static final class SvnInfo implements Serializable, Comparable { + /** * Decoded repository URL. */ @@ -904,29 +929,40 @@ } public SvnInfo(SVNInfo info) { - this( info.getURL().toDecodedString(), info.getCommittedRevision().getNumber() ); + this(info.getURL().toDecodedString(), info.getCommittedRevision().getNumber()); } public SVNURL getSVNURL() throws SVNException { return SVNURL.parseURIDecoded(url); } + @Override public int compareTo(SvnInfo that) { int r = this.url.compareTo(that.url); - if(r!=0) return r; + if (r != 0) { + return r; + } - if(this.revisionthat.revision) return +1; + if (this.revision < that.revision) { + return -1; + } + if (this.revision > that.revision) { + return +1; + } return 0; } @Override public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } - SvnInfo svnInfo = (SvnInfo) o; - return revision==svnInfo.revision && url.equals(svnInfo.url); + SvnInfo svnInfo = (SvnInfo)o; + return revision == svnInfo.revision && url.equals(svnInfo.url); } @@ -934,13 +970,13 @@ public int hashCode() { int result; result = url.hashCode(); - result = 31 * result + (int) (revision ^ (revision >>> 32)); + result = 31 * result + (int)(revision ^ (revision >>> 32)); return result; } @Override public String toString() { - return String.format("%s (rev.%s)",url,revision); + return String.format("%s (rev.%s)", url, revision); } private static final long serialVersionUID = 1L; @@ -950,6 +986,7 @@ * {@link SvnInfo} plus a flag if the revision is fixed. */ private static final class SvnInfoP implements Serializable { + /** * SvnInfo with an indicator boolean indicating whether this is a pinned external */ @@ -960,6 +997,7 @@ this.info = info; this.pinned = pinned; } + private static final long serialVersionUID = 1L; } @@ -967,8 +1005,9 @@ * Information about svn:external */ public static final class External implements Serializable { + /** - * Relative path within the workspace where this svn:exteranls exist. + * Relative path within the workspace where this svn:exteranls exist. */ public final String path; @@ -978,19 +1017,18 @@ public final String url; /** - * If the svn:external link is with the -r option, its number. - * Otherwise -1 to indicate that the head revision of the external repository should be fetched. + * If the svn:external link is with the -r option, its number. Otherwise -1 to indicate that the head revision + * of the external repository should be fetched. */ public final long revision; /** - * @param modulePath - * The root of the current module that svn was checking out when it hits 'ext'. - * Since we call svnkit multiple times in general case to check out from multiple locations, - * we use this to make the path relative to the entire workspace, not just the particular module. + * @param modulePath The root of the current module that svn was checking out when it hits 'ext'. Since we call + * svnkit multiple times in general case to check out from multiple locations, we use this to make + * the path relative to the entire workspace, not just the particular module. */ - public External(String modulePath,SVNExternal ext) { - this.path = modulePath+'/'+ext.getPath(); + public External(String modulePath, SVNExternal ext) { + this.path = modulePath + '/' + ext.getPath(); this.url = ext.getResolvedURL().toDecodedString(); this.revision = ext.getRevision().getNumber(); } @@ -999,23 +1037,22 @@ * Returns true if this reference is to a fixed revision. */ public boolean isRevisionFixed() { - return revision!=-1; + return revision != -1; } private static final long serialVersionUID = 1L; private static final XStream XSTREAM = new XStream2(); static { - XSTREAM.alias("external",External.class); + XSTREAM.alias("external", External.class); } } /** * Gets the SVN metadata for the remote repository. - * - * @param remoteUrl - * The target to run "svn info". + * + * @param remoteUrl The target to run "svn info". */ private static SVNInfo parseSvnInfo(SVNURL remoteUrl, ISVNAuthenticationProvider authProvider) throws SVNException { final SvnClientManager manager = createClientManager(authProvider); @@ -1028,25 +1065,26 @@ } /** - * Checks .svn files in the workspace and finds out revisions of the modules - * that the workspace has. - * - * @return - * null if the parsing somehow fails. Otherwise a map from the repository URL to revisions. + * Checks .svn files in the workspace and finds out revisions of the modules that the workspace has. + * + * @return null if the parsing somehow fails. Otherwise a map from the repository URL to revisions. */ private static class BuildRevisionMapTask implements FileCallable> { + private final ISVNAuthenticationProvider authProvider; private final TaskListener listener; private final List externals; private final ModuleLocation[] locations; - public BuildRevisionMapTask(AbstractBuild build, SubversionSCM parent, TaskListener listener, List externals, EnvVars env) { + public BuildRevisionMapTask(AbstractBuild build, SubversionSCM parent, TaskListener listener, + List externals, EnvVars env) { this.authProvider = parent.getDescriptor().createAuthenticationProvider(build.getParent()); this.listener = listener; this.externals = externals; this.locations = parent.getLocations(env, build); } + @Override public List invoke(File ws, VirtualChannel channel) throws IOException { List revisions = new ArrayList(); @@ -1054,20 +1092,22 @@ try { final SVNWCClient svnWc = manager.getWCClient(); // invoke the "svn info" - for( ModuleLocation module : locations ) { + for (ModuleLocation module : locations) { try { - SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws,module.getLocalDir()), SVNRevision.WORKING)); + SvnInfo info = new SvnInfo( + svnWc.doInfo(new File(ws, module.getLocalDir()), SVNRevision.WORKING)); revisions.add(new SvnInfoP(info, false)); } catch (SVNException e) { - e.printStackTrace(listener.error("Failed to parse svn info for "+module.remote)); + e.printStackTrace(listener.error("Failed to parse svn info for " + module.remote)); } } - for(External ext : externals){ + for (External ext : externals) { try { - SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws,ext.path),SVNRevision.WORKING)); + SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws, ext.path), SVNRevision.WORKING)); revisions.add(new SvnInfoP(info, ext.isRevisionFixed())); } catch (SVNException e) { - e.printStackTrace(listener.error("Failed to parse svn info for external "+ext.url+" at "+ext.path)); + e.printStackTrace(listener.error("Failed to parse svn info for external " + ext.url + " at " + + ext.path)); } } @@ -1076,6 +1116,7 @@ manager.dispose(); } } + private static final long serialVersionUID = 1L; } @@ -1083,50 +1124,51 @@ * Gets the file that stores the revision. */ public static File getRevisionFile(AbstractBuild build) { - return new File(build.getRootDir(),"revision.txt"); + return new File(build.getRootDir(), "revision.txt"); } /** * Gets the file that stores the externals. */ private static File getExternalsFile(AbstractProject project) { - return new File(project.getRootDir(),"svnexternals.txt"); + return new File(project.getRootDir(), "svnexternals.txt"); } @Override - public SCMRevisionState calcRevisionsFromBuild(AbstractBuild build, Launcher launcher, TaskListener listener) throws IOException, InterruptedException { + public SCMRevisionState calcRevisionsFromBuild(AbstractBuild build, Launcher launcher, TaskListener listener) + throws IOException, InterruptedException { // exclude locations that are svn:external-ed with a fixed revision. - Map wsRev = parseRevisionFile(build,true,true); + Map wsRev = parseRevisionFile(build, true, true); return new SVNRevisionState(wsRev); } @Override - protected PollingResult compareRemoteRevisionWith(AbstractProject project, Launcher launcher, FilePath workspace, final TaskListener listener, SCMRevisionState _baseline) throws IOException, InterruptedException { + protected PollingResult compareRemoteRevisionWith(AbstractProject project, Launcher launcher, + FilePath workspace, final TaskListener listener, SCMRevisionState _baseline) + throws IOException, InterruptedException { final SVNRevisionState baseline; if (_baseline instanceof SVNRevisionState) { baseline = (SVNRevisionState)_baseline; - } - else if (project.getLastBuild()!=null) { + } else if (project.getLastBuild() != null) { baseline = (SVNRevisionState)calcRevisionsFromBuild(project.getLastBuild(), launcher, listener); - } - else { + } else { baseline = new SVNRevisionState(null); } - + if (project.getLastBuild() == null) { listener.getLogger().println(Messages.SubversionSCM_pollChanges_noBuilds()); return BUILD_NOW; } - AbstractBuild lastCompletedBuild = project.getLastCompletedBuild(); + AbstractBuild lastCompletedBuild = project.getLastCompletedBuild(); - if (lastCompletedBuild!=null) { + if (lastCompletedBuild != null) { EnvVars env = lastCompletedBuild.getEnvironment(listener); EnvVarsUtils.overrideAll(env, lastCompletedBuild.getBuildVariables()); + env.putAll(EnvVarsUtils.getEnvVarsFromGlobalNodeProperties()); if (repositoryLocationsNoLongerExist(lastCompletedBuild, listener, env)) { // Disable this project, see HUDSON-763 - listener.getLogger().println( - Messages.SubversionSCM_pollChanges_locationsNoLongerExist(project)); + listener.getLogger().println(Messages.SubversionSCM_pollChanges_locationsNoLongerExist(project)); project.makeDisabled(true); return NO_CHANGES; } @@ -1135,15 +1177,14 @@ for (ModuleLocation loc : getLocations(env, lastCompletedBuild)) { // baseline.revisions has URIdecoded URL String url; - try { + try { url = loc.getSVNURL().toDecodedString(); } catch (SVNException ex) { ex.printStackTrace(listener.error(Messages.SubversionSCM_pollChanges_exception(loc.getURL()))); return BUILD_NOW; } if (!baseline.revisions.containsKey(url)) { - listener.getLogger().println( - Messages.SubversionSCM_pollChanges_locationNotInWorkspace(url)); + listener.getLogger().println(Messages.SubversionSCM_pollChanges_locationNotInWorkspace(url)); return BUILD_NOW; } } @@ -1151,26 +1192,32 @@ // determine where to perform polling. prefer the node where the build happened, // in case a cluster is non-uniform. see http://www.nabble.com/svn-connection-from-slave-only-td24970587.html - VirtualChannel ch=null; - Node n = lastCompletedBuild!=null ? lastCompletedBuild.getBuiltOn() : null; + VirtualChannel ch = null; + Node n = lastCompletedBuild != null ? lastCompletedBuild.getBuiltOn() : null; if (POLL_FROM_MASTER) { n = null; } - if (n!=null) { + if (n != null) { Computer c = n.toComputer(); - if (c!=null) ch = c.getChannel(); + if (c != null) { + ch = c.getChannel(); + } } - if (ch==null) ch= MasterComputer.localChannel; - final String nodeName = n!=null ? n.getNodeName() : "master"; + if (ch == null) { + ch = MasterComputer.localChannel; + } + final String nodeName = n != null ? n.getNodeName() : "master"; final String projectName = project.getName(); final SVNLogHandler logHandler = new SVNLogHandler(listener); // figure out the remote revisions final ISVNAuthenticationProvider authProvider = getDescriptor().createAuthenticationProvider(project); - return ch.call(new DelegatingCallable () { + return ch.call(new DelegatingCallable() { + private static final long serialVersionUID = 8200959096894789583L; + @Override public ClassLoader getClassLoader() { return Hudson.getInstance().getPluginManager().uberClassLoader; } @@ -1179,33 +1226,34 @@ * Computes {@link PollingResult}. Note that we allow changes that match the certain paths to be excluded, * so */ + @Override public PollingResult call() throws IOException { - listener.getLogger().println("Received SCM poll call on " + nodeName + " for " + projectName + " on " + DateFormat.getDateTimeInstance().format(new Date()) ); - final Map revs = new HashMap(); + listener.getLogger().println( + "Received SCM poll call on " + nodeName + " for " + projectName + " on " + + DateFormat.getDateTimeInstance().format(new Date())); + final Map revs = new HashMap(); boolean changes = false; boolean significantChanges = false; - for (Map.Entry baselineInfo : baseline.revisions.entrySet()) { + for (Map.Entry baselineInfo : baseline.revisions.entrySet()) { String url = baselineInfo.getKey(); long baseRev = baselineInfo.getValue(); /* - If we fail to check the remote revision, assume there's no change. - In this way, a temporary SVN server problem won't result in bogus builds, - which will fail anyway. So our policy in the error handling in the polling - is not to fire off builds. see HUDSON-6136. + * If we fail to check the remote revision, assume there's no change. In this way, a temporary SVN + * server problem won't result in bogus builds, which will fail anyway. So our policy in the error + * handling in the polling is not to fire off builds. see HUDSON-6136. */ revs.put(url, baseRev); try { final SVNURL svnurl = SVNURL.parseURIDecoded(url); - long nowRev = new SvnInfo(parseSvnInfo(svnurl,authProvider)).revision; + long nowRev = new SvnInfo(parseSvnInfo(svnurl, authProvider)).revision; - changes |= (nowRev>baseRev); + changes |= (nowRev > baseRev); listener.getLogger().println(Messages.SubversionSCM_pollChanges_remoteRevisionAt(url, nowRev)); revs.put(url, nowRev); // make sure there's a change and it isn't excluded - if (logHandler.findNonExcludedChanges(svnurl, - baseRev+1, nowRev, authProvider)) { + if (logHandler.findNonExcludedChanges(svnurl, baseRev + 1, nowRev, authProvider)) { listener.getLogger().println(Messages.SubversionSCM_pollChanges_changedFrom(baseRev)); significantChanges = true; } @@ -1213,18 +1261,18 @@ e.printStackTrace(listener.error(Messages.SubversionSCM_pollChanges_exception(url))); } } - assert revs.size()== baseline.revisions.size(); - return new PollingResult(baseline,new SVNRevisionState(revs), - significantChanges ? Change.SIGNIFICANT : changes ? Change.INSIGNIFICANT : Change.NONE); + assert revs.size() == baseline.revisions.size(); + return new PollingResult(baseline, new SVNRevisionState(revs), significantChanges ? Change.SIGNIFICANT + : changes ? Change.INSIGNIFICANT : Change.NONE); } }); } /** - * Goes through the changes between two revisions and see if all the changes - * are excluded. + * Goes through the changes between two revisions and see if all the changes are excluded. */ private final class SVNLogHandler implements ISVNLogEntryHandler, Serializable { + private boolean changesFound = false; private final TaskListener listener; @@ -1245,23 +1293,30 @@ /** * Checks it the revision range [from,to] has any changes that are not excluded via exclusions. */ - public boolean findNonExcludedChanges(SVNURL url, long from, long to, ISVNAuthenticationProvider authProvider) throws SVNException { - if (from>to) return false; // empty revision range, meaning no change + public boolean findNonExcludedChanges(SVNURL url, long from, long to, ISVNAuthenticationProvider authProvider) + throws SVNException { + if (from > to) { + return false; // empty revision range, meaning no change + } // if no exclusion rules are defined, don't waste time going through "svn log". - if (!hasExclusionRule()) return true; + if (!hasExclusionRule()) { + return true; + } final SvnClientManager manager = createClientManager(authProvider); try { - manager.getLogClient().doLog(url, null, SVNRevision.UNDEFINED, - SVNRevision.create(from), // get log entries from the local revision + 1 - SVNRevision.create(to), // to the remote revision - false, // Don't stop on copy. - true, // Report paths. - false, // Don't included merged revisions - 0, // Retrieve log entries for unlimited number of revisions. - null, // Retrieve all revprops - this); + manager.getLogClient().doLog(url, null, SVNRevision.UNDEFINED, SVNRevision.create(from), // get log + // entries from + // the local + // revision + 1 + SVNRevision.create(to), // to the remote revision + false, // Don't stop on copy. + true, // Report paths. + false, // Don't included merged revisions + 0, // Retrieve log entries for unlimited number of revisions. + null, // Retrieve all revprops + this); } finally { manager.dispose(); } @@ -1273,19 +1328,19 @@ * Is there any exclusion rule? */ private boolean hasExclusionRule() { - return excludedPatterns.length>0 || !excludedUsers.isEmpty() || excludedRevprop != null || excludedCommitMessages.length>0 || includedPatterns.length>0; + return excludedPatterns.length > 0 || !excludedUsers.isEmpty() || excludedRevprop != null + || excludedCommitMessages.length > 0 || includedPatterns.length > 0; } /** - * Handles a log entry passed. - * Check for log entries that should be excluded from triggering a build. - * If an entry is not an entry that should be excluded, set changesFound to true - * - * @param logEntry an {@link org.tmatesoft.svn.core.SVNLogEntry} object - * that represents per revision information - * (committed paths, log message, etc.) + * Handles a log entry passed. Check for log entries that should be excluded from triggering a build. If an + * entry is not an entry that should be excluded, set changesFound to true + * + * @param logEntry an {@link org.tmatesoft.svn.core.SVNLogEntry} object that represents per revision information + * (committed paths, log message, etc.) * @throws org.tmatesoft.svn.core.SVNException */ + @Override public void handleLogEntry(SVNLogEntry logEntry) throws SVNException { if (checkLogEntry(logEntry)) { changesFound = true; @@ -1293,9 +1348,8 @@ } /** - * Checks if the given log entry should be considered for the purposes - * of SCM polling. - * + * Checks if the given log entry should be considered for the purposes of SCM polling. + * * @return true if the should trigger polling, false otherwise */ private boolean checkLogEntry(SVNLogEntry logEntry) { @@ -1303,8 +1357,8 @@ // If the entry includes the exclusion revprop, don't count it as a change SVNProperties revprops = logEntry.getRevisionProperties(); if (revprops != null && revprops.containsName(excludedRevprop)) { - listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision( - logEntry.getRevision(), + listener.getLogger().println( + Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(), Messages.SubversionSCM_pollChanges_ignoredRevision_revprop(excludedRevprop))); return false; } @@ -1313,8 +1367,8 @@ String author = logEntry.getAuthor(); if (excludedUsers.contains(author)) { // If the author is an excluded user, don't count this entry as a change - listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision( - logEntry.getRevision(), + listener.getLogger().println( + Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(), Messages.SubversionSCM_pollChanges_ignoredRevision_author(author))); return false; } @@ -1353,8 +1407,8 @@ // If no paths are included don't count this entry as a change if (includedPaths.isEmpty()) { - listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision( - logEntry.getRevision(), + listener.getLogger().println( + Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(), Messages.SubversionSCM_pollChanges_ignoredRevision_noincpath())); return false; } @@ -1374,8 +1428,8 @@ // If all included paths are in an excluded region, don't count this entry as a change if (includedPaths.size() == excludedPaths.size()) { - listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision( - logEntry.getRevision(), + listener.getLogger().println( + Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(), Messages.SubversionSCM_pollChanges_ignoredRevision_path(Util.join(excludedPaths, ", ")))); return false; } @@ -1387,6 +1441,7 @@ private static final long serialVersionUID = 1L; } + @Override public ChangeLogParser createChangeLogParser() { return new SubversionChangeLogParser(); } @@ -1403,8 +1458,9 @@ @Override @Deprecated public FilePath getModuleRoot(FilePath workspace) { - if (getLocations().length > 0) + if (getLocations().length > 0) { return workspace.child(getLocations()[0].getLocalDir()); + } return workspace; } @@ -1426,8 +1482,9 @@ throw new RuntimeException(e); } - if (getLocations().length > 0) + if (getLocations().length > 0) { return _getModuleRoot(workspace, getLocations()[0].getLocalDir(), env); + } return workspace; } @@ -1444,13 +1501,13 @@ } return new FilePath[] { getModuleRoot(workspace) }; } - + @Override public FilePath[] getModuleRoots(FilePath workspace, @SuppressWarnings("rawtypes") AbstractBuild build) { if (build == null) { return getModuleRoots(workspace); } - + // TODO: can't I get the build listener here? TaskListener listener = new LogTaskListener(LOGGER, WARNING); final EnvVars env; @@ -1462,7 +1519,7 @@ Thread.currentThread().interrupt(); throw new RuntimeException(e); } - + final ModuleLocation[] moduleLocations = getLocations(); if (moduleLocations.length > 0) { FilePath[] moduleRoots = new FilePath[moduleLocations.length]; @@ -1476,22 +1533,21 @@ } FilePath _getModuleRoot(FilePath workspace, String localDir, EnvVars env) { - return workspace.child( - env.expand(localDir)); + return workspace.child(env.expand(localDir)); } private static String getLastPathComponent(String s) { String[] tokens = s.split("/"); - return tokens[tokens.length-1]; // return the last token + return tokens[tokens.length - 1]; // return the last token } @Extension public static class DescriptorImpl extends SCMDescriptor implements hudson.model.ModelObject { + /** - * SVN authentication realm to its associated credentials. - * This is the global credential repository. + * SVN authentication realm to its associated credentials. This is the global credential repository. */ - private final Map credentials = new Hashtable(); + private final Map credentials = new Hashtable(); /** * Stores name of Subversion revision property to globally exclude @@ -1501,35 +1557,33 @@ private int workspaceFormat = SVNAdminAreaFactory.WC_FORMAT_14; /** - * When set to true, repository URLs will be validated up to the first - * dollar sign which is encountered. + * When set to true, repository URLs will be validated up to the first dollar sign which is encountered. */ private boolean validateRemoteUpToVar = false; /** * When set to {@code false}, then auth details will never be stored on disk. + * * @since 1.27 */ private boolean storeAuthToDisk = true; /** * Stores {@link SVNAuthentication} for a single realm. - * *

- * {@link Credential} holds data in a persistence-friendly way, - * and it's capable of creating {@link SVNAuthentication} object, - * to be passed to SVNKit. + * {@link Credential} holds data in a persistence-friendly way, and it's capable of creating + * {@link SVNAuthentication} object, to be passed to SVNKit. */ public static abstract class Credential implements Serializable { + /** - * + * */ private static final long serialVersionUID = -3707951427730113110L; /** - * @param kind - * One of the constants defined in {@link ISVNAuthenticationManager}, - * indicating what subtype of {@link SVNAuthentication} is expected. + * @param kind One of the constants defined in {@link ISVNAuthenticationManager}, indicating what subtype of + * {@link SVNAuthentication} is expected. */ public abstract SVNAuthentication createSVNAuthentication(String kind) throws SVNException; } @@ -1538,8 +1592,9 @@ * Username/password based authentication. */ public static final class PasswordCredential extends Credential { + /** - * + * */ private static final long serialVersionUID = -1676145651108866745L; private final String userName; @@ -1552,10 +1607,11 @@ @Override public SVNAuthentication createSVNAuthentication(String kind) { - if(kind.equals(ISVNAuthenticationManager.SSH)) - return new SVNSSHAuthentication(userName,Scrambler.descramble(password),-1,false); - else - return new SVNPasswordAuthentication(userName,Scrambler.descramble(password),false); + if (kind.equals(ISVNAuthenticationManager.SSH)) { + return new SVNSSHAuthentication(userName, Scrambler.descramble(password), -1, false); + } else { + return new SVNPasswordAuthentication(userName, Scrambler.descramble(password), false); + } } } @@ -1563,8 +1619,9 @@ * Public key authentication for Subversion over SSH. */ public static final class SshPublicKeyCredential extends Credential { + /** - * + * */ private static final long serialVersionUID = -4649332611621900514L; private final String userName; @@ -1572,8 +1629,7 @@ private final String id; /** - * @param keyFile - * stores SSH private key. The file will be copied. + * @param keyFile stores SSH private key. The file will be copied. */ public SshPublicKeyCredential(String userName, String passphrase, File keyFile) throws SVNException { this.userName = userName; @@ -1581,17 +1637,18 @@ Random r = new Random(); StringBuilder buf = new StringBuilder(); - for(int i=0;i<16;i++) + for (int i = 0; i < 16; i++) { buf.append(Integer.toHexString(r.nextInt(16))); + } this.id = buf.toString(); try { File savedKeyFile = getKeyFile(); - FileUtils.copyFile(keyFile,savedKeyFile); + FileUtils.copyFile(keyFile, savedKeyFile); setFilePermissions(savedKeyFile, "600"); } catch (IOException e) { - throw new SVNException( - SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to save private key").initCause(e)); + throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE, + "Unable to save private key").initCause(e)); } } @@ -1599,13 +1656,13 @@ * Gets the location where the private key will be permanently stored. */ private File getKeyFile() { - File dir = new File(Hudson.getInstance().getRootDir(),"subversion-credentials"); - if(dir.mkdirs()) { + File dir = new File(Hudson.getInstance().getRootDir(), "subversion-credentials"); + if (dir.mkdirs()) { // make sure the directory exists. if we created it, try to set the permission to 600 // since this is sensitive information setFilePermissions(dir, "600"); } - return new File(dir,id); + return new File(dir, id); } /** @@ -1620,7 +1677,7 @@ chmod.execute(); } catch (BuildException e) { // if we failed to set the permission, that's fine. - LOGGER.log(Level.WARNING, "Failed to set permission of "+file,e); + LOGGER.log(Level.WARNING, "Failed to set permission of " + file, e); return false; } @@ -1629,35 +1686,39 @@ @Override public SVNSSHAuthentication createSVNAuthentication(String kind) throws SVNException { - if(kind.equals(ISVNAuthenticationManager.SSH)) { + if (kind.equals(ISVNAuthenticationManager.SSH)) { try { Channel channel = Channel.current(); String privateKey; - if(channel!=null) { + if (channel != null) { // remote - privateKey = channel.call(new Callable() { + privateKey = channel.call(new Callable() { + /** - * + * */ private static final long serialVersionUID = -3088632649290496373L; + @Override public String call() throws IOException { - return FileUtils.readFileToString(getKeyFile(),"iso-8859-1"); + return FileUtils.readFileToString(getKeyFile(), "iso-8859-1"); } }); } else { - privateKey = FileUtils.readFileToString(getKeyFile(),"iso-8859-1"); + privateKey = FileUtils.readFileToString(getKeyFile(), "iso-8859-1"); } - return new SVNSSHAuthentication(userName, privateKey.toCharArray(), Scrambler.descramble(passphrase),-1,false); + return new SVNSSHAuthentication(userName, privateKey.toCharArray(), + Scrambler.descramble(passphrase), -1, false); } catch (IOException e) { - throw new SVNException( - SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to load private key").initCause(e)); + throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE, + "Unable to load private key").initCause(e)); } catch (InterruptedException e) { - throw new SVNException( - SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to load private key").initCause(e)); + throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE, + "Unable to load private key").initCause(e)); } - } else + } else { return null; // unknown + } } } @@ -1665,8 +1726,9 @@ * SSL client certificate based authentication. */ public static final class SslClientCertificateCredential extends Credential { + /** - * + * */ private static final long serialVersionUID = 5455755079546887446L; private final Secret certificate; @@ -1674,29 +1736,31 @@ public SslClientCertificateCredential(File certificate, String password) throws IOException { this.password = Scrambler.scramble(password); - this.certificate = Secret.fromString(new String(Base64.encode(FileUtils.readFileToByteArray(certificate)))); + this.certificate = Secret.fromString(new String(Base64.encode(FileUtils + .readFileToByteArray(certificate)))); } @Override public SVNAuthentication createSVNAuthentication(String kind) { - if(kind.equals(ISVNAuthenticationManager.SSL)) + if (kind.equals(ISVNAuthenticationManager.SSL)) { try { - return new SVNSSLAuthentication( - Base64.decode(certificate.getPlainText().toCharArray()), - Scrambler.descramble(password),false); + return new SVNSSLAuthentication(Base64.decode(certificate.getPlainText().toCharArray()), + Scrambler.descramble(password), false); } catch (IOException e) { throw new Error(e); // can't happen } - else + } else { return null; // unexpected authentication type + } } } /** - * Remoting interface that allows remote {@link ISVNAuthenticationProvider} - * to read from local {@link DescriptorImpl#credentials}. + * Remoting interface that allows remote {@link ISVNAuthenticationProvider} to read from local + * {@link DescriptorImpl#credentials}. */ interface RemotableSVNAuthenticationProvider extends Serializable { + Credential getCredential(SVNURL url, String realm); /** @@ -1706,29 +1770,32 @@ } /** - * There's no point in exporting multiple {@link RemotableSVNAuthenticationProviderImpl} instances, - * so let's just use one instance. + * There's no point in exporting multiple {@link RemotableSVNAuthenticationProviderImpl} instances, so let's + * just use one instance. */ private transient final RemotableSVNAuthenticationProviderImpl remotableProvider = new RemotableSVNAuthenticationProviderImpl(); private final class RemotableSVNAuthenticationProviderImpl implements RemotableSVNAuthenticationProvider { + /** - * + * */ private static final long serialVersionUID = 1243451839093253666L; + @Override public Credential getCredential(SVNURL url, String realm) { for (SubversionCredentialProvider p : SubversionCredentialProvider.all()) { - Credential c = p.getCredential(url,realm); - if(c!=null) { - LOGGER.fine(String.format("getCredential(%s)=>%s by %s",realm,c,p)); + Credential c = p.getCredential(url, realm); + if (c != null) { + LOGGER.fine(String.format("getCredential(%s)=>%s by %s", realm, c, p)); return c; } } - LOGGER.fine(String.format("getCredential(%s)=>%s",realm,credentials.get(realm))); + LOGGER.fine(String.format("getCredential(%s)=>%s", realm, credentials.get(realm))); return credentials.get(realm); } + @Override public void acknowledgeAuthentication(String realm, Credential credential) { // this notification is only used on the project-local store. } @@ -1745,6 +1812,7 @@ * See {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}. */ private static final class SVNAuthenticationProviderImpl implements ISVNAuthenticationProvider, ISVNAuthenticationOutcomeListener, Serializable { + /** * Project-scoped authentication source. For historical reasons, can be null. */ @@ -1760,31 +1828,41 @@ */ private Credential lastCredential; - public SVNAuthenticationProviderImpl(RemotableSVNAuthenticationProvider local, RemotableSVNAuthenticationProvider global) { + public SVNAuthenticationProviderImpl(RemotableSVNAuthenticationProvider local, + RemotableSVNAuthenticationProvider global) { this.global = global; this.local = local; } - private SVNAuthentication fromProvider(SVNURL url, String realm, String kind, RemotableSVNAuthenticationProvider src, String debugName) throws SVNException { - if (src==null) return null; - - Credential cred = src.getCredential(url,realm); - LOGGER.fine(String.format("%s.requestClientAuthentication(%s,%s,%s)=>%s",debugName,kind,url,realm,cred)); + private SVNAuthentication fromProvider(SVNURL url, String realm, String kind, + RemotableSVNAuthenticationProvider src, String debugName) throws SVNException { + if (src == null) { + return null; + } + + Credential cred = src.getCredential(url, realm); + LOGGER.fine(String.format("%s.requestClientAuthentication(%s,%s,%s)=>%s", debugName, kind, url, realm, + cred)); this.lastCredential = cred; - if(cred!=null) return cred.createSVNAuthentication(kind); + if (cred != null) { + return cred.createSVNAuthentication(kind); + } return null; } - public SVNAuthentication requestClientAuthentication(String kind, SVNURL url, String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) { + @Override + public SVNAuthentication requestClientAuthentication(String kind, SVNURL url, String realm, + SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) { try { - SVNAuthentication auth=fromProvider(url,realm,kind,local,"local"); + SVNAuthentication auth = fromProvider(url, realm, kind, local, "local"); // first try the local credential, then the global credential. - if (auth==null || compareSVNAuthentications(auth,previousAuth)) - auth = fromProvider(url,realm,kind,global,"global"); + if (auth == null || compareSVNAuthentications(auth, previousAuth)) { + auth = fromProvider(url, realm, kind, global, "global"); + } - if(previousAuth!=null && compareSVNAuthentications(auth,previousAuth)) { + if (previousAuth != null && compareSVNAuthentications(auth, previousAuth)) { // See HUDSON-2909 // this comparison is necessary, unlike the original fix of HUDSON-2909, since SVNKit may use // other ISVNAuthenticationProviders and their failed auth might be passed to us. @@ -1793,26 +1871,31 @@ return null; } - if(auth==null && ISVNAuthenticationManager.USERNAME.equals(kind)) { + if (auth == null && ISVNAuthenticationManager.USERNAME.equals(kind)) { // this happens with file:// URL and svn+ssh (in this case this method gets invoked twice.) // The base class does this, too. // user auth shouldn't be null. - return new SVNUserNameAuthentication("",false); + return new SVNUserNameAuthentication("", false); } return auth; } catch (SVNException e) { - LOGGER.log(Level.SEVERE, "Failed to authorize",e); - throw new RuntimeException("Failed to authorize",e); + LOGGER.log(Level.SEVERE, "Failed to authorize", e); + throw new RuntimeException("Failed to authorize", e); } } - public void acknowledgeAuthentication(boolean accepted, String kind, String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication) throws SVNException { - if (accepted && local!=null && lastCredential!=null) - local.acknowledgeAuthentication(realm,lastCredential); + @Override + public void acknowledgeAuthentication(boolean accepted, String kind, String realm, + SVNErrorMessage errorMessage, SVNAuthentication authentication) throws SVNException { + if (accepted && local != null && lastCredential != null) { + local.acknowledgeAuthentication(realm, lastCredential); + } } - public int acceptServerAuthentication(SVNURL url, String realm, Object certificate, boolean resultMayBeStored) { + @Override + public int acceptServerAuthentication(SVNURL url, String realm, Object certificate, + boolean resultMayBeStored) { return ACCEPTED_TEMPORARY; } @@ -1830,9 +1913,10 @@ } protected DescriptorImpl(Class clazz, Class repositoryBrowser) { - super(clazz,repositoryBrowser); + super(clazz, repositoryBrowser); } + @Override public String getDisplayName() { return "Subversion"; } @@ -1842,8 +1926,9 @@ } public int getWorkspaceFormat() { - if (workspaceFormat==0) + if (workspaceFormat == 0) { return SVNAdminAreaFactory.WC_FORMAT_14; // default + } return workspaceFormat; } @@ -1857,8 +1942,7 @@ @Override public boolean configure(StaplerRequest req, JSONObject formData) throws FormException { - globalExcludedRevprop = fixEmptyAndTrim( - req.getParameter("svn.global_excluded_revprop")); + globalExcludedRevprop = fixEmptyAndTrim(req.getParameter("svn.global_excluded_revprop")); workspaceFormat = Integer.parseInt(req.getParameter("svn.workspaceFormat")); validateRemoteUpToVar = formData.containsKey("validateRemoteUpToVar"); storeAuthToDisk = formData.containsKey("storeAuthToDisk"); @@ -1872,104 +1956,112 @@ @Override public boolean isBrowserReusable(SubversionSCM x, SubversionSCM y) { ModuleLocation[] xl = x.getLocations(), yl = y.getLocations(); - if (xl.length != yl.length) return false; - for (int i = 0; i < xl.length; i++) - if (!xl[i].getURL().equals(yl[i].getURL())) return false; + if (xl.length != yl.length) { + return false; + } + for (int i = 0; i < xl.length; i++) { + if (!xl[i].getURL().equals(yl[i].getURL())) { + return false; + } + } return true; } /** - * Creates {@link ISVNAuthenticationProvider} backed by {@link #credentials}. - * This method must be invoked on the master, but the returned object is remotable. - * + * Creates {@link ISVNAuthenticationProvider} backed by {@link #credentials}. This method must be invoked on the + * master, but the returned object is remotable. *

- * Therefore, to access {@link ISVNAuthenticationProvider}, you need to call this method - * on the master, then pass the object to the slave side, then call + * Therefore, to access {@link ISVNAuthenticationProvider}, you need to call this method on the master, then + * pass the object to the slave side, then call * {@link SubversionSCM#createSvnClientManager(ISVNAuthenticationProvider)} on the slave. - * + * * @see SubversionSCM#createSvnClientManager(ISVNAuthenticationProvider) */ - public ISVNAuthenticationProvider createAuthenticationProvider(AbstractProject inContextOf) { - return new SVNAuthenticationProviderImpl( - inContextOf==null ? null : new PerJobCredentialStore(inContextOf),remotableProvider); + public ISVNAuthenticationProvider createAuthenticationProvider(AbstractProject inContextOf) { + return new SVNAuthenticationProviderImpl(inContextOf == null ? null + : new PerJobCredentialStore(inContextOf), remotableProvider); } /** - * @deprecated as of 1.18 - * Now that Hudson allows different credentials to be given in different jobs, - * The caller should use {@link #createAuthenticationProvider(AbstractProject)} to indicate - * the project in which the subversion operation is performed. + * @deprecated as of 1.18 Now that Hudson allows different credentials to be given in different jobs, The caller + * should use {@link #createAuthenticationProvider(AbstractProject)} to indicate the project in + * which the subversion operation is performed. */ + @Deprecated public ISVNAuthenticationProvider createAuthenticationProvider() { - return new SVNAuthenticationProviderImpl(null,remotableProvider); + return new SVNAuthenticationProviderImpl(null, remotableProvider); } /** * Submits the authentication info. */ - // TODO: stapler should do multipart/form-data handling + // TODO: stapler should do multipart/form-data handling public void doPostCredential(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException { Hudson.getInstance().checkPermission(Item.CONFIGURE); - + MultipartFormDataParser parser = new MultipartFormDataParser(req); // we'll record what credential we are trying here. StringWriter log = new StringWriter(); PrintWriter logWriter = new PrintWriter(log); - UserProvidedCredential upc = UserProvidedCredential.fromForm(req,parser); + UserProvidedCredential upc = UserProvidedCredential.fromForm(req, parser); try { postCredential(parser.get("url"), upc, logWriter); rsp.sendRedirect("credentialOK"); } catch (SVNException e) { - logWriter.println("FAILED: "+e.getErrorMessage()); - req.setAttribute("message",log.toString()); - req.setAttribute("pre",true); - req.setAttribute("exception",e); - rsp.forward(Hudson.getInstance(),"error",req); + logWriter.println("FAILED: " + e.getErrorMessage()); + req.setAttribute("message", log.toString()); + req.setAttribute("pre", true); + req.setAttribute("exception", e); + rsp.forward(Hudson.getInstance(), "error", req); } finally { upc.close(); } } /** - * @deprecated as of 1.18 - * Use {@link #postCredential(AbstractProject, String, String, String, File, PrintWriter)} + * @deprecated as of 1.18 Use + * {@link #postCredential(AbstractProject, String, String, String, File, PrintWriter)} */ - public void postCredential(String url, String username, String password, File keyFile, PrintWriter logWriter) throws SVNException, IOException { - postCredential(null,url,username,password,keyFile,logWriter); + @Deprecated + public void postCredential(String url, String username, String password, File keyFile, PrintWriter logWriter) + throws SVNException, IOException { + postCredential(null, url, username, password, keyFile, logWriter); } - public void postCredential(AbstractProject inContextOf, String url, String username, String password, File keyFile, PrintWriter logWriter) throws SVNException, IOException { - postCredential(url,new UserProvidedCredential(username,password,keyFile,inContextOf),logWriter); + public void postCredential(AbstractProject inContextOf, String url, String username, String password, + File keyFile, PrintWriter logWriter) throws SVNException, IOException { + postCredential(url, new UserProvidedCredential(username, password, keyFile, inContextOf), logWriter); } /** - * Submits the authentication info. - * - * This code is fairly ugly because of the way SVNKit handles credentials. + * Submits the authentication info. This code is fairly ugly because of the way SVNKit handles credentials. */ - public void postCredential(String url, final UserProvidedCredential upc, PrintWriter logWriter) throws SVNException, IOException { + public void postCredential(String url, final UserProvidedCredential upc, PrintWriter logWriter) + throws SVNException, IOException { SVNRepository repository = null; try { // the way it works with SVNKit is that // 1) svnkit calls AuthenticationManager asking for a credential. - // this is when we can see the 'realm', which identifies the user domain. + // this is when we can see the 'realm', which identifies the user domain. // 2) DefaultSVNAuthenticationManager returns the username and password we set below // 3) if the authentication is successful, svnkit calls back acknowledgeAuthentication - // (so we store the password info here) + // (so we store the password info here) repository = SVNRepositoryFactory.create(SVNURL.parseURIDecoded(url)); - repository.setTunnelProvider( createDefaultSVNOptions() ); + repository.setTunnelProvider(createDefaultSVNOptions()); AuthenticationManagerImpl authManager = upc.new AuthenticationManagerImpl(logWriter) { + @Override protected void onSuccess(String realm, Credential cred) { - LOGGER.info("Persisted "+cred+" for "+realm); + LOGGER.info("Persisted " + cred + " for " + realm); credentials.put(realm, cred); save(); - if (upc.inContextOf!=null) - new PerJobCredentialStore(upc.inContextOf).acknowledgeAuthentication(realm,cred); + if (upc.inContextOf != null) { + new PerJobCredentialStore(upc.inContextOf).acknowledgeAuthentication(realm, cred); + } } }; @@ -1978,93 +2070,98 @@ repository.testConnection(); authManager.checkIfProtocolCompleted(); } finally { - if (repository != null) + if (repository != null) { repository.closeSession(); + } } } /** * validate the value for a remote (repository) location. */ - public FormValidation doCheckRemote(StaplerRequest req, @AncestorInPath AbstractProject context, @QueryParameter String value) { + public FormValidation doCheckRemote(StaplerRequest req, @AncestorInPath AbstractProject context, + @QueryParameter String value) { // syntax check first String url = Util.fixEmptyAndTrim(value); - if (url == null) - return FormValidation.error(Messages.SubversionSCM_doCheckRemote_required()); + if (url == null) { + return FormValidation.error(Messages.SubversionSCM_doCheckRemote_required()); + } - if(isValidateRemoteUpToVar()) { + if (isValidateRemoteUpToVar()) { url = (url.indexOf('$') != -1) ? url.substring(0, url.indexOf('$')) : url; } - if(!URL_PATTERN.matcher(url).matches()) - return FormValidation.errorWithMarkup( - Messages.SubversionSCM_doCheckRemote_invalidUrl()); + if (!URL_PATTERN.matcher(url).matches()) { + return FormValidation.errorWithMarkup(Messages.SubversionSCM_doCheckRemote_invalidUrl()); + } // Test the connection only if we have job cuonfigure permission - if (!Hudson.getInstance().hasPermission(Item.CONFIGURE)) + if (!Hudson.getInstance().hasPermission(Item.CONFIGURE)) { return FormValidation.ok(); + } try { String urlWithoutRevision = getUrlWithoutRevision(url); - + SVNURL repoURL = SVNURL.parseURIDecoded(urlWithoutRevision); - if (checkRepositoryPath(context,repoURL)!=SVNNodeKind.NONE) { + if (checkRepositoryPath(context, repoURL) != SVNNodeKind.NONE) { // something exists; now check revision if any - + SVNRevision revision = getRevisionFromRemoteUrl(url); if (revision != null && !revision.isValid()) { return FormValidation.errorWithMarkup(Messages.SubversionSCM_doCheckRemote_invalidRevision()); } - + return FormValidation.ok(); } - + SVNRepository repository = null; try { - repository = getRepository(context,repoURL); + repository = getRepository(context, repoURL); long rev = repository.getLatestRevision(); // now go back the tree and find if there's anything that exists String repoPath = getRelativePath(repoURL, repository); String p = repoPath; - while(p.length()>0) { + while (p.length() > 0) { p = SVNPathUtil.removeTail(p); - if(repository.checkPath(p,rev)==SVNNodeKind.DIR) { + if (repository.checkPath(p, rev) == SVNNodeKind.DIR) { // found a matching path List entries = new ArrayList(); - repository.getDir(p,rev,false,entries); + repository.getDir(p, rev, false, entries); // build up the name list List paths = new ArrayList(); - for (SVNDirEntry e : entries) - if(e.getKind()==SVNNodeKind.DIR) + for (SVNDirEntry e : entries) { + if (e.getKind() == SVNNodeKind.DIR) { paths.add(e.getName()); + } + } String head = SVNPathUtil.head(repoPath.substring(p.length() + 1)); - String candidate = EditDistance.findNearest(head,paths); + String candidate = EditDistance.findNearest(head, paths); - return FormValidation.error( - Messages.SubversionSCM_doCheckRemote_badPathSuggest(p, head, - candidate != null ? "/" + candidate : "")); + return FormValidation.error(Messages.SubversionSCM_doCheckRemote_badPathSuggest(p, head, + candidate != null ? "/" + candidate : "")); } } - return FormValidation.error( - Messages.SubversionSCM_doCheckRemote_badPath(repoPath)); + return FormValidation.error(Messages.SubversionSCM_doCheckRemote_badPath(repoPath)); } finally { - if (repository != null) + if (repository != null) { repository.closeSession(); + } } } catch (SVNException e) { - LOGGER.log(Level.INFO, "Failed to access subversion repository "+url,e); - String message = Messages.SubversionSCM_doCheckRemote_exceptionMsg1( - Util.escape(url), Util.escape(e.getErrorMessage().getFullMessage()), + LOGGER.log(Level.INFO, "Failed to access subversion repository " + url, e); + String message = Messages.SubversionSCM_doCheckRemote_exceptionMsg1(Util.escape(url), + Util.escape(e.getErrorMessage().getFullMessage()), "javascript:document.getElementById('svnerror').style.display='block';" - + "document.getElementById('svnerrorlink').style.display='none';" - + "return false;") - + "

"
-                  + Functions.printThrowable(e) + "
" - + Messages.SubversionSCM_doCheckRemote_exceptionMsg2( - "descriptorByName/"+SubversionSCM.class.getName()+"/enterCredential?" + url); + + "document.getElementById('svnerrorlink').style.display='none';" + "return false;") + + "
"
+                    + Functions.printThrowable(e)
+                    + "
" + + Messages.SubversionSCM_doCheckRemote_exceptionMsg2("descriptorByName/" + + SubversionSCM.class.getName() + "/enterCredential?" + url); return FormValidation.errorWithMarkup(message); } } @@ -2073,15 +2170,16 @@ SVNRepository repository = null; try { - repository = getRepository(context,repoURL); + repository = getRepository(context, repoURL); repository.testConnection(); long rev = repository.getLatestRevision(); String repoPath = getRelativePath(repoURL, repository); return repository.checkPath(repoPath, rev); } finally { - if (repository != null) + if (repository != null) { repository.closeSession(); + } } } @@ -2090,13 +2188,16 @@ ISVNAuthenticationManager sam = createSvnAuthenticationManager(createAuthenticationProvider(context)); sam = new FilterSVNAuthenticationManager(sam) { + // If there's no time out, the blocking read operation may hang forever, because TCP itself // has no timeout. So always use some time out. If the underlying implementation gives us some // value (which may come from ~/.subversion), honor that, as long as it sets some timeout value. @Override public int getReadTimeout(SVNRepository repository) { int r = super.getReadTimeout(repository); - if(r<=0) r = DEFAULT_TIMEOUT; + if (r <= 0) { + r = DEFAULT_TIMEOUT; + } return r; } }; @@ -2105,10 +2206,12 @@ return repository; } - + public static String getRelativePath(SVNURL repoURL, SVNRepository repository) throws SVNException { String repoPath = repoURL.getPath().substring(repository.getRepositoryRoot(false).getPath().length()); - if(!repoPath.startsWith("/")) repoPath="/"+repoPath; + if (!repoPath.startsWith("/")) { + repoPath = "/" + repoPath; + } return repoPath; } @@ -2117,16 +2220,18 @@ */ public FormValidation doCheckLocal(@QueryParameter String value) throws IOException, ServletException { String v = Util.nullify(value); - if (v == null) + if (v == null) { // local directory is optional so this is ok return FormValidation.ok(); + } v = v.trim(); // check if a absolute path has been supplied // (the last check with the regex will match windows drives) - if (v.startsWith("/") || v.startsWith("\\") || v.startsWith("..") || v.matches("^[A-Za-z]:.*")) + if (v.startsWith("/") || v.startsWith("\\") || v.startsWith("..") || v.matches("^[A-Za-z]:.*")) { return FormValidation.error("absolute path is not allowed"); + } // all tests passed so far return FormValidation.ok(); @@ -2136,12 +2241,13 @@ * Validates the excludeRegions Regex */ public FormValidation doCheckExcludedRegions(@QueryParameter String value) throws IOException, ServletException { - for (String region : Util.fixNull(value).trim().split("[\\r\\n]+")) + for (String region : Util.fixNull(value).trim().split("[\\r\\n]+")) { try { Pattern.compile(region); } catch (PatternSyntaxException e) { return FormValidation.error("Invalid regular expression. " + e.getMessage()); } + } return FormValidation.ok(); } @@ -2149,12 +2255,12 @@ * Validates the includedRegions Regex */ public FormValidation doCheckIncludedRegions(@QueryParameter String value) throws IOException, ServletException { - return doCheckExcludedRegions(value); + return doCheckExcludedRegions(value); } /** - * Regular expression for matching one username. Matches 'windows' names ('DOMAIN\user') and - * 'normal' names ('user'). Where user (and DOMAIN) has one or more characters in 'a-zA-Z_0-9') + * Regular expression for matching one username. Matches 'windows' names ('DOMAIN\user') and 'normal' names + * ('user'). Where user (and DOMAIN) has one or more characters in 'a-zA-Z_0-9') */ private static final Pattern USERNAME_PATTERN = Pattern.compile("(\\w+\\\\)?+(\\w+)"); @@ -2184,7 +2290,8 @@ /** * Validates the excludeCommitMessages field */ - public FormValidation doCheckExcludedCommitMessages(@QueryParameter String value) throws IOException, ServletException { + public FormValidation doCheckExcludedCommitMessages(@QueryParameter String value) + throws IOException, ServletException { for (String message : Util.fixNull(value).trim().split("[\\r\\n]+")) { try { Pattern.compile(message); @@ -2198,40 +2305,47 @@ /** * Validates the remote server supports custom revision properties */ - public FormValidation doCheckRevisionPropertiesSupported(@AncestorInPath AbstractProject context, @QueryParameter String value) throws IOException, ServletException { + public FormValidation doCheckRevisionPropertiesSupported(@AncestorInPath AbstractProject context, + @QueryParameter String value) throws IOException, ServletException { String v = Util.fixNull(value).trim(); - if (v.length() == 0) + if (v.length() == 0) { return FormValidation.ok(); + } // Test the connection only if we have admin permission - if (!Hudson.getInstance().hasPermission(Hudson.ADMINISTER)) + if (!Hudson.getInstance().hasPermission(Hudson.ADMINISTER)) { return FormValidation.ok(); + } try { SVNURL repoURL = SVNURL.parseURIDecoded(v); - if (checkRepositoryPath(context,repoURL)!=SVNNodeKind.NONE) + if (checkRepositoryPath(context, repoURL) != SVNNodeKind.NONE) { // something exists return FormValidation.ok(); + } SVNRepository repository = null; try { - repository = getRepository(context,repoURL); - if (repository.hasCapability(SVNCapability.LOG_REVPROPS)) + repository = getRepository(context, repoURL); + if (repository.hasCapability(SVNCapability.LOG_REVPROPS)) { return FormValidation.ok(); + } } finally { - if (repository != null) + if (repository != null) { repository.closeSession(); + } } } catch (SVNException e) { - String message=""; - message += "Unable to access "+Util.escape(v)+" : "+Util.escape( e.getErrorMessage().getFullMessage()); - LOGGER.log(Level.INFO, "Failed to access subversion repository "+v,e); + String message = ""; + message += "Unable to access " + Util.escape(v) + " : " + + Util.escape(e.getErrorMessage().getFullMessage()); + LOGGER.log(Level.INFO, "Failed to access subversion repository " + v, e); return FormValidation.errorWithMarkup(message); } return FormValidation.warning(Messages.SubversionSCM_excludedRevprop_notSupported(v)); } - + static { new Initializer(); } @@ -2241,26 +2355,26 @@ /** * @deprecated 1.34 */ - public boolean repositoryLocationsNoLongerExist(AbstractBuild build, TaskListener listener) { + @Deprecated + public boolean repositoryLocationsNoLongerExist(AbstractBuild build, TaskListener listener) { return repositoryLocationsNoLongerExist(build, listener, null); } - + /** * @since 1.34 */ - public boolean repositoryLocationsNoLongerExist(AbstractBuild build, TaskListener listener, EnvVars env) { + public boolean repositoryLocationsNoLongerExist(AbstractBuild build, TaskListener listener, EnvVars env) { PrintStream out = listener.getLogger(); - for (ModuleLocation l : getLocations(env, build)) + for (ModuleLocation l : getLocations(env, build)) { try { - if (getDescriptor().checkRepositoryPath(build.getProject(), l.getSVNURL()) == SVNNodeKind.NONE) { + if (getDescriptor().checkRepositoryPath(build.getProject(), l.getExpandedLocation(env).getSVNURL()) == SVNNodeKind.NONE) { out.println("Location '" + l.remote + "' does not exist"); ParametersAction params = build.getAction(ParametersAction.class); if (params != null) { // since this is used to disable projects, be conservative - LOGGER.fine("Location could be expanded on build '" + build - + "' parameters values:"); + LOGGER.fine("Location could be expanded on build '" + build + "' parameters values:"); return false; } return true; @@ -2268,8 +2382,9 @@ } catch (SVNException e) { // be conservative, since we are just trying to be helpful in detecting // non existent locations. If we can't detect that, we'll do nothing - LOGGER.log(FINE, "Location check failed",e); + LOGGER.log(FINE, "Location check failed", e); } + } return false; } @@ -2278,30 +2393,35 @@ private static final long serialVersionUID = 1L; // noop, but this forces the initializer to run. - public static void init() {} + public static void init() { + } static { new Initializer(); } private static final class Initializer { + static { - if(Boolean.getBoolean("hudson.spool-svn")) - DAVRepositoryFactory.setup(new DefaultHTTPConnectionFactory(null,true,null)); - else - DAVRepositoryFactory.setup(); // http, https - SVNRepositoryFactoryImpl.setup(); // svn, svn+xxx - FSRepositoryFactory.setup(); // file + if (Boolean.getBoolean("hudson.spool-svn")) { + DAVRepositoryFactory.setup(new DefaultHTTPConnectionFactory(null, true, null)); + } else { + DAVRepositoryFactory.setup(); // http, https + } + SVNRepositoryFactoryImpl.setup(); // svn, svn+xxx + FSRepositoryFactory.setup(); // file // disable the connection pooling, which causes problems like // http://www.nabble.com/SSH-connection-problems-p12028339.html - if(System.getProperty("svnkit.ssh2.persistent")==null) - System.setProperty("svnkit.ssh2.persistent","false"); + if (System.getProperty("svnkit.ssh2.persistent") == null) { + System.setProperty("svnkit.ssh2.persistent", "false"); + } // push Negotiate to the end because it requires a valid Kerberos configuration. // see HUDSON-8153 - if(System.getProperty("svnkit.http.methods")==null) - System.setProperty("svnkit.http.methods","Digest,Basic,NTLM,Negotiate"); + if (System.getProperty("svnkit.http.methods") == null) { + System.setProperty("svnkit.http.methods", "Digest,Basic,NTLM,Negotiate"); + } // use SVN1.4 compatible workspace by default. SVNAdminAreaFactory.setSelector(new SubversionWorkspaceSelector()); @@ -2309,27 +2429,24 @@ } /** - * small structure to store local and remote (repository) location - * information of the repository. As a addition it holds the invalid field - * to make failure messages when doing a checkout possible + * small structure to store local and remote (repository) location information of the repository. As a addition it + * holds the invalid field to make failure messages when doing a checkout possible */ @ExportedBean public static final class ModuleLocation implements Serializable { + /** - * Subversion URL to check out. - * - * This may include "@NNN" at the end to indicate a fixed revision. + * Subversion URL to check out. This may include "@NNN" at the end to indicate a fixed revision. */ @Exported public final String remote; /** - * Remembers the user-given value. - * Can be null. - * - * @deprecated - * Code should use {@link #getLocalDir()}. This field is only intended for form binding. + * Remembers the user-given value. Can be null. + * + * @deprecated Code should use {@link #getLocalDir()}. This field is only intended for form binding. */ + @Deprecated @Exported public final String local; @@ -2346,21 +2463,20 @@ } /** - * Local directory to place the file to. - * Relative to the workspace root. + * Local directory to place the file to. Relative to the workspace root. */ public String getLocalDir() { - if(local==null) + if (local == null) { return getLastPathComponent(getUrlWithoutRevision(remote)); + } return local; } /** - * Returns the pure URL portion of {@link #remote} by removing - * possible "@NNN" suffix. + * Returns the pure URL portion of {@link #remote} by removing possible "@NNN" suffix. */ public String getURL() { - return getUrlWithoutRevision(remote); + return getUrlWithoutRevision(remote); } /** @@ -2374,7 +2490,7 @@ * Repository UUID. Lazy computed and cached. */ public UUID getUUID(AbstractProject context) throws SVNException { - if(repositoryUUID==null || repositoryRoot==null) { + if (repositoryUUID == null || repositoryRoot == null) { synchronized (this) { SVNRepository r = openRepository(context); r.testConnection(); // make sure values are fetched @@ -2386,7 +2502,7 @@ } public SVNRepository openRepository(AbstractProject context) throws SVNException { - return Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).getRepository(context,getSVNURL()); + return Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).getRepository(context, getSVNURL()); } public SVNURL getRepositoryRoot(AbstractProject context) throws SVNException { @@ -2395,60 +2511,60 @@ } /** - * Figures out which revision to check out. - * - * If {@link #remote} is {@code url@rev}, then this method - * returns that specific revision. - * - * @param defaultValue - * If "@NNN" portion is not in the URL, this value will be returned. - * Normally, this is the SVN revision timestamped at the build date. + * Figures out which revision to check out. If {@link #remote} is {@code url@rev}, then this method returns that + * specific revision. + * + * @param defaultValue If "@NNN" portion is not in the URL, this value will be returned. Normally, this is the + * SVN revision timestamped at the build date. */ public SVNRevision getRevision(SVNRevision defaultValue) { SVNRevision revision = getRevisionFromRemoteUrl(remote); return revision != null ? revision : defaultValue; } - private String getExpandedRemote(AbstractBuild build) { + private String getExpandedRemote(AbstractBuild build) { String outRemote = remote; ParametersAction parameters = build.getAction(ParametersAction.class); - if (parameters != null) + if (parameters != null) { outRemote = parameters.substitute(build, remote); + } return outRemote; } /** - * @deprecated This method is used by {@link #getExpandedLocation(AbstractBuild)} - * which is deprecated since it expands variables only based - * on build parameters. + * @deprecated This method is used by {@link #getExpandedLocation(AbstractBuild)} which is deprecated since it + * expands variables only based on build parameters. */ - private String getExpandedLocalDir(AbstractBuild build) { + @Deprecated + private String getExpandedLocalDir(AbstractBuild build) { String outLocalDir = getLocalDir(); ParametersAction parameters = build.getAction(ParametersAction.class); - if (parameters != null) + if (parameters != null) { outLocalDir = parameters.substitute(build, getLocalDir()); + } return outLocalDir; } /** * Expand location value based on Build parametric execution. - * + * * @param build Build instance for expanding parameters into their values * @return Output ModuleLocation expanded according to Build parameters values. - * @deprecated Use {@link #getExpandedLocation(EnvVars)} for vars expansion - * to be performed on all env vars rather than just build parameters. + * @deprecated Use {@link #getExpandedLocation(EnvVars)} for vars expansion to be performed on all env vars + * rather than just build parameters. */ + @Deprecated public ModuleLocation getExpandedLocation(AbstractBuild build) { return new ModuleLocation(getExpandedRemote(build), getExpandedLocalDir(build)); } - + /** * Expand location value based on environment variables. - * + * * @return Output ModuleLocation expanded according to specified env vars. */ public ModuleLocation getExpandedLocation(EnvVars env) { @@ -2484,45 +2600,55 @@ private static final Logger LOGGER = Logger.getLogger(SubversionSCM.class.getName()); /** - * Network timeout in milliseconds. - * The main point of this is to prevent infinite hang, so it should be a rather long value to avoid - * accidental time out problem. + * Network timeout in milliseconds. The main point of this is to prevent infinite hang, so it should be a rather + * long value to avoid accidental time out problem. */ - public static int DEFAULT_TIMEOUT = Integer.getInteger(SubversionSCM.class.getName()+".timeout",3600*1000); + public static int DEFAULT_TIMEOUT = Integer.getInteger(SubversionSCM.class.getName() + ".timeout", 3600 * 1000); /** * Property to control whether SCM polling happens from the slave or master */ - public static boolean POLL_FROM_MASTER = Boolean.getBoolean(SubversionSCM.class.getName()+".pollFromMaster"); + public static boolean POLL_FROM_MASTER = Boolean.getBoolean(SubversionSCM.class.getName() + ".pollFromMaster"); /** * If set to non-null, read configuration from this directory instead of "~/.subversion". */ - public static String CONFIG_DIR = System.getProperty(SubversionSCM.class.getName()+".configDir"); - + public static String CONFIG_DIR = System.getProperty(SubversionSCM.class.getName() + ".configDir"); + /** * Enables trace logging of Ganymed SSH library. *

* Intended to be invoked from Groovy console. */ public static void enableSshDebug(Level level) { - if(level==null) level= Level.FINEST; // default + if (level == null) { + level = Level.FINEST; // default + } final Level lv = level; - com.trilead.ssh2.log.Logger.enabled=true; + com.trilead.ssh2.log.Logger.enabled = true; com.trilead.ssh2.log.Logger.logger = new DebugLogger() { + private final Logger LOGGER = Logger.getLogger(SCPClient.class.getPackage().getName()); + + @Override public void log(int level, String className, String message) { - LOGGER.log(lv,className+' '+message); + LOGGER.log(lv, className + ' ' + message); } }; } - /*package*/ static boolean compareSVNAuthentications(SVNAuthentication a1, SVNAuthentication a2) { - if (a1==null && a2==null) return true; - if (a1==null || a2==null) return false; - if (a1.getClass()!=a2.getClass()) return false; + /* package */static boolean compareSVNAuthentications(SVNAuthentication a1, SVNAuthentication a2) { + if (a1 == null && a2 == null) { + return true; + } + if (a1 == null || a2 == null) { + return false; + } + if (a1.getClass() != a2.getClass()) { + return false; + } try { return describeBean(a1).equals(describeBean(a2)); @@ -2538,20 +2664,20 @@ /** * In preparation for a comparison, char[] needs to be converted that supports value equality. */ - private static Map describeBean(Object o) throws InvocationTargetException, NoSuchMethodException, IllegalAccessException { - Map m = PropertyUtils.describe(o); + private static Map describeBean(Object o) + throws InvocationTargetException, NoSuchMethodException, IllegalAccessException { + Map m = PropertyUtils.describe(o); for (Entry e : m.entrySet()) { Object v = e.getValue(); if (v instanceof char[]) { - char[] chars = (char[]) v; + char[] chars = (char[])v; e.setValue(new String(chars)); } } return m; } - private static String getUrlWithoutRevision( - String remoteUrlPossiblyWithRevision) { + private static String getUrlWithoutRevision(String remoteUrlPossiblyWithRevision) { int idx = remoteUrlPossiblyWithRevision.lastIndexOf('@'); int slashIdx = remoteUrlPossiblyWithRevision.lastIndexOf('/'); if (idx > 0 && idx > slashIdx) { @@ -2569,8 +2695,7 @@ * * @return the revision or null */ - private static SVNRevision getRevisionFromRemoteUrl( - String remoteUrlPossiblyWithRevision) { + private static SVNRevision getRevisionFromRemoteUrl(String remoteUrlPossiblyWithRevision) { int idx = remoteUrlPossiblyWithRevision.lastIndexOf('@'); int slashIdx = remoteUrlPossiblyWithRevision.lastIndexOf('/'); if (idx > 0 && idx > slashIdx) { diff --git a/work/.owner b/work/.owner new file mode 100644 index 0000000..afc74e1 --- /dev/null +++ b/work/.owner @@ -0,0 +1 @@ +616259117 contextPath="" at 10056@ATGRZ4035535M \ No newline at end of file diff --git a/work/Fingerprint cleanup.log b/work/Fingerprint cleanup.log new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/Fingerprint cleanup.log diff --git a/work/Workspace clean-up.log b/work/Workspace clean-up.log new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/Workspace clean-up.log diff --git a/work/config.xml b/work/config.xml new file mode 100644 index 0000000..32d1cf9 --- /dev/null +++ b/work/config.xml @@ -0,0 +1,43 @@ + + + 1.405 + 2 + NORMAL + + + + + + + + 5 + 0 + + + + Alle + false + false + + + Alle + 0 + + + + + + + + + + + 1 + OPENNET_RC + branches/Rel_2012_05 + + + + + + \ No newline at end of file diff --git a/work/hudson.maven.MavenModuleSet.xml b/work/hudson.maven.MavenModuleSet.xml new file mode 100644 index 0000000..7a26895 --- /dev/null +++ b/work/hudson.maven.MavenModuleSet.xml @@ -0,0 +1,29 @@ + + + + + DEFAULT + -1 + + + LEVEL_MINIMAL + 0 + + + LEVEL_MAVEN_2_0 + 20 + + + LEVEL_MAVEN_3_0 + 30 + + + LEVEL_MAVEN_3_1 + 31 + + + LEVEL_STRICT + 30 + + + \ No newline at end of file diff --git a/work/hudson.model.UpdateCenter.xml b/work/hudson.model.UpdateCenter.xml new file mode 100644 index 0000000..4f317e7 --- /dev/null +++ b/work/hudson.model.UpdateCenter.xml @@ -0,0 +1,7 @@ + + + + default + http://updates.jenkins-ci.org/update-center.json + + \ No newline at end of file diff --git a/work/hudson.scm.CVSSCM.xml b/work/hudson.scm.CVSSCM.xml new file mode 100644 index 0000000..5705517 --- /dev/null +++ b/work/hudson.scm.CVSSCM.xml @@ -0,0 +1,5 @@ + + + 1 + false + \ No newline at end of file diff --git a/work/hudson.scm.SubversionSCM.xml b/work/hudson.scm.SubversionSCM.xml new file mode 100644 index 0000000..4775739 --- /dev/null +++ b/work/hudson.scm.SubversionSCM.xml @@ -0,0 +1,8 @@ + + + 3 + + 8 + false + true + \ No newline at end of file diff --git a/work/hudson.tasks.Ant.xml b/work/hudson.tasks.Ant.xml new file mode 100644 index 0000000..d09104b --- /dev/null +++ b/work/hudson.tasks.Ant.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/work/hudson.tasks.Mailer.xml b/work/hudson.tasks.Mailer.xml new file mode 100644 index 0000000..ded7a9c --- /dev/null +++ b/work/hudson.tasks.Mailer.xml @@ -0,0 +1,7 @@ + + + http://localhost:8080/ + Adresse nicht konfiguriert <nobody@nowhere> + false + UTF-8 + \ No newline at end of file diff --git a/work/hudson.tasks.Maven.xml b/work/hudson.tasks.Maven.xml new file mode 100644 index 0000000..6591595 --- /dev/null +++ b/work/hudson.tasks.Maven.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/work/hudson.tasks.Shell.xml b/work/hudson.tasks.Shell.xml new file mode 100644 index 0000000..df44a4d --- /dev/null +++ b/work/hudson.tasks.Shell.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/work/hudson.triggers.SCMTrigger.xml b/work/hudson.triggers.SCMTrigger.xml new file mode 100644 index 0000000..70867ab --- /dev/null +++ b/work/hudson.triggers.SCMTrigger.xml @@ -0,0 +1,5 @@ + + + false + 0 + \ No newline at end of file diff --git a/work/identity.key b/work/identity.key new file mode 100644 index 0000000..92fe2c0 --- /dev/null +++ b/work/identity.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAg7DTbS+1KY/fOtoC1zaoVxUi3auSeoV29T257dwC6VnVE6Rx +DLtJHiqixjCl5Xb+2/HVfyH+U7XEGGtX/kLfLThIr4hjR70GCXt5nle1TMDkKdPx +7fVsRKej8INkvX0YcCH0HLj+HsEAgh+qZwPaPVkJcfyXizQqHp8qshdsweYA9f7H +kIyGhddq2MxythI0wm/5Tj3DK2uFJMjG0DGiDBsScRk1R3iTWrrgKMR0vA83+sI/ +bKsQ6KhUpDL0eOOgiYs5QPklVCVT3G47d6Jeo98HWz4sZeQJtIXWJSuWwEUILjLz +2itXZUHzCRUlL97/vh86Bmp88Aja3RNMf00HKQIDAQABAoIBAHdghvh2g+IuQqzl +zidrq8RtK5MIohsg+4oqr244wAbq4SYSLkzdRdXrzmyc0vYlHbkiC2hY12To499D +B5w84HTsja9Zkq4IYv2bic8JMRdn0C0+rRQKI2BFG26+nUbMrKeRj+mtpOcaDCzp +KZ6CtoZgPRiwYmvVGM1zec/BPlyxmaDBTDzmKM1tQ0Qf9DV1CbPZfWcOd7PeG40/ +6M5pX0k1L4D1gFdbxmCuuVUbfr1RTL0F6GV0Df34f+zJrjcigyWSVPnNGLV1470q +IbLjgvJvSUHgMzZ4NOcclgOuWFW17YcEzVPa4KpQGhlCek+2NSGbIoE3a8zMvY06 +xmzx8QUCgYEA9PkVtzNoYOCeecfMxC0vsz5U0fUega0KXnrLwksL3Dl4Qr9CmnM9 +gPCXttxXYjpIrA4iBhOBe2ax5Agwr0+AFLHSmLucw5gCHY0fdswZ8BAj/3fXkBaL +blPHisMHzQk25zUVzlltg9ZT386MFczHMjP/DUEGCyNhOxK9klHLOAMCgYEAiZ5Y +5xK1TP5hyOUremfWT3mNXrNcGOMxJU4bhG4t4SYQCjdSVdhWOqWUwyoqQYC+2sVj +fVX9Lla8YAOHQgi35Vnlu4IiDkYNaVelePNEDAuPyTCk3BCOZnk79eXm+kqbTYnE +8Rns260FgZv6qb4xqIICrs9WjmKXoJMjV6EsymMCgYEA7u3CcFyDgXmTF9P3s58e +1wQEVoNsra3IXz4FXgs0Fic3VGKW421in1AJqSBfWj7egnGGXcbIk0MmXfJfCZ3Q +nl6RuMXDsEGiTpBGD+ghpDMZ6SFJ7g8PDxxHkt+FzEUgd4EfM5OlbOCuDau2lcyU +vDJaoOK6skJfou40V3HPc2ECgYADptL/Fqz+5QUdOo+DyPuT0krhB2tbMbQdJExw +oCfRgJwOWVdy9bGcDsa6wwSqBkuKLJCuQ7jbIOwQtCdDpk2S5WbGKfbTYCJ8+Blo +8zOMCkZ/dS36tOnCaFch+D6/x3kFfrFeIGz7i0TJIqVtGaHhscl2cAQA9TbGyQC4 +E4vHtwKBgQCeNl0dKAOHN+XQcAwgEe9ssw2MTN6YuiY/awMG8UrZMNWuWdrERgvY +MQZrUU/8z4V67mv7DNX0GQ2a5dnKFmbielTRY+cjUzrOxVtpNbu3aEKOvhn8X69q +3aCVEDJsLNGtWRy1Vrp5KjPWxoCPFzaOIYxciXVSMZvovUZHGg7ZuQ== +-----END RSA PRIVATE KEY----- diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml new file mode 100644 index 0000000..2565ab1 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml @@ -0,0 +1,43 @@ + + + + + + + anonymous + + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 75 + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 75 + + + + + 1 + SUCCESS + 1197 + windows-1252 + false + + C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace + 1.405 + + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml new file mode 100644 index 0000000..a891191 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log new file mode 100644 index 0000000..3b91409 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log @@ -0,0 +1,8 @@ +Gestartet durch Benutzer anonymous +Checking out a fresh workspace because there's no workspace at C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace +Cleaning local Directory . +Checking out http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 at revision '2012-12-12T17:06:38.001 +0100' +A test.txt + U . +At revision 89 +Finished: SUCCESS diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt new file mode 100644 index 0000000..d224e9d --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt @@ -0,0 +1 @@ +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/75 diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml new file mode 100644 index 0000000..1f4e991 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml @@ -0,0 +1,54 @@ + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC + 92 + + + + + + + + + + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 92 + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 92 + + + + + 2 + SUCCESS + 12608 + windows-1252 + false + + C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace + 1.405 + + + unknown + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml new file mode 100644 index 0000000..9fa60c6 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml @@ -0,0 +1 @@ +2012-12-12T16:07:22.093354Z/opennet/branches/Rel_2012_05/test.txt2012-12-12T16:37:18.217630Z/opennet/branches/Rel_2012_05/test.txt2012-12-12T16:45:37.837913Z/opennet/branches/Rel_2012_05/test.txt \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log new file mode 100644 index 0000000..b218fd7 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log @@ -0,0 +1,5 @@ +Build wurde durch eine SCM-Änderung ausgelöst. +Updating http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 to revision '2012-12-13T10:26:51.174 +0100' +U test.txt +At revision 92 +Finished: SUCCESS diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log new file mode 100644 index 0000000..a6e58bc --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log @@ -0,0 +1,4 @@ +Started on 13.12.2012 10:15:13 +Arbeitsbereich enthält http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC nicht. Neuer Build erforderlich. +Done. Took 11 Minuten +Changes found diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt new file mode 100644 index 0000000..e67760e --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt @@ -0,0 +1 @@ +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/92 diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml new file mode 100644 index 0000000..a697d2b --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml @@ -0,0 +1,54 @@ + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC + 93 + + + + + + + + + + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 93 + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 + 93 + + + + + 3 + SUCCESS + 14733 + windows-1252 + false + + C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace + 1.405 + + + unknown + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml new file mode 100644 index 0000000..455eda6 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml @@ -0,0 +1 @@ +2012-12-13T09:52:56.512605Z/opennet/branches/Rel_2012_05/test.txt \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log new file mode 100644 index 0000000..564e1a2 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log @@ -0,0 +1,5 @@ +Build wurde durch eine SCM-Änderung ausgelöst. +Updating http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 to revision '2012-12-13T10:53:03.883 +0100' +U test.txt +At revision 93 +Finished: SUCCESS diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log new file mode 100644 index 0000000..89f0fc3 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log @@ -0,0 +1,6 @@ +Started on 13.12.2012 10:52:56 +Received SCM poll call on for grzsrctest-opennet-RC on 13.12.2012 10:52:58 +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 liegt in Revision 93 vor + (Änderungen zu Revision 92) +Done. Took 1,9 Sekunden +Changes found diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt new file mode 100644 index 0000000..fd0ca22 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt @@ -0,0 +1 @@ +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/93 diff --git a/work/jobs/grzsrctest-opennet-RC/config.xml b/work/jobs/grzsrctest-opennet-RC/config.xml new file mode 100644 index 0000000..1343ccc --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/config.xml @@ -0,0 +1,34 @@ + + + + + false + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC + . + + + + + + + + + + true + false + false + false + + + @yearly + + + false + + + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/nextBuildNumber b/work/jobs/grzsrctest-opennet-RC/nextBuildNumber new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/nextBuildNumber @@ -0,0 +1 @@ +4 diff --git a/work/jobs/grzsrctest-opennet-RC/scm-polling.log b/work/jobs/grzsrctest-opennet-RC/scm-polling.log new file mode 100644 index 0000000..89f0fc3 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/scm-polling.log @@ -0,0 +1,6 @@ +Started on 13.12.2012 10:52:56 +Received SCM poll call on for grzsrctest-opennet-RC on 13.12.2012 10:52:58 +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 liegt in Revision 93 vor + (Änderungen zu Revision 92) +Done. Took 1,9 Sekunden +Changes found diff --git a/work/jobs/grzsrctest-opennet-RC/svnexternals.txt b/work/jobs/grzsrctest-opennet-RC/svnexternals.txt new file mode 100644 index 0000000..2b0ec83 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/svnexternals.txt @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops new file mode 100644 index 0000000..c7388bc --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops @@ -0,0 +1,11 @@ +K 25 +svn:wc:ra_dav:version-url +V 50 +/testrepo/!svn/ver/93/opennet/branches/Rel_2012_05 +END +test.txt +K 25 +svn:wc:ra_dav:version-url +V 59 +/testrepo/!svn/ver/93/opennet/branches/Rel_2012_05/test.txt +END diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base new file mode 100644 index 0000000..0aaeed6 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base @@ -0,0 +1,10 @@ +K 10 +svn:ignore +V 9 +.project + +K 13 +svn:mergeinfo +V 32 +/opennet/branches/Rel_2012_04:48 +END diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries new file mode 100644 index 0000000..da9a912 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries @@ -0,0 +1,39 @@ +8 + +dir +93 +http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 +http://grzsrctest01.infonova.at/testrepo + + + +2012-12-13T09:52:56.512605Z +93 + +has-props + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +6e6fdb35-1c1a-48e4-a78d-5e85b172976f + +test.txt +file + + + + +2012-12-13T09:53:16.972000Z +6520dd0805fe51b8f8c576097376a813 +2012-12-13T09:52:56.512605Z +93 + diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format @@ -0,0 +1 @@ +8 diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base new file mode 100644 index 0000000..46f9745 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base @@ -0,0 +1,9 @@ +Hallo haha 2 +sdlfdj +sdf +asdfasdf +asdf +asdf +sdf +foo +woohoo \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/test.txt b/work/jobs/grzsrctest-opennet-RC/workspace/test.txt new file mode 100644 index 0000000..46f9745 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-RC/workspace/test.txt @@ -0,0 +1,9 @@ +Hallo haha 2 +sdlfdj +sdf +asdfasdf +asdf +asdf +sdf +foo +woohoo \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml new file mode 100644 index 0000000..c8ec04f --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml @@ -0,0 +1,52 @@ + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/trunk + 89 + + + + + + + + + + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/trunk + 89 + + + + + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/trunk + 89 + + + + + 1 + SUCCESS + 1822 + windows-1252 + false + + C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-trunk\workspace + 1.405 + + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml new file mode 100644 index 0000000..a891191 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log new file mode 100644 index 0000000..a2733dd --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log @@ -0,0 +1,8 @@ +Build wurde durch eine SCM-Änderung ausgelöst. +Checking out a fresh workspace because there's no workspace at C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-trunk\workspace +Cleaning local Directory . +Checking out http://grzsrctest01.infonova.at/testrepo/opennet/trunk at revision 89 +A test.txt + U . +At revision 89 +Finished: SUCCESS diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log new file mode 100644 index 0000000..35252a3 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log @@ -0,0 +1,4 @@ +Started on 12.12.2012 17:04:53 +Es existiert kein Build. Starte neuen Build. +Done. Took 1 ms +Changes found diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt new file mode 100644 index 0000000..375253d --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt @@ -0,0 +1 @@ +http://grzsrctest01.infonova.at/testrepo/opennet/trunk/89 diff --git a/work/jobs/grzsrctest-opennet-trunk/config.xml b/work/jobs/grzsrctest-opennet-trunk/config.xml new file mode 100644 index 0000000..e585794 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/config.xml @@ -0,0 +1,34 @@ + + + + + false + + + + + http://grzsrctest01.infonova.at/testrepo/opennet/trunk + . + + + + + + + + + + true + false + false + false + + + @yearly + + + false + + + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber b/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber @@ -0,0 +1 @@ +2 diff --git a/work/jobs/grzsrctest-opennet-trunk/scm-polling.log b/work/jobs/grzsrctest-opennet-trunk/scm-polling.log new file mode 100644 index 0000000..9fa9c66 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/scm-polling.log @@ -0,0 +1,4 @@ +Started on 12.12.2012 17:04:55 +Es existiert kein Build. Starte neuen Build. +Done. Took 0 ms +No changes diff --git a/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt b/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt new file mode 100644 index 0000000..2b0ec83 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops new file mode 100644 index 0000000..5198d20 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops @@ -0,0 +1,11 @@ +K 25 +svn:wc:ra_dav:version-url +V 35 +/testrepo/!svn/ver/89/opennet/trunk +END +test.txt +K 25 +svn:wc:ra_dav:version-url +V 44 +/testrepo/!svn/ver/89/opennet/trunk/test.txt +END diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base new file mode 100644 index 0000000..0aaeed6 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base @@ -0,0 +1,10 @@ +K 10 +svn:ignore +V 9 +.project + +K 13 +svn:mergeinfo +V 32 +/opennet/branches/Rel_2012_04:48 +END diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries new file mode 100644 index 0000000..33d33d8 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries @@ -0,0 +1,39 @@ +8 + +dir +89 +http://grzsrctest01.infonova.at/testrepo/opennet/trunk +http://grzsrctest01.infonova.at/testrepo + + + +2012-12-12T16:04:39.647921Z +89 + +has-props + +svn:special svn:externals svn:needs-lock + + + + + + + + + + + +6e6fdb35-1c1a-48e4-a78d-5e85b172976f + +test.txt +file + + + + +2012-12-12T16:04:59.501000Z +e29311f6f1bf1af907f9ef9f44b8328b +2012-12-12T16:04:39.647921Z +89 + diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format @@ -0,0 +1 @@ +8 diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base new file mode 100644 index 0000000..4bcfe98 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base @@ -0,0 +1 @@ +d diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt b/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt new file mode 100644 index 0000000..4bcfe98 --- /dev/null +++ b/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt @@ -0,0 +1 @@ +d diff --git a/work/nodeMonitors.xml b/work/nodeMonitors.xml new file mode 100644 index 0000000..572accb --- /dev/null +++ b/work/nodeMonitors.xml @@ -0,0 +1,23 @@ + + + + false + + + false + 1GB + + + false + 1GB + + + false + + + false + + + false + + \ No newline at end of file diff --git a/work/plugins/cvs.hpi b/work/plugins/cvs.hpi new file mode 100644 index 0000000..450a7e0 --- /dev/null +++ b/work/plugins/cvs.hpi Binary files differ diff --git a/work/plugins/cvs/.timestamp b/work/plugins/cvs/.timestamp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/cvs/.timestamp diff --git a/work/plugins/cvs/META-INF/MANIFEST.MF b/work/plugins/cvs/META-INF/MANIFEST.MF new file mode 100644 index 0000000..1f52bca --- /dev/null +++ b/work/plugins/cvs/META-INF/MANIFEST.MF @@ -0,0 +1,15 @@ +Manifest-Version: 1.0 +Archiver-Version: Plexus Archiver +Created-By: Apache Maven +Built-By: aruna +Build-Jdk: 1.6.0_20 +Extension-Name: cvs +Implementation-Title: cvs +Implementation-Version: 1.2 +Short-Name: cvs +Long-Name: Hudson CVS Plug-in +Url: http://wiki.hudson-ci.org/display/HUDSON/CVS+Plugin +Plugin-Version: 1.2 +Hudson-Version: 1.338 +Plugin-Developers: Kohsuke Kawaguchi:kohsuke: + diff --git a/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties new file mode 100644 index 0000000..1ad095e --- /dev/null +++ b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Tue Jul 20 16:34:19 PDT 2010 +version=1.2 +groupId=org.jvnet.hudson.plugins +artifactId=cvs diff --git a/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml new file mode 100644 index 0000000..e7b250f --- /dev/null +++ b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml @@ -0,0 +1,27 @@ + + 4.0.0 + + org.jvnet.hudson.plugins + plugin + 1.338 + ../pom.xml + + cvs + Hudson CVS Plug-in + hpi + 1.2 + http://wiki.hudson-ci.org/display/HUDSON/CVS+Plugin + + + + kohsuke + Kohsuke Kawaguchi + + + + + scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/cvs-1.2 + scm:svn:https://svn.dev.java.net/svn/hudson/tags/cvs-1.2 + https://hudson.dev.java.net/source/browse/hudson/tags/cvs-1.2 + + diff --git a/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension new file mode 100644 index 0000000..f5ced1b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans new file mode 100644 index 0000000..c982bae --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans @@ -0,0 +1,4 @@ +hudson.scm.CVSChangeLogSet.CVSChangeLog +hudson.scm.CVSChangeLogSet.File +hudson.scm.CVSSCM +hudson.scm.CVSSCM.TagAction diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class new file mode 100644 index 0000000..c651146 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class new file mode 100644 index 0000000..120045b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class new file mode 100644 index 0000000..bf78b36 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class new file mode 100644 index 0000000..188f1b2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class new file mode 100644 index 0000000..613dfd6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class new file mode 100644 index 0000000..3c68530 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class new file mode 100644 index 0000000..f83a8c5 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class new file mode 100644 index 0000000..08df993 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class new file mode 100644 index 0000000..e6b307c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class new file mode 100644 index 0000000..f15ef49 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class new file mode 100644 index 0000000..0919b0a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class new file mode 100644 index 0000000..d39e0ad --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class new file mode 100644 index 0000000..d4abcb8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class new file mode 100644 index 0000000..07b5620 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class new file mode 100644 index 0000000..d5ca3dc --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc new file mode 100644 index 0000000..2493a52 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc @@ -0,0 +1 @@ +#Tue Jul 20 16:33:31 PDT 2010 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc new file mode 100644 index 0000000..c0b5209 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc @@ -0,0 +1,3 @@ +#Tue Jul 20 16:33:31 PDT 2010 +getFullName()=\ Gets the full path name in the CVS repository,\n like "/module/foo/bar/zot.c"\n\n

\n Unlike {@link \#getName()}, this method returns\n a full name from the root of the CVS repository.\n +getName()=\ Gets the path name in the CVS repository, like\n "foo/bar/zot.c"\n\n

\n The path is relative to the workspace root.\n diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly new file mode 100644 index 0000000..f273ec2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly @@ -0,0 +1,47 @@ + + + + + Displays the CVS change log digest. + + If specified, this is prepended in links to change details. + + + + + + ${%No changes.} + + + ${%Changes} +

    + +
  1. ${cs.msgAnnotated} (${%detail}) +
  2. +
    +
+ + + diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties new file mode 100644 index 0000000..a1f799e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties @@ -0,0 +1,25 @@ +# 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. + +No\ changes.=Keine Änderungen. +Changes=Änderungen +detail=Details diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties new file mode 100644 index 0000000..2eb42be --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties @@ -0,0 +1,25 @@ +# 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. + +Changes=cambios +No\ changes.=Sin cambios. +detail=Detalles diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties new file mode 100644 index 0000000..8b26b19 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties @@ -0,0 +1,25 @@ +# 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. + +No\ changes.=Aucun changement. +Changes=Changements +detail=détails diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties new file mode 100644 index 0000000..72bb7a9 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman +# +# 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. + +Changes=\u5909\u66f4 +detail=\u8a73\u7d30 +No\ changes.=\u5909\u66f4\u70b9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties new file mode 100644 index 0000000..b170280 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=\uBCC0\uACBD \uC5C6\uC74C. diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties new file mode 100644 index 0000000..20b868f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=Ingen forandringer. diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties new file mode 100644 index 0000000..c381f6a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties @@ -0,0 +1,25 @@ +# 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. + +Changes=Wijzigingen +No\ changes.=Geen wijzigingen +detail=details diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties new file mode 100644 index 0000000..28a8e6d --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi +# +# 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. + +No\ changes.= Sem mudan\u00E7as. diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties new file mode 100644 index 0000000..b518bd2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=\u041d\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439. diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties new file mode 100644 index 0000000..40ac076 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=Herhangi\ bir\ de\u011fi\u015fiklik\ yok. diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly new file mode 100644 index 0000000..21e0efa --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly @@ -0,0 +1,67 @@ + + + + +

${%Summary}

+
    + +
  1. +
    +
+ + + + + + + + + + + + + + + + + +
+ +
+ ${cs.author}:
+ ${cs.msgAnnotated} + + + + (${browser.descriptor.displayName}) + +
+
+ ${f.revision} + + ${f.name}
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties new file mode 100644 index 0000000..53437f2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=Zusammenfassung diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties new file mode 100644 index 0000000..d514d23 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=Resumen diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties new file mode 100644 index 0000000..4eb0316 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=Résumé diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties new file mode 100644 index 0000000..1284097 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +Summary=\u8981\u7d04 \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties new file mode 100644 index 0000000..f018a03 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=\uC694\uC57D diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties new file mode 100644 index 0000000..194886c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=Samenvatting diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties new file mode 100644 index 0000000..6637391 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi +# +# 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. + +Summary=Sum\u00E1rio diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties new file mode 100644 index 0000000..3cb4f00 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=\u0421\u0432\u043e\u0434\u043a\u0430 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties new file mode 100644 index 0000000..2fabc1e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Summary=\u00d6zet diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class new file mode 100644 index 0000000..151032f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class new file mode 100644 index 0000000..9ffc36e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class new file mode 100644 index 0000000..f831675 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class new file mode 100644 index 0000000..ff02601 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class new file mode 100644 index 0000000..99fa339 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class new file mode 100644 index 0000000..a6773c8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class new file mode 100644 index 0000000..454922b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class new file mode 100644 index 0000000..405a929 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class new file mode 100644 index 0000000..6dc22b5 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class new file mode 100644 index 0000000..9f8b0fa --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class new file mode 100644 index 0000000..2fee6f8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class new file mode 100644 index 0000000..043ae5a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class new file mode 100644 index 0000000..925597f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class new file mode 100644 index 0000000..d9523bc --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class new file mode 100644 index 0000000..4c0b8ba --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc new file mode 100644 index 0000000..06828f7 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc @@ -0,0 +1,3 @@ +#Tue Jul 20 16:33:31 PDT 2010 +isTag()=\ Returns true if {@link \#getBranch()} represents a tag.\n

\n This causes Hudson to stop using "-D" option while check out and update.\n +getBranch()=\ Branch to build. Null to indicate the trunk.\n diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler new file mode 100644 index 0000000..dddb9b7 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler @@ -0,0 +1,2 @@ +#Tue Jul 20 16:33:31 PDT 2010 +constructor=cvsRoot,allModules,branch,cvsRsh,canUseUpdate,legacy,isTag,excludedRegions diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly new file mode 100644 index 0000000..914503b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly @@ -0,0 +1,49 @@ + + + + + + +

Enter CVS password

+

+ CVS stores passwords for :pserver CVSROOTs, per user. This page lets you add/replace + password to those entries. +

+ + + + + + + + + + + + + + diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/versionCheckError.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/versionCheckError.jelly new file mode 100644 index 0000000..c46abbd --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/versionCheckError.jelly @@ -0,0 +1,37 @@ + + + + + + + +

Failed to launch ${it.cvsExe}

+

+ ${h.getWin32ErrorMessage(error)} +

+

+
+
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc new file mode 100644 index 0000000..2493a52 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc @@ -0,0 +1 @@ +#Tue Jul 20 16:33:31 PDT 2010 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html new file mode 100644 index 0000000..d71762c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html @@ -0,0 +1,5 @@ +
+ Instead of tagging just build, tag all the builds of the upstream projects that + this build depends on. This allows you to snapshot the exact versions of + all the builds involved. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html new file mode 100644 index 0000000..c171c2c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html @@ -0,0 +1,6 @@ +
+ Statt nur diesen Build zu kennzeichnnen ("taggen"), werden alle Builds der + vorgelagerten Projekte gekennzeichnet, auf denen dieser Build basiert. + Dies erlaubt Ihnen, die exakten Version aller Builds festzuhalten, die zu + diesem Build beigetragen haben. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html new file mode 100644 index 0000000..5d60d39 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html @@ -0,0 +1,6 @@ +
+ Plutôt que de ne tagguer que ce build, taggue tous les builds des + projets ascendants dont ce build dépend. + Ceci vous permet de marquer les versions exactes de tous les builds + impliqués dans celui-ci. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html new file mode 100644 index 0000000..0159ee1 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html @@ -0,0 +1,4 @@ +
+ ã?“ã?®ãƒ“ルドã? ã?‘タグ付ã?‘ã?™ã‚‹ä»£ã‚?ã‚Šã?«ã€?ã?“ã?®ãƒ“ルドã?Œä¾?å­˜ã?™ã‚‹ä¸Šæµ?プロジェクトã?®å…¨ã?¦ã?®ãƒ“ルドをタグ付ã?‘ã?—ã?¾ã?™ã€‚ + ã?“ã?†ã?™ã‚‹ã?“ã?¨ã?§ã€?関連ã?™ã‚‹å…¨ãƒ“ルドã?®ã€?æ­£ã?—ã?„ãƒ?ージョンã?®ã‚¹ãƒŠãƒƒãƒ—ショットをå?–å¾—ã?§ã??ã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html new file mode 100644 index 0000000..2f5d3ab --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html @@ -0,0 +1,4 @@ +
+Label alle bouwpogingen van de bovenliggende projecten, waar deze bouwpoging op steunt. +Dit laat u toe om de relatie met alle gerefereerde bouwpogingen vast te leggen. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html new file mode 100644 index 0000000..3ec3166 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html @@ -0,0 +1,5 @@ +
+ Ao invés de marcar apenas a construção, marque todas as construções dos projetos pai que + esta construção depende. Isto permite que você pegue uma cópia das versões exatas de + todas as construções envolvidas. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html new file mode 100644 index 0000000..440b012 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html @@ -0,0 +1,5 @@ +
+ ВмеÑ?то уÑ?тановки метки проÑ?то на Ñ?борку, маркирует Ñ?борки вÑ?ех воÑ?ходÑ?щих (upstream) + проектов от которых она завиÑ?ит. Это позволит вам делать Ñ?рез точной верÑ?ии репозиториÑ? + вÑ?ех вовлеченных в Ñ?борку модулей. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html new file mode 100644 index 0000000..949b320 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html @@ -0,0 +1,5 @@ +
+ Sadece mevcut yapılandırmayı tag'lemek yerine, bu yapılandırmanın bağlı bulunduğu + diğer upstream projelerin tüm yapılandırmalarını tag'leyin. Böylece dahil olan + tüm yapılandırmaların kesin versiyonlarının tutulduğu bir görüntüyüe sahip olabilirsiniz. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly new file mode 100644 index 0000000..6450d25 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly @@ -0,0 +1,120 @@ + + + + + + + +
+ + + + + ${%Choose the CVS tag name for this build}: + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + +

Build #${it.build.number}

+ + + + +

+ ${%This build is already tagged as} + + + ${t} + +

+ + +

+ +

+ + +
+ + + +

${%Upstream tags}

+ + + + + + + + + + + +
${%Build}${%Tag}
+ ${up.key.name} + + + + ${tag?:'Not tagged'} +
+
+
+ + + +
+
+
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties new file mode 100644 index 0000000..ca32814 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties @@ -0,0 +1,28 @@ +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Wählen Sie das CVS-Tag für diesen Build. +Tag=Tag +This\ build\ is\ already\ tagged\ as=Dieser Build ist bereits markiert ("getaggt") als +Create\ another\ tag=Neue Markierung (Tag) anlegen +Upstream\ tags=Vorgelagerte Tags +Build=Build diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties new file mode 100644 index 0000000..502c306 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties @@ -0,0 +1,28 @@ +# 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. + +Upstream\ tags=Tags padres +Tag=Etiqueta +This\ build\ is\ already\ tagged\ as=Esta ejecución ya se ha etiquetado como +Build=Ejecución +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Elije una etiqueta CVS para esta ejecución +Create\ another\ tag=Crear otra etiqueta diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties new file mode 100644 index 0000000..4f5215f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties @@ -0,0 +1,28 @@ +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Choisissez le tag CVS pour ce build +Tag=Appliquer le Tag +This\ build\ is\ already\ tagged\ as=Ce build est déjà taggué par +Create\ another\ tag=Créer un autre tag +Upstream\ tags=Tags amont +Build= diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties new file mode 100644 index 0000000..ff3b189 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build= +Tag=\u30bf\u30b0 +This\ build\ is\ already\ tagged\ as= +Create\ another\ tag= +Upstream\ tags= +Build=\u30d3\u30eb\u30c9 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties new file mode 100644 index 0000000..100da9b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties @@ -0,0 +1,28 @@ +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Kies het te gebruiken CVS label voor deze bouwpoging +Tag=Label +This\ build\ is\ already\ tagged\ as=Deze bouwpoging werd al gelabeld. +Create\ another\ tag=Cre\u00EBer een ander label +Upstream\ tags=Bovenliggende labels +Build=Bouwpoging diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties new file mode 100644 index 0000000..70adec4 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties @@ -0,0 +1,28 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi +# +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Escolha o nome da marca\u00E7\u00E3o CVS para esta constru\u00E7\u00E3o +Tag=Marca\u00E7\u00E3o +This\ build\ is\ already\ tagged\ as=Esta constru\u00E7\u00E3o j\u00E1 est\u00E1 marcada como +Create\ another\ tag=Criar uma outra marca\u00E7\u00E3o +Upstream\ tags=Marca\u00E7\u00F5es pai +Build=Constru\u00E7\u00E3o diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties new file mode 100644 index 0000000..0029b55 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties @@ -0,0 +1,28 @@ +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u043c\u044f \u043c\u0435\u0442\u043a\u0438 \u0434\u043b\u044f \u044d\u0442\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438 +Tag=\u041c\u0435\u0442\u043a\u0430 +This\ build\ is\ already\ tagged\ as=\u042d\u0442\u0430 \u0441\u0431\u043e\u0440\u043a\u0430 \u0443\u0436\u0435 \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u0430 \u043a\u0430\u043a +Create\ another\ tag=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043c\u0435\u0442\u043a\u0443 +Upstream\ tags=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043c\u0435\u0442\u043a\u0438 +Build=\u0421\u0431\u043e\u0440\u043a\u0430 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties new file mode 100644 index 0000000..2cd3504 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties @@ -0,0 +1,28 @@ +# 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. + +Choose\ the\ CVS\ tag\ name\ for\ this\ build=Bu yap\u0131land\u0131rma i\u00e7in tag ismi se\u00e7iniz +Tag= +This\ build\ is\ already\ tagged\ as=Bu yap\u0131land\u0131rma zaten \u015fu \u015fekilde tag''lendi, +Create\ another\ tag=Ba\u015fka bir tag olu\u015ftur +Upstream\ tags=Upstream tag''leri +Build=Yap\u0131land\u0131rma diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly new file mode 100644 index 0000000..fa584e6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly @@ -0,0 +1,55 @@ + + + + + + + + + + + +
+ + +
+
+ + + + + + + ${%legacyModeDescription} + + + + + + + + + +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties new file mode 100644 index 0000000..94d0cd4 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties @@ -0,0 +1,24 @@ +# 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. + +Modules=Module(s) +legacyModeDescription=(run CVS in a way compatible with older versions of Hudson <1.21) \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties new file mode 100644 index 0000000..5164c0a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties @@ -0,0 +1,29 @@ +# 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. + +Modules=Module +Branch=Zweig +This\ is\ a\ tag,\ not\ a\ branch=Dies ist ein Tag, kein Zweig (branch). +Legacy\ mode=Legacy-Modus +Use\ update=Update-Kommando verwenden +legacyModeDescription=(Führt CVS in einem Modus aus, der mit älteren Hudson-Versionen <1.21 kompatibel ist.) +Excluded\ Regions=Ausgeschlossene Bereiche diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties new file mode 100644 index 0000000..6d7b1a1 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties @@ -0,0 +1,31 @@ +# 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. + +# Module(s) +Modules=Módulo(s) +Excluded\ Regions=Regiones excluidas +Use\ update=Utilizar actualización 'update' +Legacy\ mode=Modo 'Legacy' +# (run CVS in a way compatible with older versions of Hudson <1.21) +legacyModeDescription=(Ejecutar CVS en modo compatible con viejas versiondes de Hudson <1.21) +Branch=Rama +This\ is\ a\ tag,\ not\ a\ branch=Esto es una etiqueta, no una rama diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties new file mode 100644 index 0000000..503928a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties @@ -0,0 +1,29 @@ +# 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. + +Modules= +Branch=Branche +This\ is\ a\ tag,\ not\ a\ branch=Ceci est un tag et non une branche +Legacy\ mode=Mode legacy +Use\ update=Utiliser update +legacyModeDescription=(exécute CVS de façon compatible avec les anciennes versions de Hudson <1.21) +Excluded\ Regions=Régions exclues diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties new file mode 100644 index 0000000..1673d14 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties @@ -0,0 +1,29 @@ +# 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. + +Modules=\u30E2\u30B8\u30E5\u30FC\u30EB +Branch=\u30D6\u30E9\u30F3\u30C1 +This\ is\ a\ tag,\ not\ a\ branch=\u3053\u308C\u306F\u30D6\u30E9\u30F3\u30C1\u3067\u306F\u306A\u304F\u3066\u30BF\u30B0 +Legacy\ mode=\u4E92\u63DB\u6027\u30E2\u30FC\u30C9 +Use\ update=cvs update\u3092\u5229\u7528 +legacyModeDescription=(1.21\u4EE5\u524D\u306EHudson\u3068\u4E92\u63DB\u6027\u306E\u3042\u308B\u52D5\u4F5C\u3092\u3057\u307E\u3059) +Excluded\ Regions=\u5BFE\u8C61\u5916\u3068\u3059\u308B\u7BC4\u56F2 \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties new file mode 100644 index 0000000..8b5e8dd --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties @@ -0,0 +1,27 @@ +# 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. + +Modules=Modules +Branch=Tak +This\ is\ a\ tag,\ not\ a\ branch=Dit is een label en geen vertakking. +Legacy\ mode="Legacy"-mode +Use\ update=Gebruik het "update"-commando diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties new file mode 100644 index 0000000..abec90f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties @@ -0,0 +1,27 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi +# +# 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. + +Modules=M\u00F3dulos +Branch= +This\ is\ a\ tag,\ not\ a\ branch=Isto \u00E9 uma tag, n\u00E3o um branch +Legacy\ mode=Modo legado +Use\ update=Usar atualiza\u00E7\u00E3o diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties new file mode 100644 index 0000000..91a77d1 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties @@ -0,0 +1,28 @@ +# 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. + +Modules=\u041c\u043e\u0434\u0443\u043b\u0438 +Branch=\u0412\u0435\u0442\u043a\u0438 +This\ is\ a\ tag,\ not\ a\ branch=\u042d\u0442\u043e \u0442\u044d\u0433, \u0430 \u043d\u0435 \u0432\u0435\u0442\u043a\u0430 +Legacy\ mode="\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439" \u0440\u0435\u0436\u0438\u043c +Use\ update=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 (update) +legacyModeDescription=(\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c CVS \u0432 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u043c \u0441\u043e \u0441\u0442\u0430\u0440\u044b\u043c\u0438 \u0432\u0435\u0440\u0441\u0438\u044f\u043c\u0438 Hudson (<1.21) \u0440\u0435\u0436\u0438\u043c\u043e\u043c) diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties new file mode 100644 index 0000000..3bb1386 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties @@ -0,0 +1,29 @@ +# 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. + +Modules=Mod\u00fcller +Branch= +This\ is\ a\ tag,\ not\ a\ branch=Bu bir (tag), (branch) de\u011fil +Legacy\ mode=Miras modu +Use\ update=G\u00fcncelleme \u00f6zelli\u011fini kullan +legacyModeDescription=(CVS'i Hudson'\u0131n 1.21 versiyonundan daha \u00f6nceki versiyonlar\u0131 ile uyumlu bir \u015fekilde \u00e7al\u0131st\u0131r) + diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly new file mode 100644 index 0000000..a33075c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties new file mode 100644 index 0000000..d21edea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=Überprüfe CVS Version +cvs\ executable=CVS Befehl +.cvspass\ file=.cvspass Datei +Disable\ CVS\ compression=Deaktiviere CVS Kompression diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties new file mode 100644 index 0000000..8c460f8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties @@ -0,0 +1,26 @@ +# 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. + +Disable\ CVS\ compression=Desactivar compresión CVS +cvs\ executable=ejecutable para "cvs" +Check\ CVS\ version=Comprobar la versión de CVS +.cvspass\ file=Fichero ".cvspass" diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties new file mode 100644 index 0000000..400a280 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=Vérifier la version de CVS +cvs\ executable=Exécutable cvs +.cvspass\ file=Fichier .cvspass +Disable\ CVS\ compression=Désactiver la compression CVS diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties new file mode 100644 index 0000000..11edb1f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=CVS\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u78ba\u8a8d +cvs\ executable=CVS\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb +.cvspass\ file=.cvspass\u30d5\u30a1\u30a4\u30eb +Disable\ CVS\ compression=CVS\u306e\u901a\u4fe1\u3092\u5727\u7e2e\u3057\u306a\u3044 diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties new file mode 100644 index 0000000..2a40ab9 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=Controleer CVS versie +cvs\ executable=cvs programma +.cvspass\ file=.cvspass bestand +Disable\ CVS\ compression=Schakel CVS-compressie uit diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties new file mode 100644 index 0000000..8df7bce --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi +# +# 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. + +Check\ CVS\ version=Verificar vers\u00E3o do CVS +cvs\ executable=execut\u00E1vel do cvs +.cvspass\ file=arquivo .cvspass +Disable\ CVS\ compression=Desabilitar compress\u00E3o CVS diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties new file mode 100644 index 0000000..c31176c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=\u041F\u0440\u043E\u0432\u0435\u0440\u044F\u0442\u044C \u0432\u0435\u0440\u0441\u0438\u044E CVS +cvs\ executable=\u0418\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u044b\u0439 \u0444\u0430\u0439\u043b CVS +.cvspass\ file=\u0424\u0430\u0439\u043b .cvspass +Disable\ CVS\ compression=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u0436\u0430\u0442\u0438\u0435 CVS diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties new file mode 100644 index 0000000..09c8feb --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties @@ -0,0 +1,26 @@ +# 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. + +Check\ CVS\ version=CVS versiyonunu kontrol et +cvs\ executable=\u00c7al\u0131\u015ft\u0131r\u0131labilir\ cvs\ dosyas\u0131 +.cvspass\ file=.cvspass dosyas\u0131 +Disable\ CVS\ compression=CVS\ s\u0131k\u0131\u015ft\u0131rmay\u0131\ devre\ d\u0131\u015f\u0131\ b\u0131rak diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html new file mode 100644 index 0000000..31f0f5e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html @@ -0,0 +1,7 @@ +
+ The CVS module name(s) in the given CVSROOT to check out. + Multiple modules can be specified by separating them by a whitespace. + + If your module name contains whitespace, you can escape by writing it as '\ '. + For example "foo\ bar zot" will specify two modules "foo bar" and "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html new file mode 100644 index 0000000..f7bcb07 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html @@ -0,0 +1,8 @@ +
+ CVS-Modulnamen im angegebenen CVSROOT, die ausgecheckt werden sollen. + Mehrere Modulnamen können - durch Leerzeichen getrennt - angegeben werden. + + Wenn Ihr Modulname ein Leerzeichen enthält, stellen Sie dem Leezeichen ein + '\' voran. Beispiel: Die Eingabe "foo\ bar zot" spezifiziert die zwei Module + "foo bar" und "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html new file mode 100644 index 0000000..5ad8517 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html @@ -0,0 +1,10 @@ +
+ Le(s) nom(s) de modules CVS dans le CVSROOT à récupérer. + De multiples modules peuvent être spécifiés en les séparant par un + espace. + + Si le nom de votre module contient des espaces, vous pouvez les + échapper avec '\ '. + Par exemple, "foo\ bar zot" fait référence à deux modules : "foo bar" + et "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html new file mode 100644 index 0000000..cce71d8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html @@ -0,0 +1,7 @@ +
+ ãƒ?ェックアウトã?™ã‚‹CVSROOTã?®CVSã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«å??ã?§ã?™ã€‚ + 複数ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã‚’指定ã?™ã‚‹ã?«ã?¯ã€?スペースã?§åŒºåˆ‡ã?£ã?¦æŒ‡å®šã?—ã?¾ã?™ã€‚ + + モジュールå??ã?Œã‚¹ãƒšãƒ¼ã‚¹ã‚’å?«ã‚€å ´å?ˆã€?'\ 'ã?®ã‚ˆã?†ã?«æ›¸ã??ã?“ã?¨ã?§ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—ã?§ã??ã?¾ã?™ã€‚ + 例ã?ˆã?°ã€?"foo\ bar zot"ã?¯ã€?"foo bar"ã?¨"zot"ã?®2ã?¤ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã‚’指定ã?—ã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html new file mode 100644 index 0000000..7fd84e4 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html @@ -0,0 +1,8 @@ +
+De naam van de CVS module(s) die vanuit de opgegeven CVSROOT opgehaald dienen te worden. + Meerdere modules kunnen, door spaties gescheiden, opgegeven te worden. + + Indien uw modulenaam spaties bevat, dan kunt u die vrijware door deze te beschermen met '\ '. + +Vb. "foo\ bar zot" refereert naar twee modules, nl. "foo bar" en "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html new file mode 100644 index 0000000..3eb96c9 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html @@ -0,0 +1,7 @@ +
+ O(s) nome(s) do(s) módulo(s) CVS no CVSROOT para fazer o check out. + Módulos múltiplos podem ser especificados separando-os por espaços em branco. + + Se seu nome de módulo contém espaço em branco, você pode escapar ele escrevendo-o assim '\ '. + Por exemplo "foo\ bar zot" especificará dois módulos "foo bar" e "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html new file mode 100644 index 0000000..65db358 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html @@ -0,0 +1,7 @@ +
+ ИмÑ? (имена) модулÑ?(ей) в заданной CVSROOT длÑ? checkout. Ð?еÑ?колько + модулей могут быть указаны Ñ? иÑ?пользованием пробела в качеÑ?тве разделителÑ?. + + ЕÑ?ли имÑ? вашего модулÑ? Ñ?одержит пробел, вы можете заÑ?Ñ?кейпить его Ñ? помощью + обратного Ñ?лÑ?ша: '\ '. Ð?апример, "foo\ bar zot" указывает на два модулÑ?: "foo bar" и "zot". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html new file mode 100644 index 0000000..ed990e3 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html @@ -0,0 +1,8 @@ +
+ Verilen CVSROOT içerisinden check-out edilecek CVS modül isimleridir. + Birden fazla modül boşluk karakteri ile ayrılarak belirtilebilir. + + Eğer modül isminizde hali hazırda boşluk karakteri var ise, '\ ' şeklinde yazarak + bu problemi çözebilirsiniz. Mesela, "foo\ bar zot" yazılırsa bu iki modülün, "foo bar" ve + "zot" modüllerinin kullanılacağı anlamına gelir. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html new file mode 100644 index 0000000..4c2e946 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html @@ -0,0 +1,10 @@ +
+ If set, Hudson will run CVS with -r to build a particular branch. + If left empty, Hudson will build the trunk. + +

+ Normally, Hudson runs cvs check-out and update with the -D date option + to make sure it gets a coherent snapshot of the repository and better build + reproducibility, but this interferes if the branch name specified here is actually + a tag name. Telling Hudson that the name is a tag would fix this problem. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html new file mode 100644 index 0000000..aec5291 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html @@ -0,0 +1,11 @@ +
+ Wenn gesetzt, führt Hudson CVS mit der Option -r aus, um einen + bestimmten Zweig (branch) zu bauen. Wenn leer, wird Hudson die Hauptlinie (trunk) + bauen. +

+ Im Regelfall startet Hudson CVS check-out und update mit der Option -D date, + um kohärente Schnappschüsse des Repositories und damit reproduzierbare Builds sicherzustellen. + Dies kann allerdings problematisch werden, falls der hier angegebene Name des Zweigs + der Name eines Tags ist. Hudson mitzuteilen, dass es sich um einen Tag-Namen handelt, + würde das Problem lösen. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html new file mode 100644 index 0000000..11afe45 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html @@ -0,0 +1,14 @@ +
+ Si cette option est positionnée, Hudson lancera CVS avec -r pour + construire une branche particulière. + Si cette option est laissée vide, Hudson construira la branche principale + (trunk). + +

+ Normalement, Hudson lance cvs check-out et update avec l'option + -D date pour être sûr de récupérer une image cohérente du + repository et assurer une meilleure reproductibilité. Cela peut causer + des problèmes sur le nom de la branche spécifié ici est en réalité le + nom d'un tag. Indiquer à Hudson que ce nom est un tag corrigerait ce + problème. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html new file mode 100644 index 0000000..0d70ecb --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html @@ -0,0 +1,10 @@ +
+ 設定�る��特定�ブラン�をビルド�る����Hudson�-rオプションを使用��cvsを起動���。 + 空欄�����る�トランクをビルド���。 + +

+ 通常Hudsonã?¯ã€?一貫性ã?®ã?‚るリãƒ?ジトリã?®ã‚¹ãƒŠãƒƒãƒ—ショットã?®å?–å¾—ã?¨å†?ç?¾æ€§ã?®ã?‚るビルドを確実ã?«ã?™ã‚‹ã?Ÿã‚?ã?«ã€? + '-D 日付' オプション付ã??ã?§ã€?CVSã?®ãƒ?ェックアウトã€?アップデートを行ã?„ã?¾ã?™ã€‚ + ã?—ã?‹ã?—ã€?ã?“ã?“ã?«æŒ‡å®šã?—ã?Ÿãƒ–ランãƒ?å??ã?Œå®Ÿéš›ã?¯ã‚¿ã‚°å??ã?®å ´å?ˆã€?ä¸?å…·å?ˆã?Œç™ºç”Ÿã?—ã?¦ã?—ã?¾ã?„ã?¾ã?™ã€‚ + Hudsonã?«ã?“ã?®å??å‰?ã?Œã‚¿ã‚°ã?§ã?‚ã‚‹ã?“ã?¨ã‚’明示ã?™ã‚‹ã?¨ã€?ã?“ã?®å•?題を解決ã?§ã??ã?¾ã?™ã€‚ +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html new file mode 100644 index 0000000..31544fd --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html @@ -0,0 +1,6 @@ +
Indien gedefinieerd, zal Hudson CVS met -r aanroepen teneinde de gespecifieerde broncodetak (branch) te gebuiken. +Indien u dit veld leeg laat, zal Hudson de stam (trunk) van uw versieboom gebruiken. + +

+ Normaal gebruikt Hudson de -D date optie bij het uitvoeren van een cvs bijwerk- (update) of ophaal- (checkout) opdracht, teneinde een coherente snapshot van de repositorie te verkrijgen. Wat op zich resulteert in beter reproduceerbare bouwpogingen. Dit kan echter problemen opleveren indien de opgegeven tak feitelijk een label (tag) is. Aan Hudson kenbaar maken dat u met een label werkt, zal deze problemen oplossen. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html new file mode 100644 index 0000000..53e7a0c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html @@ -0,0 +1,10 @@ +
+ Se informado, Hudson executará o CVS com -r para construir um branch específico. + Se deixado em branco, Hudson construirá o trunk. + +

+ Normalmente, Hudson executa cvs check-out e update com a opção -D data + para ter certeza de obter uma cópia coerente do repositório e uma melhor reprodução + da construção, mas isto interfere se o nome do branch especificado aqui for na verdade + um nome de marcação. Dizendo para o Hudson que o nome é uma marcação resolverá este problema. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html new file mode 100644 index 0000000..6d4bfa6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html @@ -0,0 +1,11 @@ +
+ ЕÑ?ли уÑ?тановлено, то Hudson будет запуÑ?кать CVS Ñ? ключом -r длÑ? Ñ?борки + указанной ветви. Иначе будет оÑ?ущеÑ?твлÑ?Ñ‚ÑŒÑ?Ñ? Ñ?борка из Ñ?реза оÑ?новной ветви кода. + +

+ Обычно Hudson запуÑ?кает cvs checkout и update Ñ? ключом -D date, чтобы быть + уверенным в получении когерентного Ñ?реза репозиториÑ? и лучшей воÑ?производимоÑ?ти, + но Ñ?то поведение вызовет конфликт, еÑ?ли имÑ? ветви, указанное здеÑ?ÑŒ, на Ñ?амом деле + Ñ?влÑ?етÑ?Ñ? именем метки в репозитории (tag). Указав Hudson, что Ñ?то имÑ? Ñ?влÑ?етÑ?Ñ? + именем метки, вы избавитеÑ?ÑŒ от Ñ?той проблемы. +

diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html new file mode 100644 index 0000000..92a6f9e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html @@ -0,0 +1,10 @@ +
+ Bu seçenek, Hudson'ın belli bir branch üzerinde yapılandırma yürütebilmesi için CVS'i + -r opsiyonu ile çalıştırmasını sağlar. Eğer boş bırakılırsa, Hudson trunk'ı yapılandırır. + +

+ Normalde, Hudson cvs check-out ve update işlemlerini -D date opsiyonu ile çalıştırır. + Bunun sebebi ise repository'nin uygun bir görüntüsünün alındığına emin olunup, yapılandırmayı tekrarlanabilir + hale getirebilmeyi kolaylaştırmaktır. Fakat, belirtilen branch adı, aynı zamanda bir tag adı ise bu işleri + karıştırabilir. Bu da, Hudson'a verilen ismin bir tag ismi olduğu belirtilerek çözülebilir. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html new file mode 100644 index 0000000..9a3bfbb --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html @@ -0,0 +1,6 @@ +
+ If checked, Hudson will use 'cvs update' whenever possible for builds. + This makes a build faster. But this also causes the artifacts from + the previous build to remain in the file system when a new build starts, + making it not a true clean build. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html new file mode 100644 index 0000000..cf6fe71 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html @@ -0,0 +1,6 @@ +
+ Ist diese Option angewählt, so verwendet Hudson wann immer möglich 'cvs update' + während eines Builds. Dies bewirkt außerdem, dass Artefakte von vorhergehenden + Builds im Dateisystem verbleiben und nachfolgende Builds daher nicht vollständig + von Grund auf neu gebaut werden. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html new file mode 100644 index 0000000..99e8566 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html @@ -0,0 +1,7 @@ +
+ Si cette option est cochée, Hudson utiliser 'cvs update' à chaque fois + que c'est possible pour les builds. + Cette option accélère notablement les builds. Par contre, les artefacts + des builds précédents sont conservés quand un build commence; le build + n'est donc pas un vrai build propre partant de zéro. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html new file mode 100644 index 0000000..0b5bf66 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html @@ -0,0 +1,5 @@ +
+ ビルドã?Œå?¯èƒ½ã?ªæ™‚ã?¯ã?„ã?¤ã?§ã‚‚ã€?'cvs update'を使用ã?—ã?¾ã?™ã€‚ + ビルドã?Œé€Ÿã??ã?ªã‚Šã?¾ã?™ã?Œã€?æ–°ã?—ã?„ビルドã?Œå§‹ã?¾ã?£ã?Ÿã?¨ã??ã€? + å‰?回ã?®ãƒ“ルドã?®æˆ?果物ã?Œãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ã?«æ®‹ã?£ã?Ÿã?¾ã?¾ã?«ã?ªã?£ã?¦ã?—ã?¾ã?„ã€?本当ã?®æ„?味ã?§ã?®ã‚¯ãƒªãƒ¼ãƒ³ãƒ“ルドã?¨ã?¯è¨€ã?ˆã?ªã??ã?ªã‚Šã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html new file mode 100644 index 0000000..325f89c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html @@ -0,0 +1,4 @@ +
+ Indien aangevinkt, zal Hudson, waar mogelijk, 'cvs update' gebruiken voor uw bouwpoging. +Dit maakt een bouwpoging sneller. Dit zorgt er echter ook voor dat artefacten van een vorige bouwpoging niet opgeschoond worden. Op zich is uw bouwpoging dan ook geen echt propere bouwpoging meer. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html new file mode 100644 index 0000000..4e7affe --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html @@ -0,0 +1,6 @@ +
+ Se marcado, Hudson usará 'cvs update' sempre que possível para as construções. + Isto torna uma construção mais rápida. Mas isto também faz com que os artefatos + da construção anterior permaneçam no sistema de arquivos quando a nova construção iniciar, + tornando-a uma construção não limpa de verdade. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html new file mode 100644 index 0000000..8c2b9c7 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html @@ -0,0 +1,6 @@ +
+ ЕÑ?ли отмечено, Hudson будет иÑ?пользовать 'cvs update' везде где Ñ?то возможно. + Это Ñ?делает Ñ?борку быÑ?трее. Ð?о Ñ?то также значит что артефакты, поÑ?вившиеÑ?Ñ? при + выполнении предыдущей Ñ?борки, оÑ?танутÑ?Ñ? в Ñ?борочной директории и Ñ?борка не + будет по-наÑ?тоÑ?щему "чиÑ?той". +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html new file mode 100644 index 0000000..9b9d009 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html @@ -0,0 +1,5 @@ +
+ Seçilirse, Hudson yapılandırmalar için, mümkün oldukça 'cvs update' komutunu kullanacaktır. + Yapılandırmaları hızlandırmasına rağmen, önceki başlatıldığında, önceki yapılandırmadan + kalan artefaktlar saklandığı için, tam anlamıyla temiz bir yapılandırma olmasını engeller. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html new file mode 100644 index 0000000..3ca60ee --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html @@ -0,0 +1,5 @@ +
+ Normally you should just leave this field empty and let Hudson pick up the right cvs. + If your cvs binary exists outside your PATH, however, specify the absolute + path to the cvs executable. If you just specify "cvs", it will find cvs from PATH. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html new file mode 100644 index 0000000..c123b14 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html @@ -0,0 +1,7 @@ +
+ Im Regelfall sollten Sie dieses Feld leerlassen und Hudson die richtige CVS-Installation + wählen lassen. Falls Ihre cvs Kommandozeilenanwendung nicht über die PATH + Umgebungsvariable gefunden werden kann, geben Sie den absoluten Pfad zur cvs + Kommandozeilenanwendung an. Wenn Sie nur "cvs" angeben, wird Hudson cvs über die PATH + Variable finden. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html new file mode 100644 index 0000000..0ba8a93 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html @@ -0,0 +1,7 @@ +
+ En général, ce champ peut rester vide pour laisser Hudson + choisir le bon cvs. + Néanmoins, si votre binaire cvs est placé hors de votre + PATH, spécifiez le chemin absolu vers l'exécutable cvs. + Si vous indiquez juste "cvs", Hudson le trouvera à l'aide du PATH. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ja.html new file mode 100644 index 0000000..c370441 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ja.html @@ -0,0 +1,5 @@ +
+ 通常ã?“ã?®é …ç›®ã?¯ç©ºæ¬„ã?«ã?—ã?¦ã€?æ­£ã?—ã?„cvsã‚’Hudsonã?«å?–å¾—ã?•ã?›ã‚‹ã?¹ã??ã?§ã?™ã€‚ + ã‚‚ã?—cvsã?®å®Ÿè¡Œå½¢å¼?ã?ŒPATHã?«ã?ªã?‘ã‚Œã?°ã€? cvsã?®å®Ÿè¡Œå½¢å¼?ã?®çµ¶å¯¾ãƒ‘スを指定ã?—ã?¦ã??ã? ã?•ã?„。 + "cvs"ã?¨ã? ã?‘指定ã?—ã?Ÿå ´å?ˆã€?PATHã?‹ã‚‰cvsを探ã?—ã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html new file mode 100644 index 0000000..cf8f535 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html @@ -0,0 +1,5 @@ +
+Normaal dient u dit veld leeg te laten. Hudson pikt dan zelf het juiste cvs programma op. +Indien het cvs programma dat u wenst te gebruiken echter buiten het PATH ligt, dan kunt u hier het absolute pad naar uw cvs programma invullen. +Indien u echter enkel 'cvs' invult, dan zal dit als programma gezocht worden in uw PATH. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html new file mode 100644 index 0000000..acf1e6f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html @@ -0,0 +1,5 @@ +
+ Normalmente você deveria apenas deixar este campo vazio e deixar que o Hudson escolha o cvs correto. + Se seu binário cvs está fora de seu PATH, entretanto, especifique o caminho + absoluto para o executável cvs. Se você apenas especificar "cvs", ele encontrará o cvs no PATH. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html new file mode 100644 index 0000000..97f8377 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html @@ -0,0 +1,5 @@ +
+ Обычно вам нужно оÑ?тавить Ñ?то поле пуÑ?тым и позволить Hudson выбрать за ваÑ?. Однако, + еÑ?ли иÑ?полнÑ?емый файл cvs находитÑ?Ñ? вне вашего PATH, укажите полный + путь до него. ЕÑ?ли вы проÑ?то впишете "cvs", Hudson будет пытатьÑ?Ñ? найти его в PATH. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html new file mode 100644 index 0000000..2e0a2db --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html @@ -0,0 +1,5 @@ +
+ Hudson'ın doğru cvs'i seçmesi için bu alanı boş bırakmalısınız. + Eğer cvs, PATH dışında ise, cvs çalıştırılabilir dosyasının mutlak + yolunu burada belirlemeniz gerekir. Sadece, "cvs" yazarsanız, bunu PATH içerisinde bulacaktır. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html new file mode 100644 index 0000000..1da6a2e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html @@ -0,0 +1,4 @@ +
+ The CVS connection string Hudson uses to connect to the server. The format is + the same as $CVSROOT environment variable (:protocol:user@host:path) +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html new file mode 100644 index 0000000..5a03bd4 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html @@ -0,0 +1,5 @@ +
+ Geben Sie hier den CVS-Verbindungsparameter an, mit dem sich Hudson mit dem CVS-Server + verbindet. Das Format ist identisch mit dem der Umgebungsvariable $CVSROOT + (:protocol:user@host:path). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html new file mode 100644 index 0000000..23e0803 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html @@ -0,0 +1,6 @@ +
+ La chaine de caractères représentant la connexion CVS utilisée par + Hudson pour se connecter au serveur. Le format est le même que celui + de la variable d'environnement $CVSROOT + (:protocol:user@host:path). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html new file mode 100644 index 0000000..f8a55b6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html @@ -0,0 +1,4 @@ +
+ Hudson�CVS接続ストリング�設定�サー��接続�る���使用���。 + フォーマット�環境変数$CVSROOT�����。(:protocol:user@host:path) +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html new file mode 100644 index 0000000..f394a5f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html @@ -0,0 +1,3 @@ +
+ De cvs connectie die Hudson zal gebruiken om zich te verbinden met de cvs server. Het te volgen formaat is hetzelfde als voor de $CVSROOT omgevingsparameter, met name (:protocol:user@host:path). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html new file mode 100644 index 0000000..2aaad9a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html @@ -0,0 +1,4 @@ +
+ A string de conexão do CVS que Hudson usa para conectar-se ao servidor. O formato é + o mesmo da variável de ambiente $CVSROOT (:protocol:user@host:path) +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html new file mode 100644 index 0000000..6126c8d --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html @@ -0,0 +1,4 @@ +
+ Строка Ñ?оединениÑ? Ñ? CVS, которую будт иÑ?пользовать Hudson. Формат такой же как у + переменной окружениÑ? $CVSROOT (:protocol:user@host:path). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html new file mode 100644 index 0000000..a9d9438 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html @@ -0,0 +1,4 @@ +
+ Hudson'ın CVS sunucusuna bağlanmak için kullanıcı string'dir. Biçimi, $CVSROOT ortam değikeninin + aynısıdır (:protocol:user@host:path) +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html new file mode 100644 index 0000000..3ec5a32 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html @@ -0,0 +1,5 @@ +
+ If set, Hudson will run CVS with the CVS_RSH environment variable set + to this value. If this value is not set, and the web container that Hudson runs in + has CVS_RSH set in its environment variable, then CVS will inherit it. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html new file mode 100644 index 0000000..89a0261 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html @@ -0,0 +1,5 @@ +
+ Wenn gesetzt, startet Hudson CVS mit der + Umgebungsvariable CVS_RSH - gesetzt auf den angegebenen Wert. + Ist das Feld leer, so erbt CVS den Wert von CVS_RSH aus der Umgebung des Web-Containers, in dem Hudson läuft, falls vorhanden. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html new file mode 100644 index 0000000..d8cfd16 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html @@ -0,0 +1,8 @@ +
+ Si cette valeur est remplie, Hudson lancera CVS avec + la variable + d'environnement CVS_RSH positionnée à cette valeur. + Si cette valeur n'est pas positionnée et que le conteneur web qui + exécute Hudson a la variable CVS_RSH positionnée comme + variable d'environnement, alors CVS en héritera. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ja.html new file mode 100644 index 0000000..8d24409 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ja.html @@ -0,0 +1,4 @@ +
+ Hudsonã?¯ã€?環境変数CVS_RSHã‚’ã?“ã?®å€¤ã?«è¨­å®šã?—ã?¦CVSã‚’èµ·å‹•ã?—ã?¾ã?™ã€‚ + ã?“ã?®å€¤ã?Œæœªè¨­å®šã?§ã€?Hudsonã?Œå‹•ã?„ã?¦ã?„ã‚‹Webコンテナーã?®ç’°å¢ƒå¤‰æ•°ã?«CVS_RSHã?Œè¨­å®šã?•ã‚Œã?¦ã?„ã‚Œã?°ã€?CVSã?¯ã??れを引ã??継ã?Žã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html new file mode 100644 index 0000000..1ca9a3b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html @@ -0,0 +1,3 @@ +
+Indien geconfigureerd, zal Hudson CVS starten met de CVS_RSH omgevingsparameter ingesteld op die waarde. Indien deze waarde niet ingesteld is, zal de waarde overge�rfd worden van de webcontainer waarbinnen Hudson draait. Vooropgesteld dat deze omgevingsparameter voor deze container geconfigureerd werd. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html new file mode 100644 index 0000000..c35f634 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html @@ -0,0 +1,5 @@ +
+ Se informado, Hudson executará o CVS com a variável de ambiente CVS_RSH contendo + este valor. Se este valor não for informado, e o contêiner web onde o Hudson é executado + tem CVS_RSH atribuído em sua variável de ambiente, então o CVS a herdará. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html new file mode 100644 index 0000000..33f9648 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html @@ -0,0 +1,6 @@ +
+ ЕÑ?ли указано, Hudson будет запуÑ?кать CVS Ñ? + переменной окружениÑ? CVS_RSH, + уÑ?тановленной в Ñ?то значение. ЕÑ?ли значение не уÑ?тановлено, а контейнер, в котором запущен + Hudson, имеет переменную окружениÑ? CVS_RSH, то CVS унаÑ?ледует её. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html new file mode 100644 index 0000000..b38f4ee --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html @@ -0,0 +1,5 @@ +
+ Eğer seçilirse, Hudson CVS'i, CVS_RSH ortam değişkenini + bu değere eşitleyerek çalıştıracaktır. Eğer seçilmezse ve Hudson'ın içerisinde çalıştığı web container + CVS_RSH ortam değişkenine sahipse, CVS bunu kullanacaktır. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html new file mode 100644 index 0000000..2de20b6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html @@ -0,0 +1,27 @@ + + + + +
+ CVS stores the login and password information in a file called ".cvspass". Normally + CVS loads this file in your home directory, but if you want to have Hudson load it + from a different place, specify the full path to the file. Otherwise leave it blank. +
+ + If you are using CVSNT (am I?), then this setting is + likely to be ignored. See + this note for more about why. In this case, you need to run "cvs login" command + manually to enter password. If Hudson runs under the same user as you do, then + this would be straight-forward. However, if Hudson runs as a service, you'd need to + first launch CMD.exe as the SYSTEM user, then you need to run cvs command + from there. See this document + for how to do this. +
+
+ +
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html new file mode 100644 index 0000000..e2998c2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html @@ -0,0 +1,30 @@ + + + + +
+ CVS speichert Benutzernamen und Kennwörter in einer Datei namens ".cvspass". + Normalerweise lädt CVS diese Datei aus Ihrem Home-Verzeichnis. Wenn CVS + diese Datei aus einem anderen Verzeichnis laden soll, geben Sie hier + den vollständigen Pfadnamen der Datei an, ansonsten lassen Sie + dieses Feld leer. +
+ + Wenn Sie CVSNT verwenden (tue ich das?), dann + wird diese Einstellung wahrscheinlich ignoriert. Mehr Informationen dazu + finden Sie in + dieser Notiz. Geben Sie in diesem Fall mit dem Kommando "cvs login" manuell + Ihr Kennwort ein. Wenn Hudson unter Ihrem eigenen Benutzerkonto läuft, sollte + das kein Problem sein. Falls Hudson jedoch als Dienst läuft, müssen Sie zunächst + CMD.EXE als SYSTEM-Benutzer aufrufen und von dort cvs ausführen. Mehr dazu + steht in diesem + Dokument. +
+
+ +
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html new file mode 100644 index 0000000..2de20b6 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html @@ -0,0 +1,27 @@ + + + + +
+ CVS stores the login and password information in a file called ".cvspass". Normally + CVS loads this file in your home directory, but if you want to have Hudson load it + from a different place, specify the full path to the file. Otherwise leave it blank. +
+ + If you are using CVSNT (am I?), then this setting is + likely to be ignored. See + this note for more about why. In this case, you need to run "cvs login" command + manually to enter password. If Hudson runs under the same user as you do, then + this would be straight-forward. However, if Hudson runs as a service, you'd need to + first launch CMD.exe as the SYSTEM user, then you need to run cvs command + from there. See this document + for how to do this. +
+
+ +
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html new file mode 100644 index 0000000..fac9092 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html @@ -0,0 +1,26 @@ + + + + +
+ CVSã?¯ãƒ¦ãƒ¼ã‚¶ãƒ¼å??ã?¨ãƒ‘スワードを".cvspass"ã?¨ã?„ã?†ãƒ•ã‚¡ã‚¤ãƒ«ã?«ä¿?å­˜ã?—ã?¾ã?™ã€‚ + 通常ã€?CVSã?¯ãƒ›ãƒ¼ãƒ ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã?«ã?‚るファイルを読ã?¿è¾¼ã?¿ã?¾ã?™ã?Œã€?é?•ã?†å ´æ‰€ã?‹ã‚‰èª­ã?¿è¾¼ã‚€ã‚ˆã?†ã?«ã?—ã?Ÿã?„ã?®ã?§ã?‚ã‚Œã?°ã€?絶対パスã?§ãƒ•ã‚¡ã‚¤ãƒ«ã‚’指定ã?—ã?¦ã??ã? ã?•ã?„。 + ホームディレクトリã?‹ã‚‰èª­ã?¿è¾¼ã‚€ã?®ã?§ã?‚ã‚Œã?°ç©ºæ¬„ã?®ã?¾ã?¾ã?«ã?—ã?¦ã??ã? ã?•ã?„。 +
+ + CVSNTã‚’ã?—よã?†ã?—ã?¦ã?„ã‚‹ã?ªã‚‰(確èª?)ã€?ã?“ã?®è¨­å®šã?¯ã?Ÿã?¶ã‚“無効ã?§ã?™ã€‚ + ç?†ç”±ã‚’知りã?Ÿã?‘ã‚Œã?°ã?“ã?®è¨˜è¿°ã‚’確èª?ã?—ã?¦ã??ã? ã?•ã?„。 + ã?“ã?®å ´å?ˆã€?手動ã?§"cvs login"コマンドを起動ã?—ã?¦ãƒ‘スワードを入力ã?™ã‚‹å¿…è¦?ã?Œã?‚ã‚Šã?¾ã?™ã€‚ + コマンドを実行ã?—ã?Ÿãƒ¦ãƒ¼ã‚¶ãƒ¼ã?§Hudsonã?Œèµ·å‹•ã?—ã?¦ã?„ã‚‹ã?ªã‚‰å•?é¡Œã?¯ã?‚ã‚Šã?¾ã?›ã‚“。 + ã?—ã?‹ã?—ã€?Hudsonã?Œã‚µãƒ¼ãƒ“スã?¨ã?—ã?¦å‹•ä½œã?—ã?¦ã?„ã‚‹ã?ªã‚‰ã€?ã?¾ã?šæœ€åˆ?ã?«SYSTEMユーザーã?¨ã?—ã?¦CMD.exeã‚’èµ·å‹•ã?—ã?¾ã?™ã€‚ + ã??ã?—ã?¦ã€?CVSコマンドをã??ã?“ã?§èµ·å‹•ã?—ã?¾ã?™ã€‚ + ã‚„ã‚Šæ–¹ã?«ã?¤ã?„ã?¦ã?¯ã€? ã?“ã?®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆã‚’å?‚ç…§ã?—ã?¦ã??ã? ã?•ã?„。 +
+
+ +
+
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html new file mode 100644 index 0000000..2ae7890 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html @@ -0,0 +1,12 @@ +
+ If set, and Hudson is set to poll for changes, Hudson will ignore any files and/or folders in this list when determining if a build needs to be triggered. +

Each exclusion uses regular expression pattern matching, and must be separated by a new line. +

+

+	 src/main/web/.*\.html
+	 src/main/web/.*\.jpeg
+	 src/main/web/.*\.gif
+  
+ The example above illustrates that if only html/jpeg/gif files have been committed to the SCM a build will not occur. +

More information on regular expressions can be found here. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html new file mode 100644 index 0000000..dc428b9 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html @@ -0,0 +1,14 @@ +
+ Ist diese Option angewählt und das Projekt so konfiguriert, dass Hudson regelmäßig + ein CVS-Repository nach Änderungen befragt, so werden dabei die hier angegebenen Dateien + und/oder Verzeichnisse bei der Bestimmung, ob ein neuer Build ausgelöst werden soll, + ignoriert. +

Jeder Ausschluss kann reguläre Ausdrücke verwenden und muss ein einer eigenen Zeile stehen.

+ Im folgenden Beispiel wird kein neuer Build ausgelöst, wenn nur html/jpeg/gif-Dateien geändert wurden. +

+	 src/main/web/.*\.html
+	 src/main/web/.*\.jpeg
+	 src/main/web/.*\.gif
+  
+

Mehr zu regulären Ausdrücken.... +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html new file mode 100644 index 0000000..6c7877a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html @@ -0,0 +1,12 @@ +
+ Si cette option est cochée et que Hudson est configuré pour scruter les changements, Hudson ignorera tout fichier ou répertoire de cette liste au moment où il cherchera à déterminer si un build doit être lancé. +

Chaque clause d'exclusion utilise les expressions régulières et doit être séparée des autres par une nouvelle ligne. +

+

+	 src/main/web/.*\.html
+	 src/main/web/.*\.jpeg
+	 src/main/web/.*\.gif
+  
+ Dans l'exemple ci-dessus, si seuls des fichiers html/jpeg/gif ont été versionnées dans l'outil de gestion de version, un build n'aura pas lieu. +

Plus d'information sur les expressions régulières peuvent être trouvés ici. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html new file mode 100644 index 0000000..62e742d --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html @@ -0,0 +1,12 @@ +
+ Hudson�変更を�ーリング�るよ��設定�れ��る場��ビルドを実行�る必���る����判断�る際����リスト��るファイルやフォルダを無視���。 +

リスト���正�表�を使用��改行�区切り��。 +

+

+	 src/main/web/.*\.html
+	 src/main/web/.*\.jpeg
+	 src/main/web/.*\.gif
+  
+ 上記��html/jpeg/gifファイル�SCM�コミット�れ�も�ビルド�起動���例��。 +

æ­£è¦?表ç?¾ã?®è©³ç´°ã?«ã?¤ã?„ã?¦ã?¯ã€?ã?“ã?¡ã‚‰ã‚’å?‚ç…§ã?—ã?¦ã??ã? ã?•ã?„。 +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html new file mode 100644 index 0000000..5a06e1f --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html @@ -0,0 +1,13 @@ +
+ Hudson 1.20 and earlier used to create redundant directories inside the workspace. + For example, if the CVS module name is "foo/bar", it first created "foo/bar" and + then put everything below. With this option checked off, there will be no more + such unnecessary intermediate directories. + +

+ If you have multiple modules to check out, this option is forced (otherwise they'll overlap.) + +

+ This affects other path specifiers, such as artifact archivers --- you now specify + "build/foo.jar" instead of "foo/build/foo.jar". +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html new file mode 100644 index 0000000..6733669 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html @@ -0,0 +1,10 @@ +
+ Hudson 1.20 und früher legten redundante Verzeichnisse innerhalb des Arbeitsbereiches + an. War der CVS-Modulname beispielsweise "foo/bar", so legte Hudson erst ein + Verzeichnis "foo/bar" an und legte dann alles unterhalb dieses Verzeichnisses ab. + Ist diese Option nicht angewählt, werden keine solchen unnötigen Zwischenverzeichnisse + mehr erzeugt. +

+ Dies wirkt sich auf weitere Pfadangaben aus, etwa zur Archivierung von Artefakten: + Sie geben dann "build/foo.jar" statt "foo/build/foo.jar" an. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html new file mode 100644 index 0000000..3a2d87d --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html @@ -0,0 +1,12 @@ +
+ Hudson 1.20 et les versions précédentes créaient des répertoires vides + dans le workspace. + Par exemple, si le module CVS est "foo/bar", Hudson créait "foo/bar", + puis plaçait tout en dessous. Avec cette option décochée, il n'y aura + plus de ces répertoires intermédiaires inutiles. + +

+ Cela a un impact sur d'autres définitions de chemin, comme sur les + archiveurs d'artefacts --- you devez maintenant spécifier + "build/foo.jar" plutôt que "foo/build/foo.jar". +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html new file mode 100644 index 0000000..0059396 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html @@ -0,0 +1,10 @@ +
+ 1.20ã?¨ã??れ以å‰?ã?®Hudsonã?¯ã€?ワークスペースã?«ä½™åˆ†ã?ªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’作æˆ?ã?—ã?¦ã?„ã?¾ã?—ã?Ÿã€‚ + 例ã?ˆã?°ã€?CVSã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«å??ã?Œ"foo/bar"ã?®å ´å?ˆã€?ã?¾ã?™æœ€åˆ?ã?«"foo/bar"を作æˆ?ã?—ã€? + ã?™ã?¹ã?¦ã‚’ã?“ã?®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã?«å…¥ã‚Œã?¦ã?„ã?¾ã?—ã?Ÿã€‚ã?“ã?®ã‚ªãƒ—ションをãƒ?ェックã?—ã?ªã?‘ã‚Œã?°ã€? + ã??ã?®ã‚ˆã?†ã?ªä½™åˆ†ã?ªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’作æˆ?ã?™ã‚‹ã?“ã?¨ã?¯ã?‚ã‚Šã?¾ã?›ã‚“。 + +

+ �れ��他�パス�指定�影響��り��。例���ビルド後��果物�よ��� + "foo/build/foo.jar"�代�り�"build/foo.jar"を指定���。 +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html new file mode 100644 index 0000000..337c75d --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html @@ -0,0 +1,9 @@ +
+Hudson 1.20 en vroeger gebruikten redundante folders in de werkplaats. +Vb. indien de 'cvs' modulenaam "foo/bar" is, dan werd eerst "foo/bar" gecre�erd. Om vervolgens alles onder die folder te plaatsen. +Indien u deze optie afvinkt, dan worden deze onnodige tussenliggende folders niet meer aangemaakt. + +

+Merk wel op dat dit invloed heeft op andere plaatsen in uw configuratie, waar u paden opgegeven hebt. U dient bvb. "build/foo.jar" op te geven i.p.v. "foo/build/foo.jar". + +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html new file mode 100644 index 0000000..fb6fdd9 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html @@ -0,0 +1,10 @@ +
+ Hudson 1.20 e anteriores usavam para criar diretórios redundantes dentro do workspace. + Por exemplo, se o nome do módulo CVS fosse "foo/bar", ele primeiro criava "foo/bar" e + depois colocava tudo abaixo desta estrutura. Com este opção desmarcada, não haverá mais + diretórios intermediários desnecessários. + +

+ Isto afeta outros especificadores de caminho, tal como arquivadores de artefatos --- você agora especifica + "build/foo.jar" ao invés de "foo/build/foo.jar". +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html new file mode 100644 index 0000000..f0a4f47 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html @@ -0,0 +1,9 @@ +
+ Hudson 1.20 и ранее обычно Ñ?оздавал лишние директории внутри Ñ?борочной. Ð?апример, + еÑ?и имÑ? модулÑ? в CVS "foo/bar", то прежде вÑ?его он Ñ?оздавал "foo/bar" и вÑ?е файлы + хранилиÑ?ÑŒ уже внутри Ñ?той директории. С выключенной опцией больше таких ненужных + директорий-поÑ?редников Ñ?оздаватьÑ?Ñ? не будет. +

+ Это влиÑ?ет и на другие опции, например, архивацию артефактов - теперь вам нужно + будет указать "build/foo.jar" вмеÑ?то "foo/build/foo.jar". +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html new file mode 100644 index 0000000..be5fd32 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html @@ -0,0 +1,9 @@ +
+ Hudson 1.20 ve önceki versiyonları, çalışma alanı içerisinde gereksiz dizinler oluşturuyorlardı. + Mesela, CVS modülünün adı "foo/bar" ise, önce "foo/bar" dizini oluşturulup, sonra da herşey + bunun altına konuluyordu. Bu seçenek bunu önlemek için tasarlanmıştır. + +

+ Aynı zamanda, artefakt arşivleyici gibi dizin belirleyen kısımları da etkiler. + Artık, "foo/build/foo.jar" yerine "build/foo.jar" belirtebilirsiniz. +

\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class new file mode 100644 index 0000000..b221f70 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class new file mode 100644 index 0000000..9dcbe16 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class new file mode 100644 index 0000000..67c57f5 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class new file mode 100644 index 0000000..e14e183 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler new file mode 100644 index 0000000..9ae718b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler @@ -0,0 +1,2 @@ +#Tue Jul 20 16:33:31 PDT 2010 +constructor=url diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly new file mode 100644 index 0000000..e73f80a --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly @@ -0,0 +1,29 @@ + + + + + + + diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html new file mode 100644 index 0000000..20bcaee --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html @@ -0,0 +1,4 @@ +
+ Specify the root URL of FishEye for this repository + (such as this.) +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html new file mode 100644 index 0000000..e70f936 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html @@ -0,0 +1,4 @@ +
+ Geben Sie die FishEye-URL zum Stammverzeichnis des Projektes an, z.B. + http://deadlock.netbeans.org/fisheye/browse/netbeans/. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html new file mode 100644 index 0000000..78b90c8 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html @@ -0,0 +1,4 @@ +
+ Indiquez ici l'URL racine de FishEye pour ce repository + (comme ceci.) +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html new file mode 100644 index 0000000..59dc2c1 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html @@ -0,0 +1,4 @@ +
+ ��リ�ジトリ用�Fisheye�ルートURLを指定��� + (例)。 +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_pt_BR.html new file mode 100644 index 0000000..603c6e0 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_pt_BR.html @@ -0,0 +1,4 @@ +
+ Especifique a URL raíz do FishEye para este repositório + (tal como esta.) +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ru.html new file mode 100644 index 0000000..6f1ffe4 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ru.html @@ -0,0 +1,4 @@ +
+ Укажите URL корнÑ? FishEye длÑ? Ñ?того репозиториÑ? + (например так). +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html new file mode 100644 index 0000000..b2df5c2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html @@ -0,0 +1,4 @@ +
+ Bu repository için bir FishEye URL başlangıcı belirleyin. + (Mesela, bunun gibi.) +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class new file mode 100644 index 0000000..67df124 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class new file mode 100644 index 0000000..afc3498 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler new file mode 100644 index 0000000..9ae718b --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler @@ -0,0 +1,2 @@ +#Tue Jul 20 16:33:31 PDT 2010 +constructor=url diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly new file mode 100644 index 0000000..df23648 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly @@ -0,0 +1,29 @@ + + + + + + + \ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html new file mode 100644 index 0000000..83f3f0e --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html @@ -0,0 +1,4 @@ +
+ Specify the root URL of ViewCVS for this repository + (such as this). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html new file mode 100644 index 0000000..95a0f64 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html @@ -0,0 +1,4 @@ +
+ Geben Sie die ViewCVS-Stamm-URL für dieses Repository an, z.B. + http://relaxngcc.cvs.sourceforge.net/relaxngcc/. +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html new file mode 100644 index 0000000..9ec0fef --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html @@ -0,0 +1,4 @@ +
+ Spécifiez ici l'URL racine de ViewCVS pour ce repository (par exemple, + comme ceci). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html new file mode 100644 index 0000000..4450db3 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html @@ -0,0 +1,4 @@ +
+ ��リ�ジトリ用�ViewCVS�ルートURLを指定��� + (例)。 +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html new file mode 100644 index 0000000..0f3a138 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html @@ -0,0 +1,4 @@ +
+ Especifique a URL raíz do ViewCVS para este repositório + (tal como esta). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html new file mode 100644 index 0000000..0f8dafa --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html @@ -0,0 +1,4 @@ +
+ Укажите корневой URL ViewCVS длÑ? Ñ?того репозиториÑ?, например, + так: http://relaxngcc.cvs.sourceforge.net/relaxngcc/. +
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html new file mode 100644 index 0000000..e988daa --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html @@ -0,0 +1,4 @@ +
+ Bu repository'nin ViewCVS ile görüntülenebilmesi için bir başlangıç URL'i girin. + (mesela linki gibi). +
\ No newline at end of file diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class new file mode 100644 index 0000000..de4f163 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class Binary files differ diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties new file mode 100644 index 0000000..f3f2b53 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties @@ -0,0 +1,44 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +# This message resource is in a non-standard location to avoid conflict with hudson.scm.Messages. +# This is due to the fact that historically the CVS support was a part of the core. + +CVSSCM.TagginXasY=Tagging {0} as {1} +CVSSCM.FailedToMarkForKeep=Failed to mark {0} for keep +CVSSCM.ExpandingWorkspaceArchive=expanding the workspace archive into {0} +CVSSCM.HeadIsNotBranch=Technically, HEAD is not a branch in CVS. Leave this field empty to build the trunk. +CVSSCM.InvalidCvsroot=Invalid CVSROOT string +CVSSCM.MissingCvsroot=CVSROOT is mandatory +CVSSCM.NoSuchJobExists=No such job exists: {0} +CVSSCM.NoUpstreamBuildFound=Upstream build not found for: {0} +CVSSCM.NoValidTagNameGivenFor=No valid tag name given for {0} : {1} +CVSSCM.PasswordNotSet=It doesn''t look like this CVSROOT has its password set. +CVSSCM.TagContainsIllegalChar=Tag contains illegal ''{0}'' character +CVSSCM.TagIsEmpty=Tag is empty +CVSSCM.TagNeedsToStartWithAlphabet=Tag needs to start with alphabet +CVSSCM.TagThisBuild=Tag this build +CVSSCM.TaggingFailed=tagging failed +CVSSCM.TaggingWorkspace=tagging the workspace +CVSSCM.DisplayName2=CVS tags +CVSSCM.DisplayName1=CVS tag +CVSSCM.WorkspaceInconsistent=Workspace is inconsistent with configuration. Scheduling a new build: {0} diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties new file mode 100644 index 0000000..1b78962 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties @@ -0,0 +1,41 @@ +# 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. + +CVSSCM.TagginXasY=Markiere ("tagge") {0} als {1} +CVSSCM.FailedToMarkForKeep={0} konnte nicht markiert werden, um beibehalten zu werden ("failed to mark for keep"). +CVSSCM.ExpandingWorkspaceArchive=Entpacke das Archiv des Arbeitsbereichs nach {0} +CVSSCM.HeadIsNotBranch=Technisch gesprochen ist HEAD kein Zweig in CVS. Lassen Sie dieses Feld frei, um den Trunk zu bauen. +CVSSCM.InvalidCvsroot=Ung\u00FCltige CVSROOT-Angabe. +CVSSCM.MissingCvsroot=CVSROOT muss angegeben werden. +CVSSCM.NoSuchJobExists=Dieser Job existiert nicht: {0} +CVSSCM.NoValidTagNameGivenFor=Der Tag-Name {1} ist ung\u00FCltig f\u00FCr {0}. +CVSSCM.PasswordNotSet=Das Passwort f\u00FCr CVSROOT scheint nicht gesetzt zu sein. +CVSSCM.TagContainsIllegalChar=Der Tag-Name enth\u00E4lt ung\u00FCltiges Zeichen ''{0}''. +CVSSCM.TagIsEmpty=Der Tag-Name ist leer. +CVSSCM.TagNeedsToStartWithAlphabet=Der Tag-Name muss mit einem Buchstaben beginnen. +CVSSCM.TagThisBuild=Diesen Build markieren ("taggen"). +CVSSCM.TaggingFailed=Markierung ("tagging") ist fehlgeschlagen. +CVSSCM.TaggingWorkspace=Arbeitsbereich wird markiert ("getaggt"). +CVSSCM.DisplayName2=CVS-Tags +CVSSCM.DisplayName1=CVS-Tag +CVSSCM.WorkspaceInconsistent=Der Arbeitsbereich ist inkonsistent mit der aktuellen Konfiguration. Plane einen neuen Build: {0} + diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties new file mode 100644 index 0000000..367860c --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties @@ -0,0 +1,58 @@ +# 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. + +# CVS tags +CVSSCM.DisplayName2=Etiquetas CVS +# Failed to mark {0} for keep +CVSSCM.FailedToMarkForKeep=Fallo al marcar {0} para conservarlo +# Tag is empty +CVSSCM.TagIsEmpty=La etiqueta está vacía +# Tag contains illegal ''{0}'' character +CVSSCM.TagContainsIllegalChar=La etiqueta contiene un carácter inválido ''{0}'' +# Technically, HEAD is not a branch in CVS. Leave this field empty to build the trunk. +CVSSCM.HeadIsNotBranch=Técnicamente "HEAD" no es una rama de CVS. Deja este campo vacío para utilizar el "trunk" +# expanding the workspace archive into {0} +CVSSCM.ExpandingWorkspaceArchive=Descomprimiento el archivo con el espacio de trabajo en {0} +# No valid tag name given for {0} : {1} +CVSSCM.NoValidTagNameGivenFor=No se ha especificado una etiqueta válida para {0}: {1} +# tagging the workspace +CVSSCM.TaggingWorkspace=Etiquetando el espacio de trabajo +# Tagging {0} as {1} +CVSSCM.TagginXasY=Etiquetando {0} como {1} +# Invalid CVSROOT string +CVSSCM.InvalidCvsroot=CVSROOT no es válido +# Tag this build +CVSSCM.TagThisBuild=Etiquetar esta ejecución +# CVSROOT is mandatory +CVSSCM.MissingCvsroot=CVSROOT es obligatorio +# tagging failed +CVSSCM.TaggingFailed=Fallo al etiquetar +# Workspace is inconsistent with configuration. Scheduling a new build: {0} +CVSSCM.WorkspaceInconsistent=El espacio de trabajo es inconsistente con la configuración, lanzando una nueva ejecución: {0} +# Tag needs to start with alphabet +CVSSCM.TagNeedsToStartWithAlphabet=Una etiqueta tiene que comenzar con una letra +# CVS tag +CVSSCM.DisplayName1=Etiqueta CVS +# No such job exists: {0} +CVSSCM.NoSuchJobExists=La tarea no existe: {0} +# It doesn''t look like this CVSROOT has its password set. +CVSSCM.PasswordNotSet=Parece que no se ha especificado una contraseña para este CVSROOT diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties new file mode 100644 index 0000000..2fa8135 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties @@ -0,0 +1,39 @@ +# 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. + +CVSSCM.TagginXasY=Application du tag {1} sur {0} +CVSSCM.FailedToMarkForKeep=Echec lors du marquage de {0} en vue de le conserver +CVSSCM.ExpandingWorkspaceArchive=d\u00C3\u00A9compressage de l''archive de r\u00C3\u00A9pertoire de travail dans {0} +CVSSCM.HeadIsNotBranch=Techniquement, HEAD n''est pas une branche dans CVS. Laissez ce champ vide pour builder le tronc. +CVSSCM.InvalidCvsroot=String CVSROOT invalide +CVSSCM.MissingCvsroot=CVSROOT est obligatoire +CVSSCM.NoValidTagNameGivenFor=Nom de tag non valide pour {0} : {1} +CVSSCM.PasswordNotSet=Ce CVSROOT ne semble pas avoir de mot de passe sp\u00C3\u00A9cifi\u00C3\u00A9. +CVSSCM.TagContainsIllegalChar=Ce tag contient des caract\u00C3\u00A8res ill\u00C3\u00A9gaux ''{0}'' +CVSSCM.TagIsEmpty=Ce tag est vide +CVSSCM.TagNeedsToStartWithAlphabet=Le libell\u00C3\u00A9 du tag doit commencer avec un caract\u00C3\u00A8re alphab\u00C3\u00A9tique +CVSSCM.TagThisBuild=Tagguer ce build +CVSSCM.TaggingFailed=\u00C3\u00A9chec de l''application du tag +CVSSCM.TaggingWorkspace=application du tag sur le workspace +CVSSCM.DisplayName2=Tags CVS +CVSSCM.DisplayName1=Tag CVS +CVSSCM.WorkspaceInconsistent=Le r\u00C3\u00A9pertoire de travail n''est pas coh\u00C3\u00A9rent avec la configuration. Un nouveau build est demand\u00C3\u00A9: {0} diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties new file mode 100644 index 0000000..2cbd8d2 --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties @@ -0,0 +1,40 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +CVSSCM.TagginXasY={0}\u3092{1}\u3068\u3057\u3066\u30BF\u30B0\u3092\u8A2D\u5B9A +CVSSCM.FailedToMarkForKeep={0}\u306E\u8A18\u9332\u306B\u5931\u6557\u3057\u307E\u3057\u305F +CVSSCM.ExpandingWorkspaceArchive=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30A2\u30FC\u30AB\u30A4\u30D6\u3092{0}\u306B\u5C55\u958B\u4E2D +CVSSCM.HeadIsNotBranch=\u53B3\u5BC6\u306B\u8A00\u3046\u3068\u3001HEAD\u306FCVS\u306E\u30D6\u30E9\u30F3\u30C1\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002\u30C8\u30E9\u30F3\u30AF\u3092\u30D3\u30EB\u30C9\u3059\u308B\u305F\u3081\u306B\u3053\u306E\u9805\u76EE\u3092\u7A7A\u6B04\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002 +CVSSCM.InvalidCvsroot=\u4E0D\u6B63\u306ACVSROOT\u3067\u3059 +CVSSCM.MissingCvsroot=CVSROOT\u306F\u5FC5\u9808\u3067\u3059 +CVSSCM.NoSuchJobExists=\u5B58\u5728\u3057\u306A\u3044\u30B8\u30E7\u30D6: {0} +CVSSCM.NoValidTagNameGivenFor={0}\u306B\u5BFE\u3059\u308B\u59A5\u5F53\u306A\u30BF\u30B0\u540D\u3067\u306F\u3042\u308A\u307E\u305B\u3093: {1} +CVSSCM.PasswordNotSet=\u3053\u306ECVSROOT\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u306A\u3044\u3088\u3046\u3067\u3059\u3002 +CVSSCM.TagContainsIllegalChar=\u30BF\u30B0\u306B\u4E0D\u6B63\u306A\u6587\u5B57 ''{0}''\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059 +CVSSCM.TagIsEmpty=\u30BF\u30B0\u304C\u672A\u8A2D\u5B9A\u3067\u3059 +CVSSCM.TagNeedsToStartWithAlphabet=\u30BF\u30B0\u306F\u82F1\u5B57\u3067\u59CB\u307E\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059 +CVSSCM.TagThisBuild=\u3053\u306E\u30D3\u30EB\u30C9\u306B\u30BF\u30B0\u3092\u8A2D\u5B9A +CVSSCM.TaggingFailed=\u30BF\u30B0\u306E\u8A2D\u5B9A\u306B\u5931\u6557 +CVSSCM.TaggingWorkspace=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u30BF\u30B0\u3092\u8A2D\u5B9A\u4E2D +CVSSCM.DisplayName2=CVS\u30BF\u30B0 +CVSSCM.DisplayName1=CVS\u30BF\u30B0 +CVSSCM.WorkspaceInconsistent=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u304C\u8A2D\u5B9A\u3068\u77DB\u76FE\u3057\u3066\u3044\u307E\u3059\u3002\u65B0\u898F\u30D3\u30EB\u30C9\u3092\u30B9\u30B1\u30B8\u30E5\u30FC\u30EA\u30F3\u30B0\u3057\u307E\u3059: {0} diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties new file mode 100644 index 0000000..72b11bb --- /dev/null +++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties @@ -0,0 +1,39 @@ +# 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. + +CVSSCM.TagginXasY=Label {0} als {1} +CVSSCM.FailedToMarkForKeep={0} kon niet gemarkeerd worden om te behouden +CVSSCM.ExpandingWorkspaceArchive=expanding the workspace archive into {0} +CVSSCM.HeadIsNotBranch=Technisch is HEAD geen vertakking in CVS. Laat dit veld leeg indien u vanaf de basis wilt bouwen. +CVSSCM.InvalidCvsroot=Ongeldige CVSROOT string +CVSSCM.MissingCvsroot=CVSROOT is verplicht +CVSSCM.NoValidTagNameGivenFor=Label naam is niet geldig voor {0} : {1} +CVSSCM.PasswordNotSet=Deze CVSROOT heeft blijkbaar geen paswoord ingesteld. +CVSSCM.TagContainsIllegalChar=Label bevat ongeldig teken ''{0}'' +CVSSCM.TagIsEmpty=Label is blanko +CVSSCM.TagNeedsToStartWithAlphabet=Label moet starten met een letter +CVSSCM.TagThisBuild=Label deze bouwpoging +CVSSCM.TaggingFailed=labelen gefaald +CVSSCM.TaggingWorkspace=tagging the workspace +CVSSCM.DisplayName2=CVS labels +CVSSCM.DisplayName1=CVS label +CVSSCM.WorkspaceInconsistent=Werkplaats is inconsistent met de configuratie. Een nieuwe bouwpoging wordt gepland: {0} diff --git a/work/plugins/maven-plugin.hpi b/work/plugins/maven-plugin.hpi new file mode 100644 index 0000000..124bd2e --- /dev/null +++ b/work/plugins/maven-plugin.hpi Binary files differ diff --git a/work/plugins/maven-plugin.hpi.pinned b/work/plugins/maven-plugin.hpi.pinned new file mode 100644 index 0000000..e5df6ce --- /dev/null +++ b/work/plugins/maven-plugin.hpi.pinned @@ -0,0 +1 @@ +pinned \ No newline at end of file diff --git a/work/plugins/maven-plugin/.timestamp b/work/plugins/maven-plugin/.timestamp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/maven-plugin/.timestamp diff --git a/work/plugins/maven-plugin/META-INF/MANIFEST.MF b/work/plugins/maven-plugin/META-INF/MANIFEST.MF new file mode 100644 index 0000000..77703fe --- /dev/null +++ b/work/plugins/maven-plugin/META-INF/MANIFEST.MF @@ -0,0 +1,22 @@ +Manifest-Version: 1.0 +Archiver-Version: Plexus Archiver +Created-By: Apache Maven +Built-By: kohsuke +Build-Jdk: 1.6.0_24 +Extension-Name: maven-plugin +Specification-Title: This plug-in provides deep integration of Jenkins + and Maven. This functionality used to be part of the Jenkins core. + Now it is a plug-in that is installed by default, but can be disabled. +Implementation-Title: maven-plugin +Implementation-Version: 1.405 +Plugin-Class: hudson.maven.PluginImpl +Group-Id: org.jenkins-ci.main +Short-Name: maven-plugin +Long-Name: Maven Integration plugin +Url: http://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin +Plugin-Version: 1.405 +Hudson-Version: 1.405 +Jenkins-Version: 1.405 +Plugin-Dependencies: token-macro:1.1;resolution:=optional +Plugin-Developers: + diff --git a/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties new file mode 100644 index 0000000..3b0922e --- /dev/null +++ b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Mon Apr 04 09:40:56 PDT 2011 +version=1.405 +groupId=org.jenkins-ci.main +artifactId=maven-plugin diff --git a/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml new file mode 100644 index 0000000..eb83182 --- /dev/null +++ b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml @@ -0,0 +1,402 @@ + + + + 4.0.0 + + org.jenkins-ci.main + pom + 1.405 + + + maven-plugin + hpi + Maven Integration plugin + This plug-in provides deep integration of Jenkins and Maven. This functionality used to be part of the Jenkins core. + Now it is a plug-in that is installed by default, but can be disabled. + http://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin + + + 1.1 + 3.0.3 + ${mavenVersion} + 1.11 + 1.4.3.1 + 1.0-beta-7 + + + + + org.jenkins-ci.main + jenkins-core + ${project.version} + provided + + + javax.servlet + servlet-api + 2.4 + provided + + + + org.jenkins-ci.main.maven + maven-agent + ${mavenInterceptorsVersion} + + + classworlds + classworlds + + + + + + org.jenkins-ci.main.maven + maven-interceptor + ${mavenInterceptorsVersion} + + + classworlds + classworlds + + + + + + org.jvnet.hudson + maven2.1-interceptor + 1.2 + + + + org.jenkins-ci.main.maven + maven3-agent + ${mavenInterceptorsVersion} + + + + org.jenkins-ci.main.maven + maven3-interceptor + ${mavenInterceptorsVersion} + + + + org.apache.ant + ant + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-compat + ${mavenVersion} + + + + org.apache.maven + maven-aether-provider + ${mavenVersion} + + + org.apache.maven + maven-embedder + ${mavenVersion} + + + + + org.sonatype.aether + aether-api + ${aetherVersion} + + + org.sonatype.aether + aether-impl + ${aetherVersion} + + + org.sonatype.aether + aether-spi + ${aetherVersion} + + + org.sonatype.aether + aether-util + ${aetherVersion} + + + org.sonatype.aether + aether-connector-wagon + ${aetherVersion} + + + org.codehaus.plexus + plexus-container-default + + + + + + org.sonatype.sisu + sisu-inject-plexus + ${sisuInjectVersion} + + + + org.sonatype.sisu + sisu-inject-bean + ${sisuInjectVersion} + + + + org.apache.maven.wagon + wagon-http-lightweight + ${wagonVersion} + + + nekohtml + nekohtml + + + nekohtml + xercesMinimal + + + + + org.apache.maven.wagon + wagon-file + ${wagonVersion} + + + org.apache.maven.wagon + wagon-ftp + ${wagonVersion} + + + org.apache.maven.wagon + wagon-ssh + ${wagonVersion} + + + org.apache.maven.wagon + wagon-ssh-external + ${wagonVersion} + + + + org.apache.maven.wagon + wagon-provider-api + ${wagonVersion} + + + org.apache.maven.reporting + maven-reporting-api + 3.0 + + + org.codehaus.plexus + plexus-classworlds + 2.3 + + + org.jenkins-ci.lib + lib-jenkins-maven-artifact-manager + 1.1 + + + commons-io + commons-io + + + org.jvnet.hudson + hudson-maven-embedder + 3.2 + + + jtidy + jtidy + + + commons-cli + commons-cli + + + xml-apis + xml-apis + + + + org.apache.maven.wagon + wagon-webdav + + + + + nekohtml + nekohtml + + + nekohtml + xercesMinimal + + + + + + + + org.jvnet.hudson + wagon-webdav + 1.0-beta-2-hudson-1 + + + jdom + jdom + + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.13 + + + + org.jenkins-ci.plugins + token-macro + 1.1 + true + + + + + + + ${project.artifactId} + package + + + org.jenkins-ci.tools + maven-hpi-plugin + + true + + true + true + + + + org.kohsuke.stapler + maven-stapler-plugin + true + + + org.jvnet.localizer + maven-localizer-plugin + 1.8 + + + + generate + + + Messages.properties + target/generated-sources/localizer + + + + + + org.jvnet.maven-antrun-extended-plugin + maven-antrun-extended-plugin + + + resgen + generate-resources + + run + + + false + + + + + + + + + + + + + + + + cobertura2 + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.4-apb-SNAPSHOT + true + + + html + xml + + + + + coverage-instrument + process-test-classes + + instrument + + + + coverage-report + test + + generate-report + + + + + + + + + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension new file mode 100644 index 0000000..0896e79 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans new file mode 100644 index 0000000..ad21b13 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans @@ -0,0 +1,2 @@ +hudson.maven.MavenModule +hudson.maven.MavenModuleSet diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin new file mode 100644 index 0000000..5fd41b3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin @@ -0,0 +1 @@ +hudson.maven.PluginImpl \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar b/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar new file mode 100644 index 0000000..6ec5c21 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class new file mode 100644 index 0000000..5335ae0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class new file mode 100644 index 0000000..9c97658 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class new file mode 100644 index 0000000..1c0019a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class new file mode 100644 index 0000000..16bcb3e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class new file mode 100644 index 0000000..8b510bc --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class new file mode 100644 index 0000000..26fe705 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class new file mode 100644 index 0000000..c29b362 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class new file mode 100644 index 0000000..8ec366b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class new file mode 100644 index 0000000..553a729 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class new file mode 100644 index 0000000..7ae7715 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class new file mode 100644 index 0000000..ac83bc5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class new file mode 100644 index 0000000..78b4903 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class new file mode 100644 index 0000000..e8b37f1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class new file mode 100644 index 0000000..78916d5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class new file mode 100644 index 0000000..e738038 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class new file mode 100644 index 0000000..d036079 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class new file mode 100644 index 0000000..dbf4949 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly new file mode 100644 index 0000000..8fde3d6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly @@ -0,0 +1,27 @@ + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly new file mode 100644 index 0000000..9e0d2fc --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly @@ -0,0 +1,27 @@ + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class new file mode 100644 index 0000000..631df6e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class new file mode 100644 index 0000000..60ddd39 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class new file mode 100644 index 0000000..332f96a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class new file mode 100644 index 0000000..8fbd2f4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class new file mode 100644 index 0000000..3868297 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class new file mode 100644 index 0000000..02d4762 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class new file mode 100644 index 0000000..7bfab14 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class new file mode 100644 index 0000000..1feae1b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class new file mode 100644 index 0000000..24b3977 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class new file mode 100644 index 0000000..b9cf862 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class new file mode 100644 index 0000000..20fae78 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class new file mode 100644 index 0000000..6000551 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class new file mode 100644 index 0000000..27a7205 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class new file mode 100644 index 0000000..8b281d0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class new file mode 100644 index 0000000..ff617ea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly new file mode 100644 index 0000000..137a878 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly @@ -0,0 +1,29 @@ + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties new file mode 100644 index 0000000..907f59b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties @@ -0,0 +1,23 @@ +# 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\ Mojos=Afviklede Mojos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties new file mode 100644 index 0000000..4cd167c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Ausgeführte Mojos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties new file mode 100644 index 0000000..6aff749 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=''Mojos'' ejecutados diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties new file mode 100644 index 0000000..32cf00b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Mojos exécutés diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties new file mode 100644 index 0000000..87b1723 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Mojo eseguiti diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties new file mode 100644 index 0000000..8821954 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=\u5b9f\u884c\u3055\u308c\u305fMojo diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties new file mode 100644 index 0000000..6052cb9 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Uitgevoerde Mojos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties new file mode 100644 index 0000000..9cb9f56 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Mojos Executados diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties new file mode 100644 index 0000000..aecddaa --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 Mojos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties new file mode 100644 index 0000000..b39007d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=K\u00F6rda Mojos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties new file mode 100644 index 0000000..1a49ae2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=\u00c7al\u0131\u015ft\u0131r\u0131lan Mojolar diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly new file mode 100644 index 0000000..94d8967 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly @@ -0,0 +1,81 @@ + + + + + + +

${%Executed Mojos}

+ + + +
+ ${%Build in progress.} +
+
+ +
+ ${%No mojos executed.} +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
${%Plugin}${%Version}${%Goal}${%Execution}${%Duration}${%Fingerprint}
+ + + ${m.groupId}:${m.artifactId} + + ${m.version} + + ${m.goal} + + ${m.readableExecutionId}${m.durationString} + ${%fingerprint} +
+
+
+
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties new file mode 100644 index 0000000..8f87b71 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties @@ -0,0 +1,32 @@ +# 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. + +Version=Version +Duration=Varighed +Execution=Eksekvering +Build\ in\ progress.=Byg i fremskridt. +Plugin=Plugin +fingerprint=filfingeraftryk +Fingerprint=Filfingeraftryk +Executed\ Mojos=Afviklede Mojos +Goal=M\u00e5l +No\ mojos\ executed.=Ingen mojos afviklet. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties new file mode 100644 index 0000000..0694bdf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=Ausgeführte Mojos +Build\ in\ progress.=Build wird gerade ausgeführt. +No\ mojos\ executed.=Keine Mojos ausgeführt. +Plugin=Plugin +Version=Version +Goal=Goal +Execution=Ausführung +Duration=Dauer +Fingerprint=Fingerabdruck +fingerprint=Fingerabdruck diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties new file mode 100644 index 0000000..4b0b1e4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties @@ -0,0 +1,33 @@ +# 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. + +Build\ in\ progress.=Ejecución en proceso +Executed\ Mojos=Plugins de maven (Mojos) ejecutados +fingerprint=firma +Execution=Ejecución +Plugin=Plugin +Version=Versión +Fingerprint=Firma +Goal=Gol +No\ mojos\ executed.=No se ejecutó ningún plugin maven (mojo) +Duration=Duración + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties new file mode 100644 index 0000000..05c0cdf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties @@ -0,0 +1,32 @@ +# 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. + +Build\ in\ progress.=Build en cours +No\ mojos\ executed.=Aucun mojo n''a été exécuté +Plugin= +Version= +Goal=Goal +Execution=Exécution +Duration=Durée +Fingerprint=Empreinte numérique +fingerprint=empreinte numérique +Executed\ Mojos=Mojos exécutés diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties new file mode 100644 index 0000000..9727a1b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=\u5b9f\u884c\u3055\u308c\u305fMojo +Build\ in\ progress.=\u30d3\u30eb\u30c9\u304c\u9032\u884c\u4e2d\u3067\u3059 +No\ mojos\ executed.=\u4f55\u306eMojo\u3082\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f +Plugin=\u30d7\u30e9\u30b0\u30a4\u30f3 +Version=\u30d0\u30fc\u30b8\u30e7\u30f3 +Goal=\u30b4\u30fc\u30eb +Execution=\u5b9f\u884cID +Duration=\u6240\u8981\u6642\u9593 +Fingerprint=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b +fingerprint=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties new file mode 100644 index 0000000..54061df --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=Uitgevoerde Mojos. +Build\ in\ progress.=Bouwpoging in uitvoering. +No\ mojos\ executed.=Geen mojos uitgevoerd. +Plugin=Plugin +Version=Versie +Goal=Doel +Execution=Uitvoering +Duration=Duur +Fingerprint=Vingerafdruk +fingerprint=vingerafdruk diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties new file mode 100644 index 0000000..a666b12 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=Mojos Executados +Build\ in\ progress.=Constru\u00e7\u00e3o em progresso. +No\ mojos\ executed.=Nenhum mojo executado. +Plugin=Plugin +Version=Vers\u00e3o +Goal=Objetivo +Execution=Execu\u00e7\u00e3o +Duration=Dura\u00e7\u00e3o +Fingerprint=Identifica\u00e7\u00e3o +fingerprint=Identifica\u00e7\u00e3o diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties new file mode 100644 index 0000000..3891fca --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 Mojos +Build\ in\ progress.=\u0421\u0431\u043e\u0440\u043a\u0438 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435. +No\ mojos\ executed.=\u041d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e Mojo. +Plugin=\u041f\u043b\u0430\u0433\u0438\u043d +Version=\u0412\u0435\u0440\u0441\u0438\u044f +Goal=\u0426\u0435\u043b\u044c +Execution=\u0417\u0430\u043f\u0443\u0441\u043a +Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c +Fingerprint=\u041e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a (fingerprint) +fingerprint=\u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties new file mode 100644 index 0000000..f933802 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties @@ -0,0 +1,32 @@ +# 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. + +Executed\ Mojos=\u00c7al\u0131\u015ft\u0131r\u0131lan Mojolar +Build\ in\ progress.=Yap\u0131land\u0131rma ilerliyor. +No\ mojos\ executed.=Herhangi bir mojo \u00e7al\u0131\u015ft\u0131r\u0131lmad\u0131. +Plugin=Eklenti +Version=Versiyon +Goal=Hedef +Execution=\u00c7al\u0131\u015ft\u0131rma +Duration=S\u00fcre +Fingerprint=Parmakizi +fingerprint=parmakizi diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class new file mode 100644 index 0000000..8801dec --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class new file mode 100644 index 0000000..bd202e8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class new file mode 100644 index 0000000..7b6658e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class new file mode 100644 index 0000000..8b57acf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class new file mode 100644 index 0000000..b718649 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class new file mode 100644 index 0000000..ecdae79 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class new file mode 100644 index 0000000..0442768 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class new file mode 100644 index 0000000..1c18a46 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class new file mode 100644 index 0000000..153698c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class new file mode 100644 index 0000000..46aeeb6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class new file mode 100644 index 0000000..cd62f8e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class new file mode 100644 index 0000000..eaceb57 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class new file mode 100644 index 0000000..8c4a03c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc new file mode 100644 index 0000000..a236a13 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc @@ -0,0 +1 @@ +#Mon Apr 04 09:40:54 PDT 2011 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly new file mode 100644 index 0000000..75f8a50 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties new file mode 100644 index 0000000..121bbd1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties @@ -0,0 +1,25 @@ +# 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. + +Goals=M\u00e5l +Build=Byg +Build\ Settings=Byggeindstillinger diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties new file mode 100644 index 0000000..c0596d2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties @@ -0,0 +1,25 @@ +# 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. + +Build=Build +Goals=Goals +Build\ Settings=Build-Einstellungen diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties new file mode 100644 index 0000000..995f3eb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties @@ -0,0 +1,25 @@ +# 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. + +Build=Ejecución +Build\ Settings=Propiedades de la ejecución +Goals=Goles diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties new file mode 100644 index 0000000..245493c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties @@ -0,0 +1,25 @@ +# 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. + +Build= +Goals= +Build\ Settings=Configuration du Build diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties new file mode 100644 index 0000000..ab016a1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties @@ -0,0 +1,25 @@ +# 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. + +Build=\u30d3\u30eb\u30c9 +Goals=\u30b4\u30fc\u30eb +Build\ Settings=\u30d3\u30eb\u30c9\u8a2d\u5b9a diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties new file mode 100644 index 0000000..2b5929b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties @@ -0,0 +1,25 @@ +# 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. + +Build=Bouwpoging +Goals=Doel +Build\ Settings=Bouwconfiguratie diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties new file mode 100644 index 0000000..6d33714 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties @@ -0,0 +1,25 @@ +# 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. + +Build=Construir +Goals=Objetivos +Build\ Settings=Configura\u00e7\u00f5es de Constru\u00e7\u00e3o diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties new file mode 100644 index 0000000..c14220d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties @@ -0,0 +1,25 @@ +# 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. + +Build=\u0421\u0431\u043e\u0440\u043a\u0430 +Goals=\u0426\u0435\u043b\u0438 +Build\ Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties new file mode 100644 index 0000000..3d0525b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties @@ -0,0 +1,25 @@ +# 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. + +Build=Yap\u0131land\u0131rma +Goals=Hedefler +Build\ Settings=Yap\u0131land\u0131rma Ayarlar\u0131 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class new file mode 100644 index 0000000..66342e2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class new file mode 100644 index 0000000..4cc2e69 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class new file mode 100644 index 0000000..84d70b2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class new file mode 100644 index 0000000..e28f173 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class new file mode 100644 index 0000000..d407683 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc new file mode 100644 index 0000000..a236a13 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc @@ -0,0 +1 @@ +#Mon Apr 04 09:40:54 PDT 2011 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly new file mode 100644 index 0000000..fe98be2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties new file mode 100644 index 0000000..f9bec65 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties @@ -0,0 +1,24 @@ +# 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. + +Modules=Moduler +Delete\ All\ Disabled\ Modules=Slet Alle Moduler Der Er Sl\u00e5et Fra diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties new file mode 100644 index 0000000..bdea759 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Lösche alle deaktivierten Module +Modules=Module diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties new file mode 100644 index 0000000..a131dad --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Borrar todos los módulos desactivados +Modules=Módulos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties new file mode 100644 index 0000000..c559322 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Supprimer tous les modules désactivés +Modules=Modules diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties new file mode 100644 index 0000000..7c6eb03 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=B\u0151v\u00EDtm\u00E9nyek diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties new file mode 100644 index 0000000..15784c4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduli diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties new file mode 100644 index 0000000..0525616 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +Delete\ All\ Disabled\ Modules=\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664 +Modules=\u30e2\u30b8\u30e5\u30fc\u30eb diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties new file mode 100644 index 0000000..6c4aa81 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduler diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties new file mode 100644 index 0000000..06e0de8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Verwijder alle gedesactiveerde modules +Modules=Modules diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties new file mode 100644 index 0000000..a1e8eb1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Excluir Todo os M\u00f3dulos Desabilitados +Modules=M\u00f3dulos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties new file mode 100644 index 0000000..db940fe --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438 +Modules=\u041c\u043e\u0434\u0443\u043b\u0438 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties new file mode 100644 index 0000000..b2f6f18 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=Ta bort alla inaktiverade moduler +Modules=Moduler diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties new file mode 100644 index 0000000..bff8e9e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=T\u00fcm devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f mod\u00fcller sil +Modules=Mod\u00fcller diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly new file mode 100644 index 0000000..73731b8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly @@ -0,0 +1,32 @@ + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly new file mode 100644 index 0000000..5e565c0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + +
+ ${%Maven Version.error.1}<br> + ${%Maven Version.error.2(rootURL)} +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties new file mode 100644 index 0000000..d91e31e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Maven\ Version.error.1=Jenkins needs to know where your Maven2 is installed. +Maven\ Version.error.2=Please do so from the system configuration. \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties new file mode 100644 index 0000000..4a83e94 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties @@ -0,0 +1,35 @@ +# 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. + +Disable\ automatic\ artifact\ archiving=Sl\u00e5 automatisk artifaktarkivering fra +Maven\ Version.error.2=Dette g\u00f8res fra system konfigurationen. +Build=Byg +Maven\ Version=Maven version +Use\ private\ Maven\ repository=Benyt et privat Mavenarkiv +Incremental\ build\ -\ only\ build\ changed\ modules=Inkrementel byg - byg kun moduler med \u00e6ndringer +Maven\ Version.error.1=Jenkins har brug for at vide hvor din Maven2/3 er installeret. +Goals\ and\ options=M\u00e5l og tilvalg +Build\ modules\ in\ parallel=Byg moduler i parallel +Build\ Settings=Byggeindstillinger +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Byg hver gang en \u00f8jebliksbilledeafh\u00e6ngihed bliver bygget +Root\ POM=Rod POM +Alternate\ settings\ file=Fil med alternative indstillinger diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties new file mode 100644 index 0000000..a0a2bc2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties @@ -0,0 +1,38 @@ +# 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. + +Build=Build +Maven\ Version=Maven-Version +Root\ POM=Stamm-POM +Build\ modules\ in\ parallel=Baue Module parallel +Disable\ automatic\ artifact\ archiving=Deaktiviere automatische Archivierung von Artefakten +Build\ Settings=Build-Einstellungen +Goals\ and\ options=Goals und Optionen +Use\ private\ Maven\ repository=Verwende privates Maven-Repository +Alternate\ settings\ file=Alternative Settings-Datei +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Baue dieses Projekt, wenn eine SNAPSHOT-Abhängigkeit gebaut wurde +Incremental\ build\ -\ only\ build\ changed\ modules=Inkrementelles Bauen - baut nur geänderte Module +Maven\ Version.error.1=Jenkins muss Ihr Maven2/3-Installationsverzeichnis kennen. +Maven\ Version.error.2=Bitte geben Sie dieses in der Systemkonfiguration an. +Resolve\ Dependencies\ during\ Pom\ parsing=Löse Abhängigkeiten während der Pom-Analyse auf +Process\ Plugins\ during\ Pom\ parsing=Arbeite Plugins während der Pom-Analyse ab +Maven\ Validation\ Level=Maven Validierungsstufe \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties new file mode 100644 index 0000000..ccba7b5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties @@ -0,0 +1,39 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Maven\ Version.error.1=Jenkins necesita saber donde está instalado Maven2/3. +Maven\ Version.error.2=Configuraló en la pantalla de configuración del sistema. +Root\ POM=Fichero POM raíz +Build=Proyecto +Goals\ and\ options=Goles y opciones +Use\ private\ Maven\ repository=Utilizar un repositorio maven privado +Build\ Settings=Propiedades del proyecto +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Ejecutar siempre que cualquier ''SNAPSHOT'' de los que dependa sea creado +Maven\ Version=Versión de maven +Disable\ automatic\ artifact\ archiving=Desactivar automáticamente el archivado de artefactos +Alternate\ settings\ file=Fichero alternativo de configuración +Incremental\ build\ -\ only\ build\ changed\ modules=Ejecución incremental (Sólo ejecutar los módulos que tengan cambios) +Build\ modules\ in\ parallel=Ejecutar módulos en paralelo +Process\ Plugins\ during\ Pom\ parsing=Procesar los plugins mientras se procesa el fichero "Pom" +Resolve\ Dependencies\ during\ Pom\ parsing=Resolver dependencias mientras se procesa el fichero "Pom" +Maven\ Validation\ Level=Nivel de validación "Maven" + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties new file mode 100644 index 0000000..f960dcf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties @@ -0,0 +1,36 @@ +# 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. + +Alternate\ settings\ file=Fichier settings alternatif +Block\ build\ when\ dependency\ building=Bloquer le build pendant la construction des d\u00E9pendances +Build=Build +Incremental\ build\ -\ only\ build\ changed\ modules=Construction incr\u00E9mentale - ne faire la construction (build) que pour les modules chang\u00E9s +Maven\ Version=Version de Maven +Root\ POM=POM Racine +Build\ modules\ in\ parallel=Construire les modules en parallèle +Build\ Settings=Configuration du build +Use\ private\ Maven\ repository=Utilise un repository Maven priv\u00E9 +Use\ private\ maven\ repository=Utiliser un repository Maven privé +Goals\ and\ options=Goals et options +Maven\ Version.error.1=Jenkins a besoin de savoir où Maven2/3 est installé. +Maven\ Version.error.2=Veuillez le faire dans la configuration système. +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Lance un build à chaque fois qu''une dépendance SNAPSHOT est construite diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties new file mode 100644 index 0000000..3cd10c7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties @@ -0,0 +1,39 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Build=\u30d3\u30eb\u30c9 +Maven\ Version=\u4f7f\u7528\u3059\u308bMaven +Maven\ Version.error.1=Maven2/3\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5148\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +Maven\ Version.error.2=\u30b7\u30b9\u30c6\u30e0\u306e\u8a2d\u5b9a\u3067\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +Root\ POM=\u30eb\u30fc\u30c8POM +Goals\ and\ options=\u30b4\u30fc\u30eb\u3068\u30aa\u30d7\u30b7\u30e7\u30f3 +Alternate\ settings\ file=settings.xml +Incremental\ build\ -\ only\ build\ changed\ modules=\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30bf\u30eb\u30d3\u30eb\u30c9 - \u5909\u66f4\u3055\u308c\u305f\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u307f\u30d3\u30eb\u30c9 +Build\ modules\ in\ parallel=\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u500b\u5225\u306b\u4e26\u5217\u30d3\u30eb\u30c9 +Use\ private\ Maven\ repository=\u5c02\u7528\u306eMaven\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4f7f\u7528 +Resolve\ Dependencies\ during\ Pom\ parsing=POM\u89e3\u6790\u4e2d\u306b\u4f9d\u5b58\u6027\u3092\u89e3\u6c7a +Process\ Plugins\ during\ Pom\ parsing=POM\u89e3\u6790\u4e2d\u306b\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u5b9f\u884c +Maven\ Validation\ Level= +Build\ Settings=\u30d3\u30eb\u30c9\u8a2d\u5b9a +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=\u4f9d\u5b58\u3059\u308b\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u304c\u30d3\u30eb\u30c9\u3055\u308c\u305f\u3068\u304d\u306b\u30d3\u30eb\u30c9 +Disable\ automatic\ artifact\ archiving=\u6210\u679c\u7269\u3092\u81ea\u52d5\u4fdd\u5b58\u3057\u306a\u3044 + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties new file mode 100644 index 0000000..f28de02 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties @@ -0,0 +1,28 @@ +# 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. + +Build=Bouwpoging +Maven\ Version=Maven versie +Root\ POM=Top niveau POM +Goals=Doel +Build\ modules\ in\ parallel=Bouw modules parallel +Build\ Settings=Bouwconfiguratie diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties new file mode 100644 index 0000000..9c8b070 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties @@ -0,0 +1,37 @@ +# 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. + +Build=Construir +Maven\ Version=Vers\u00e3o do Maven +Root\ POM=POM Ra\u00edz +Build\ modules\ in\ parallel=Construir m\u00f3dulos em paralelo +Build\ Settings=Configura\u00e7\u00f5es de Constru\u00e7\u00e3o +Disable\ automatic\ artifact\ archiving=Desabilitar arquivamento autom\u00e1tico de artefatos +# Please do so from the system configuration. +Maven\ Version.error.2=Favor fazer a configura\u00e7\u00e3o do sistema. +Use\ private\ Maven\ repository=Usar reposit\u00f3rio privado Maven +Incremental\ build\ -\ only\ build\ changed\ modules=Compila\u00e7\u00e3o incremental - apenas construir m\u00f3dulos alterados +# Jenkins needs to know where your Maven2 is installed. +Maven\ Version.error.1=Jenkins precisa saber onde est\u00e1 a instala\u00e7\u00e3o do Maven +Goals\ and\ options=Metas e op\u00e7\u00f5es +Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Construir um SNAPSHOT sempre que executar uma constru\u00e7\u00e3o +Alternate\ settings\ file=Arquivo de configura\u00e7\u00e3o alternativo diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties new file mode 100644 index 0000000..4bd4df6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties @@ -0,0 +1,28 @@ +# 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. + +Build=\u0421\u0431\u043e\u0440\u043a\u0430 +Maven\ Version=\u0412\u0435\u0440\u0441\u0438\u044f Maven +Root\ POM=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 POM +Goals=\u0426\u0435\u043b\u0438 +Build\ modules\ in\ parallel=\u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u043e\u0434\u0443\u043b\u0438 \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u043e +Build\ Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties new file mode 100644 index 0000000..18c4003 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties @@ -0,0 +1,30 @@ +# 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. + +Build=Yap\u0131land\u0131rma +Maven\ Version=Maven\ Versiyonu +Root\ POM=K\u00f6k POM +Goals=Hedefler +Build\ modules\ in\ parallel=Mod\u00fclleri\ paralel\ yap\u0131land\u0131r +Build\ Settings=Yap\u0131land\u0131rma\ Ayarlar\u0131 +Goals\ and\ options=Hedefler ve se\u00e7enekler +Use\ private\ maven\ repository=\u00d6zel maven repository''yi kullan diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly new file mode 100644 index 0000000..93dc199 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly @@ -0,0 +1,38 @@ + + + + + + + +
+ ${%Are you sure about deleting all the disabled modules?} + + +
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties new file mode 100644 index 0000000..33d96c2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties @@ -0,0 +1,24 @@ +# 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. + +Yes=Ja +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Er du sikker p\u00e5 at du vil slette alle moduler der er sl\u00e5et fra? diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties new file mode 100644 index 0000000..db21dc4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Sollen die deaktivierten Module wirklich gelöscht werden? +Yes=Ja diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties new file mode 100644 index 0000000..943f5a6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties @@ -0,0 +1,25 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=¿Estás seguro de querer borrar todos los módulos que fueron desactivados? +Yes=Sí + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties new file mode 100644 index 0000000..47ab0c5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u00CAtes-vous s\u00FBr(e) de vouloir supprimer tous les modules d\u00E9sactiv\u00E9s ? +Yes=Oui diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties new file mode 100644 index 0000000..ea7b3df --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u672c\u5f53\u306b\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664\u3057\u307e\u3059\u304b\uff1f +Yes=\u306f\u3044 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties new file mode 100644 index 0000000..810a245 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Bent u zeker? U staat op het punt alle desactiveerde modules te verwijderen! +Yes=Ja diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties new file mode 100644 index 0000000..6ef20e5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Tem certeza que deseja excluir todos os m\u00f3dulos desabilitados? +Yes=Sim diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties new file mode 100644 index 0000000..84191d2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438? +Yes=\u0414\u0430 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties new file mode 100644 index 0000000..08d82c2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u00C4r du s\u00E4ker p\u00E5 att ta bort alla inaktiverade moduler? +Yes=Ja diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties new file mode 100644 index 0000000..05de929 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=T\u00fcm\ devre\ d\u0131\u015f\u0131\ b\u0131rak\u0131lm\u0131\u015f\ mod\u00fclleri\ silmek\ istedi\u011finize\ emin\ misiniz? +Yes=Evet diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly new file mode 100644 index 0000000..7130300 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly @@ -0,0 +1,49 @@ + + + + + + + +

${%title(it.name)}

+

+ ${%description} +

+ + + + + + + + + + + +
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties new file mode 100644 index 0000000..29b2765 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties @@ -0,0 +1,26 @@ +# 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. + +title=Project {0} +description=\ + These modules are no longer a part of the project, but left for archival purpose.\ + If you''d like to delete them permanently, choose "delete all disabled modules" from left. \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties new file mode 100644 index 0000000..fe11571 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties @@ -0,0 +1,27 @@ +# 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. + +title=Projekt {0} +Disabled=Sl\u00e5et Fra +Modules=Moduler +description=Disse moduler er ikke l\u00e6ngere en del af projektet, men er bibeholdt for at arkivere dem. \ +Hvis du gerne vil have dem slettet permanent, v\u00e6lg da "Slet alle moduler der er sl\u00e5et fra" fra menuen til venstre. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties new file mode 100644 index 0000000..ecb5959 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties @@ -0,0 +1,28 @@ +# 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. + +title=Projekt {0} +description=\ + Diese Module sind nicht länger Teil des Projekts, werden aber zur Archivierungszwecken aufbewahrt. \ + Wenn Sie diese Module endgültig löschen möchten, wählen Sie links die Funktion "Alle deaktivierten Module löschen". +Modules=Module +Disabled=Deaktiviert diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties new file mode 100644 index 0000000..90d7de2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties @@ -0,0 +1,30 @@ +# 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. + +title=Proyecto {0} +description=\ + Estos módulos no forman parte del proyecto, pero se utilizan para poder ser archivardos. \ + Si prefieres que se borren permanentemente, elije "borrar todos los módulos inactivos" del panel izquierdo. + +Disabled=Desactivado +Modules=Módulos + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties new file mode 100644 index 0000000..59785f3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties @@ -0,0 +1,28 @@ +# 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. + +title=Projet {0} +description=\ + Ces modules ne font plus partie du projet; ils sont conservés pour archivage.\ + Si vous souhaitez les supprimer de façon permanente, sélectionnez "supprimer tous les modules désactivés" sur la gauche. +Modules=Modules +Disabled=Désactivé diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties new file mode 100644 index 0000000..1f2894a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties @@ -0,0 +1,28 @@ +# 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. + +title=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 {0} +description=\ + \u3053\u308c\u3089\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306f\u73fe\u5728\u3067\u306f\u30d3\u30eb\u30c9\u306e\u4e00\u90e8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u904e\u53bb\u30ed\u30b0\u3068\u3057\u3066\u53c2\u7167\u76ee\u7684\u3067\u6b8b\u3055\u308c\u3066\u3044\u307e\u3059\u3002\ + \u3053\u308c\u3089\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u305f\u3044\u5834\u5408\u306f\u5de6\u30e1\u30cb\u30e5\u30fc\u304b\u3089\u300c\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664\u300d\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044 +Modules=\u30e2\u30b8\u30e5\u30fc\u30eb +Disabled=\u7121\u52b9\u30e2\u30b8\u30e5\u30fc\u30eb diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties new file mode 100644 index 0000000..6bd692b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties @@ -0,0 +1,29 @@ +# 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. + +title=Project {0} +description=\ + Deze modules maken niet langer deel uit van het project, ze zijn hier enkel aanwezig \ + voor historische redenen. Indien je wenst kun je deze permanent verwijderen door \ + links op "Verwijder alle gedesactiveerde modules" te klikken. +Modules=Module +Disabled=Gedesactiveerd \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties new file mode 100644 index 0000000..e5a28f4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties @@ -0,0 +1,28 @@ +# 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. + +title=Projeto {0} +description=\ + Estes m\u00f3dulos n\u00e3o fazem mais parte do projeto, mas deixados para prop\u00f3sito de arquivamento.\ + Se voc\u00ea quiser exclu\u00ed-los permanentemente, escolha a op\u00e7\u00e3o "excluir todos os m\u00f3dulos desabilitados" a esquerda. +Modules=M\u00f3dulos +Disabled=Desabilitado diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties new file mode 100644 index 0000000..a87e6e5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties @@ -0,0 +1,28 @@ +# 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. + +title=\u041f\u0440\u043e\u0435\u043a\u0442 {0} +description=\ + \u042d\u0442\u0438 \u043c\u043e\u0434\u0443\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0447\u0430\u0441\u0442\u044c\u044e \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043d\u043e \u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u044b \u0434\u043b\u044f \u0446\u0435\u043b\u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \ + \u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0445 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438" \u0441\u043b\u0435\u0432\u0430. +Modules=\u041c\u043e\u0434\u0443\u043b\u0438 +Disabled=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties new file mode 100644 index 0000000..85e9f7d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties @@ -0,0 +1,28 @@ +# 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. + +title=Proje {0} +description=\ + Bu mod\u00fcller art\u0131k projenin bir par\u00e7as\u0131 olmamalar\u0131na ra\u011fmen, ar\u015fivsel ama\u00e7la b\u0131rak\u0131lm\u0131\u015ft\u0131r.\ + Kal\u0131c\u0131 olarak silmek isterseniz, sol taraftan "T\u00fcm devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f mod\u00fclleri sil" k\u0131sm\u0131n\u0131 se\u00e7iniz. +Modules=Mod\u00fcller +Disabled=Devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly new file mode 100644 index 0000000..445038d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly @@ -0,0 +1,34 @@ + + + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties new file mode 100644 index 0000000..9b12b90 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties @@ -0,0 +1,24 @@ +# 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. + +Global\ MAVEN_OPTS=Globale MAVEN_OPTS +Maven\ Project\ Configuration=Maven Projekt Konfiguration diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties new file mode 100644 index 0000000..e2947cb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009 , Sun Microsystems, Inc., Seiji Scribe, 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. + +Maven\ Project\ Configuration=Maven Projekt-Konfiguration +Global\ MAVEN_OPTS=Globale MAVEN_OPTS diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties new file mode 100644 index 0000000..c3f7c80 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties @@ -0,0 +1,24 @@ +# 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. + +Maven\ Project\ Configuration=Configuración de un proyecto maven +Global\ MAVEN_OPTS=Valor para la variable global MAVEN_OPTS diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties new file mode 100644 index 0000000..6d9f984 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Global\ MAVEN_OPTS=MAVEN_OPTS global +Maven\ Project\ Configuration=Configuration des projets Maven diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties new file mode 100644 index 0000000..55778c9 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009 , 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. + +Maven\ Project\ Configuration=Maven\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8 +Global\ MAVEN_OPTS=Global MAVEN_OPTS diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties new file mode 100644 index 0000000..fe5807c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Global\ MAVEN_OPTS=Globale MAVEN_OPTS +Maven\ Project\ Configuration=Maven projectconfiguratie diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties new file mode 100644 index 0000000..22076bd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties @@ -0,0 +1,24 @@ +# 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. + +Global\ MAVEN_OPTS= Global MAVEN_OPTS +Maven\ Project\ Configuration= Configura\u00e7\u00e3o do Projeto Maven diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties new file mode 100644 index 0000000..247def0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Global\ MAVEN_OPTS=\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0435 MAVEN_OPTS +Maven\ Project\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0430 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties new file mode 100644 index 0000000..217afb8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009 , Sun Microsystems, Inc., Seiji Scribe, 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. + +Maven\ Project\ Configuration=Maven\u9879\u76ee\u914d\u7f6e +Global\ MAVEN_OPTS=\u5168\u5c40MAVEN_OPTS diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly new file mode 100644 index 0000000..53398c4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly @@ -0,0 +1,41 @@ + + + + +
+ Specify a whitespace-separated list of maven goals or phases to be executed, + such as "install javadoc:javadoc". If left unspecified, + the default goal + specified in the POM will be used, and if even that is unspecified, "install" + will be run. + +

+ This field can also include any other Maven options. Jenkins also makes + these variables + available as system properties to builds. +

+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly new file mode 100644 index 0000000..0db3522 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly @@ -0,0 +1,97 @@ + + + + + + +

${it.pronoun} ${it.displayName}

+ + + + +
+
+ ${%This project is currently disabled} + + + +
+
+
+ +
+
+ + + +
+
+
+
+ + + + + + + + ${act.displayName} + + + + ${%Workspace} + + + + + + ${%Recent Changes} + + + + + + ${%Latest Test Result} + + + +
+ + + + + + + + + + + +
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties new file mode 100644 index 0000000..8dcddad --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +text=\ + Please perform a build so that Jenkins can \ + parse the list of modules from POM. +Overview={0} Overview \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties new file mode 100644 index 0000000..7461f82 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties @@ -0,0 +1,28 @@ +# 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. + +Latest\ Test\ Result=Seneste testmodul +Enable=Sl\u00e5 til +Workspace=Arbejdsomr\u00e5de +Last\ Successful\ Artifacts=Seneste succesfulde artifakter +This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra +Recent\ Changes=Nyelige \u00e6ndringer diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties new file mode 100644 index 0000000..74a4079 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties @@ -0,0 +1,29 @@ +# 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. + +Workspace=Arbeitsbereich +Recent\ Changes=Letzte Änderungen +Latest\ Test\ Result=Letztes Testergebnis +Last\ Successful\ Artifacts=Letzte erfolgreiche Artefakte +Enable=Aktivieren +This\ project\ is\ currently\ disabled=Dieses Projekt ist momentan deaktiviert. +Disable\ Project=Projekt deaktivieren diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties new file mode 100644 index 0000000..15adcbe --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties @@ -0,0 +1,29 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +Recent\ Changes=Cambios recientes +Workspace=Espacio de trabajo +Latest\ Test\ Result=Últimos resultados de tests +Last\ Successful\ Artifacts=Último artefacto correcto +Enable=Activar +This\ project\ is\ currently\ disabled=Este proyecto está desactivado +Disable\ Project=Desactivar este proyecto diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties new file mode 100644 index 0000000..2bd03a5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties @@ -0,0 +1,26 @@ +# 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. + +Workspace=Espace de travail +Recent\ Changes=Changements récents +Latest\ Test\ Result=Derniers résultats des tests +Last\ Successful\ Artifacts=Derniers artefacts construits avec succès diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties new file mode 100644 index 0000000..eb01b50 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Workspace=Munkahely diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties new file mode 100644 index 0000000..15db7e6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties @@ -0,0 +1,26 @@ +# 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. + +Last\ Successful\ Artifacts=Ultimi artifact con successo +Latest\ Test\ Result=Ultimo risultato tes +Recent\ Changes=Modifiche recenti +Workspace=Workspace diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties new file mode 100644 index 0000000..43605f7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties @@ -0,0 +1,30 @@ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman +# +# 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. + +Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9 +Recent\ Changes=\u6700\u65b0\u306e\u5909\u66f4 +Latest\ Test\ Result=\u6700\u65b0\u306e\u30c6\u30b9\u30c8\u7d50\u679c +Last\ Successful\ Artifacts=\u6700\u65b0\u6210\u529f\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269 +This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002 +Enable=\u6709\u52b9\u5316 +Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316 + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties new file mode 100644 index 0000000..218798c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Last\ Successful\ Artifacts=Siste feilfrie bygg +Recent\ Changes=Siste Forandinger diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties new file mode 100644 index 0000000..0538e47 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties @@ -0,0 +1,31 @@ +# 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. + +Modules=Modules +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Een bouwpoging is bezig met het interpreteren van de lijst van modules gedefinieerd in de POM. +text= Gelieve een nieuwe bouwpoging te starten. Op deze \ + manier kan Jenkins uw modulelijst opbouwen op basis van uw POM. +Overview={0} Overzicht +Workspace=Werkplaats +Recent\ Changes=Recente veranderingen +Last\ Successful\ Artifacts=Laatste succesvolle artefacten +Latest\ Test\ Result=Laatste testresultaat diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties new file mode 100644 index 0000000..bf0b551 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties @@ -0,0 +1,26 @@ +# 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. + +Workspace= +Recent\ Changes=Mudan\u00e7as Recentes +Latest\ Test\ Result=\u00daltimo Resultado de Teste +Last\ Successful\ Artifacts=\u00daltimos Artefatos que obtiveram Sucesso diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties new file mode 100644 index 0000000..2b0a894 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties @@ -0,0 +1,26 @@ +# 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. + +Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f +Recent\ Changes=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f +Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439 \u0441\u0431\u043E\u0440\u043A\u0438 +Latest\ Test\ Result=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u043e\u0432 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties new file mode 100644 index 0000000..01f70ac --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties @@ -0,0 +1,25 @@ +# 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. + +Latest\ Test\ Result=Senaste testresultat +Recent\ Changes=Senaste F\u00F6r\u00E4ndringar +Workspace=Arbetsyta diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties new file mode 100644 index 0000000..94ab382 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties @@ -0,0 +1,32 @@ +# 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. + +text=\ + L\u00fctfen Jenkins''\u0131n POM i\u00e7erisindeki mod\u00fcllerin listesini ayr\u0131\u015ft\u0131rabilmesi i\u00e7in \ + bir yap\u0131land\u0131rma i\u015flemi yap\u0131n\u0131z. +Overview={0} Genel\ Bak\u0131\u015f +Modules=Mod\u00fcller +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=POM i\u00e7erisindeki mod\u00fclleri ayr\u0131\u015ft\u0131rmak i\u00e7in bir yap\u0131land\u0131rma \u00e7al\u0131\u015f\u0131yor. +Workspace=\u00e7al\u0131\u015fma Alan\u0131 +Recent\ Changes=Son De\u011fi\u015fiklikler +Latest\ Test\ Result=En son test sonu\u00e7lar\u0131 +Last\ Successful\ Artifacts=Son Ba\u015far\u0131l\u0131 Artefaktlar diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly new file mode 100644 index 0000000..71a15b7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly @@ -0,0 +1,59 @@ + + + + + + +

${%Modules}

+ + + + + + ${%A build is in progress to parse the list of modules from POM.} + + +
+ ${%text} +
+
+
+
+ + + + + + + + + + + + +
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties new file mode 100644 index 0000000..fa3af3c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties @@ -0,0 +1,26 @@ +# 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. + +text=\ + Please perform a build so that Jenkins can \ + parse the list of modules from POM. +Overview={0} Overview \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties new file mode 100644 index 0000000..f79e0e9 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties @@ -0,0 +1,26 @@ +# 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. + +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Et byg er i gang for at parse listen af moduler fra POM''en. +Disabled=Sl\u00e5et Fra +Modules=Moduler +text=V\u00e6r venlig at k\u00f8re et byg, s\u00e5 Jenkins kan parse listen af moduler fra POM''en. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties new file mode 100644 index 0000000..24e3dc8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties @@ -0,0 +1,28 @@ +# 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. + +Modules=Module +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Die Liste der Module wird momentan aus der POM-Datei ermittelt. +text=\ + Bitte führen Sie einen Build aus , damit Jenkins \ + die Liste der Module aus der POM-Datei ermitteln kann. +Disabled=Deaktiviert diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties new file mode 100644 index 0000000..633bb96 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties @@ -0,0 +1,27 @@ +# 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. + +text=\ + Por favor lanza una ejecución de manera que Jenkins pueda reconocer la lista de módulos presentes en el fichero POM +Disabled=Desactivado +Modules=Módulos +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Se está ejecutando el proyecto para poder analizar el fichero POM diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties new file mode 100644 index 0000000..c42aad0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties @@ -0,0 +1,28 @@ +# 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. + +Modules= +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Un build est en cours de parcours de la liste des modules fournis par le POM. +text=\ + Merci de lancer un build afin que Jenkins \ + puisse parcourir la liste des modules \u00e0 partir du POM. +Disabled=Désactivés diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties new file mode 100644 index 0000000..2bc29dd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties @@ -0,0 +1,29 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +Modules=\u30e2\u30b8\u30e5\u30fc\u30eb +Disabled=\u7121\u52b9\u30e2\u30b8\u30e5\u30fc\u30eb +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=\ + \u30d3\u30eb\u30c9\u306fPOM\u304b\u3089\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u3001\u9032\u884c\u4e2d\u3067\u3059\u3002 + +text=Jenkins\u304cPOM\u304b\u3089\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u306b\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties new file mode 100644 index 0000000..5034e56 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties @@ -0,0 +1,26 @@ +# 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. + +text=\ + Gelieve een bouwpoging te starten zodat Jenkins \ + de lijst van modules via de POM kan opbouwen. +Overview={0} Overzicht \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties new file mode 100644 index 0000000..5ff6ce3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties @@ -0,0 +1,27 @@ +# 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. + +Modules=M\u00F3dulos +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Uma constru\u00e7\u00e3o est\u00e1 em progresso para analisar a lista de m\u00f3dulos do POM. +text= Favor execute uma constru\u00e7\u00e3o para que o Jenkins\ + possa analisar os m\u00f3dulos do POM. +Disabled=Desabilitado diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties new file mode 100644 index 0000000..63b9a51 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties @@ -0,0 +1,29 @@ +# 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. + +text=\ + \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0431\u043e\u0440\u043a\u0443 \u0447\u0442\u043e\u0431\u044b Jenkins \u0441\u043c\u043e\u0433\ + \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u043c\u043e\u0434\u0443\u043b\u0435\u0439 \u0438\u0437 POM. + +Modules=\u041c\u043e\u0434\u0443\u043b\u0438 +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=\u0421\u0431\u043e\u0440\u043a\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u043c\u043e\u0434\u0443\u043b\u0435\u0439 \u0438\u0437 POM. +Disabled=\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties new file mode 100644 index 0000000..b953575 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Disabled=Inaktiverad +Modules=Moduler diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties new file mode 100644 index 0000000..04b0292 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties @@ -0,0 +1,29 @@ +# 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. + +text=\ + L\u00fctfen Jenkins''\u0131n POM i\u00e7erisindeki mod\u00fcllerin listesini ayr\u0131\u015ft\u0131rabilmesi i\u00e7in \ + bir yap\u0131land\u0131rma i\u015flemi yap\u0131n\u0131z. +Overview={0} Genel\ Bak\u0131\u015f +Modules=Mod\u00fcller +A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=POM i\u00e7erisindeki mod\u00fclleri ayr\u0131\u015ft\u0131rmak i\u00e7in bir yap\u0131land\u0131rma \u00e7al\u0131\u015f\u0131yor. +Disabled=Devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly new file mode 100644 index 0000000..4891551 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly @@ -0,0 +1,27 @@ + + +
+ ${%body} +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties new file mode 100644 index 0000000..e8c67ab --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +body=\ + Build a maven2 project. Jenkins takes advantage of your POM files and \ + drastically reduces the configuration. \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties new file mode 100644 index 0000000..08c6e64 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties @@ -0,0 +1,24 @@ +# 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. + +body=Byg et maven2/3 projekt. Jenkins udnytter dine POM filer og reducerer herved \ +dramatisk behovet for konfiguration. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties new file mode 100644 index 0000000..516828f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties @@ -0,0 +1,25 @@ +# 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. + +body=\ + Dieses Profil baut ein Maven 2/3 Projekt. Jenkins wertet dabei Ihre POM Dateien aus und \ + reduziert damit den Konfigurationsaufwand ganz erheblich. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties new file mode 100644 index 0000000..0f36509 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties @@ -0,0 +1,23 @@ +# 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. + +body=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B9\u03B1 maven2/3 project. O Jenkins \u03B1\u03BE\u03B9\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 POM \u03BA\u03B1\u03B9 \u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03B4\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B7 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties new file mode 100644 index 0000000..1de1783 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties @@ -0,0 +1,25 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +body=\ + Ejecuta un proyecto maven2/3. Jenkins es capaz de aprovechar la configuracion presente en los ficheros POM, reduciendo drásticamente la configuración. + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties new file mode 100644 index 0000000..2e94675 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties @@ -0,0 +1,27 @@ +# 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. + +# OUTDATED +body=\ + Construit un projet avec maven2/3. Jenkins utilise directement vos fichiers POM \ + et diminue radicalement l''effort de configuration. Cette fonctionnalit\u00e9 est encore en b\u00eata mais elle est \ + disponible afin d''obtenir vos retours. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties new file mode 100644 index 0000000..c6b1510 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties @@ -0,0 +1,23 @@ +# 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. + +body=Effettua una build di un progetto maven2/3. Jenkins sfrutta i file POM e riduce drasticamente la configurazione. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties new file mode 100644 index 0000000..e20a291 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +body=\ + Maven2/3\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002Jenkins\u306fPOM\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u5fc5\u8981\u306a\u60c5\u5831\u3092\u8aad\u307f\u53d6\u308b\u306e\u3067\u3001\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u9805\u76ee\u306f\u3054\u304f\u308f\u305a\u304b\u3067\u3059\u3002 \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties new file mode 100644 index 0000000..c0cebdb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties @@ -0,0 +1,23 @@ +# 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. + +body=Maven2/3 \uD504\uB85C\uC81D\uD2B8\uB97C \uBE4C\uB4DC\uD569\uB2C8\uB2E4. Jenkins\uC740 POM \uD30C\uC77C\uC758 \uC774\uC810\uC744 \uAC00\uC9C0\uACE0 \uC788\uACE0 \uAE09\uACA9\uD788 \uC124\uC815\uC744 \uC904\uC785\uB2C8\uB2E4. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties new file mode 100644 index 0000000..89cffba --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +body=Bygg et Maven 2/3 prosjekt. Jenkins tar fordel av dine POM (Project Object Model - Prosjekt Objekt Modell) filer og drastisk reduserer behovet for konfigurasjon. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties new file mode 100644 index 0000000..05d2601 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties @@ -0,0 +1,27 @@ +# 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. + +body=\ + Bouw een maven2/3 project. Jenkins maakt gebruikt van uw POM bestand wat \ + uw nood aan configuratie drastisch reduceert. Merk op dat deze functionaliteit \ + nog steeds in ontwikkeling is, maar al reeds beschikbaar gesteld wordt om \ + terugkoppeling te krijgen van gebruikers. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties new file mode 100644 index 0000000..cd187b6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties @@ -0,0 +1,27 @@ +# 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. + +# OUTDATED +body=\ + Construir um projeto maven2/3. Jenkins tira vantagem de seus arquivos POM e \ + reduz drasticamente a configura\u00e7\u00e3o. Ainda \u00e9 um trabalho em progresso, mas \ + diposto a aceitar feedback. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties new file mode 100644 index 0000000..910812f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties @@ -0,0 +1,24 @@ +# 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. + +# OUTDATED +body=\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 maven2/3. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0438\u0437 \u043F\u0440\u043E\u0435\u043A\u0442\u043D\u044B\u0445 \u0444\u0430\u0439\u043B\u043E\u0432 POM, \u0447\u0442\u043E \u0443\u043C\u0435\u043D\u0448\u0438\u0442 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties new file mode 100644 index 0000000..c3e25ca --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +body=Bygg ett maven2/3 projekt. Jenkins utnyttjar dina POM filer och kommer drastiskt minska behovet av konfiguration. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties new file mode 100644 index 0000000..c4f818b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties @@ -0,0 +1,24 @@ +# 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. + +# OUTDATED +body=Maven2/3\ projesi\ yap\u0131land\u0131r.\ Jenkins,\ POM\ dosyalar\u0131n\u0131z\u0131n\ avantajlar\u0131n\u0131\ kullan\u0131r\ ve\ konfig\u00fcrasyonu\ inan\u0131lmaz\ derecede\ azalt\u0131r.\ Hala\ \u00fczerinde\ \u00e7al\u0131\u015fma\ devam\ ediyor,\ dolay\u0131s\u0131yla geri\ bildirimler\ daima faydal\u0131 olacakt\u0131r. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties new file mode 100644 index 0000000..7abc177 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties @@ -0,0 +1,24 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +body=\ + \u6784\u5efa\u4e00\u4e2amaven2/3\u9879\u76ee.Jenkins\u5229\u7528\u4f60\u7684POM\u6587\u4ef6,\u8fd9\u6837\u53ef\u4ee5\u5927\u5927\u51cf\u8f7b\u6784\u5efa\u914d\u7f6e. \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly new file mode 100644 index 0000000..e7d1ecd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly @@ -0,0 +1,35 @@ + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class new file mode 100644 index 0000000..ca4b863 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class new file mode 100644 index 0000000..2ea91c3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class new file mode 100644 index 0000000..74628af --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class new file mode 100644 index 0000000..a7a532f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class new file mode 100644 index 0000000..94049df --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class new file mode 100644 index 0000000..2907b32 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class new file mode 100644 index 0000000..0e9e482 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class new file mode 100644 index 0000000..b276427 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly new file mode 100644 index 0000000..ba82bab --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly @@ -0,0 +1,69 @@ + + + +

${%Module Builds}

+ + + + + + + + + + + + + + + + + + +
+ + ${m.key.displayName} (${%noRun}) + + + + ${mb.iconColor.description} + + + + ${m.key.displayName} + + + ${mb.durationString} + + + + ${m.key.displayName} + + + + +
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties new file mode 100644 index 0000000..e641df0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder +# +# 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. + +noRun=didn''t run diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties new file mode 100644 index 0000000..6e18937 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties @@ -0,0 +1,24 @@ +# 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. + +Module\ Builds=Modulbyg +noRun=k\u00f8rte ikke diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties new file mode 100644 index 0000000..8410563 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Modul-Builds \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties new file mode 100644 index 0000000..fc8341f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties @@ -0,0 +1,25 @@ +# 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. + +Module\ Builds=Módulos +# didn''t run +noRun=No se ejecutó diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties new file mode 100644 index 0000000..d9cec29 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Moduuli k\u00E4\u00E4nn\u00F6kset diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties new file mode 100644 index 0000000..72dcf73 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Builds des modules diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties new file mode 100644 index 0000000..8d37b0a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Module\ Builds=\u30e2\u30b8\u30e5\u30fc\u30eb\u30d3\u30eb\u30c9 \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties new file mode 100644 index 0000000..b77438f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Moduler i bygget diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties new file mode 100644 index 0000000..6c7c78a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties @@ -0,0 +1,25 @@ +# 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. + +Module\ Builds=M\u00f3dulos de contru\u00e7\u00e3o +# didn''t run +noRun=N\u00e3o executar diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties new file mode 100644 index 0000000..abebe50 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Modulbyggen diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class new file mode 100644 index 0000000..8f0c620 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly new file mode 100644 index 0000000..9f20a7b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly @@ -0,0 +1,32 @@ + + + + + +
println System.getenv("PATH")
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly new file mode 100644 index 0000000..d96643c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly @@ -0,0 +1,33 @@ + + + + + + +

${%Environment Variables}

+ +
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties new file mode 100644 index 0000000..a0bf3ee --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Milj\u00f8variable diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties new file mode 100644 index 0000000..0b36c28 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Umgebungsvariablen diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties new file mode 100644 index 0000000..7fe9b23 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Variables de entorno diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties new file mode 100644 index 0000000..b11b956 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Variables d'Environnement diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties new file mode 100644 index 0000000..18909b7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=\u74b0\u5883\u5909\u6570 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties new file mode 100644 index 0000000..78a10c0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Omgevingsvariabelen diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties new file mode 100644 index 0000000..44009ae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Vari\u00e1veis de Ambiente diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties new file mode 100644 index 0000000..1fb3d22 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties new file mode 100644 index 0000000..8a99aa6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=Ortam\ De\u011fi\u015fkenleri diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly new file mode 100644 index 0000000..03cd50b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly @@ -0,0 +1,34 @@ + + + + + + +
+ ${%description} +
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties new file mode 100644 index 0000000..b277d4b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + Obtain information about the running Maven process by clicking \ + links from the left. Often useful for trouble-shooting problems. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties new file mode 100644 index 0000000..2fdb888 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties @@ -0,0 +1,24 @@ +# 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. + +description=Find information om den k\u00f8rende Mavenproces ved at klikke \ +linkene til venstre. Dette er ofte nyttigt ved fejlfinding. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties new file mode 100644 index 0000000..06ffaf2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + Durch Klicken auf die links angezeigten Links erhalten Sie Informationen \ + über den laufenden Maven Prozeß. Dies hilft oft bei der Fehlersuche. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties new file mode 100644 index 0000000..538ed1d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties @@ -0,0 +1,26 @@ +# 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. + +description=\ + Visualiza la información de los procesos maven en ejecución pulsando sobre los enlaces de la izquierda.
\ + Suele ser bastante útil para identificar problemas. + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties new file mode 100644 index 0000000..a1938ca --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + Obtenez des informations sur le process Maven en cours en cliquant les liens sur la gauche. \ + Utile pour corriger des problèmes. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties new file mode 100644 index 0000000..9de9ef7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +description=\u8aac\u660e diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties new file mode 100644 index 0000000..e6cb427 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties @@ -0,0 +1,26 @@ +# 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. + +description=\ + Verkrijg informatie over lopende Maven processen door te klikken \ + op de webreferentie aan de linkerzijde. Dit kan dikwijls nuttig blijken \ + bij het analyzeren van problemen. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties new file mode 100644 index 0000000..d894b93 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + Obtenha informa\u00e7\u00f5es sobre o processo Maven em execu\u00e7\u00e3o clicando \ + nos links da esquerda. Frequentemente \u00fatil para problemas de repara\u00e7\u00e3o. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties new file mode 100644 index 0000000..03179e1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + \u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u043e\u043c \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 Maven, \u043a\u043b\u0438\u043a\u043d\u0443\u0432 \u043d\u0430 \u0441\u0441\u044b\u043b\u043a\u0438 \u0441\u043b\u0435\u0432\u0430.\ + \u041e\u0431\u044b\u0447\u043d\u043e \u044d\u0442\u043e \u0431\u044b\u0432\u0430\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u043e \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties new file mode 100644 index 0000000..61fd348 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties @@ -0,0 +1,25 @@ +# 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. + +description=\ + \u00c7al\u0131\u015fan Maven i\u015flemleri ile ilgili bilgi almak i\u00e7in l\u00fctfen soldaki linklere t\u0131klay\u0131n\u0131z \ + Sorun \u00e7\u00f6zme ile ilgili konularda faydal\u0131d\u0131r. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly new file mode 100644 index 0000000..deab3da --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly @@ -0,0 +1,34 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties new file mode 100644 index 0000000..9dcd0d1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Systemegenskaber +Environment\ Variables=Milj\u00f8variable +Thread\ Dump=Tr\u00e5ddump +Script\ Console=Skriptkonsol diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties new file mode 100644 index 0000000..9eb255d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Systemeigenschaften +Environment\ Variables=Umgebungsvariablen +Thread\ Dump=Thread Dump +Script\ Console=Skriptkonsole diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties new file mode 100644 index 0000000..ecea55e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties @@ -0,0 +1,26 @@ +# 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. + +Thread\ Dump=Volcado de hilos (threads) +System\ Properties=Propiedades del sistema +Script\ Console=Consola de comandos +Environment\ Variables=Variables de entorno diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties new file mode 100644 index 0000000..c676de7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Propriétés système +Environment\ Variables=Variables d''environnement +Thread\ Dump=Dump du thread +Script\ Console=Console de script diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties new file mode 100644 index 0000000..379138e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 +Environment\ Variables=\u74b0\u5883\u5909\u6570 +Thread\ Dump=\u30b9\u30ec\u30c3\u30c9\u4e00\u89a7 +Script\ Console=\u30b9\u30af\u30ea\u30d7\u30c8\u30b3\u30f3\u30bd\u30fc\u30eb diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties new file mode 100644 index 0000000..4c70aa8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Systeemparameters +Environment\ Variables=Omgevingsvariabelen +Thread\ Dump=Thread Dump +Script\ Console=Scriptconsole diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties new file mode 100644 index 0000000..f13a6b7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Propriedades do Sistema +Environment\ Variables=Vari\u00e1veis de Ambiente +Thread\ Dump=Limpar Threads +Script\ Console=Console de Script diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties new file mode 100644 index 0000000..1a436d9 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b +Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f +Thread\ Dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430 +Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties new file mode 100644 index 0000000..172d8fd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties @@ -0,0 +1,26 @@ +# 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. + +System\ Properties=Sistem\ \u00d6zellikleri +Environment\ Variables=Ortam\ De\u011fi\u015fkenleri +Thread\ Dump=Thread\ Dump +Script\ Console=Script\ Konsolu diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly new file mode 100644 index 0000000..3365821 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly @@ -0,0 +1,34 @@ + + + + + + +

${%System Properties}

+ + +
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties new file mode 100644 index 0000000..1464f5a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Systemegenskaber diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties new file mode 100644 index 0000000..9a809be --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Systemeigenschaften diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties new file mode 100644 index 0000000..f554675 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Propiedades del sistema diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties new file mode 100644 index 0000000..82e1536 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Propriétés système diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties new file mode 100644 index 0000000..aa2497d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties new file mode 100644 index 0000000..e103ff6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Systeemparameters diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties new file mode 100644 index 0000000..8ba0bae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Propriedades do Sistema diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties new file mode 100644 index 0000000..140fbad --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties new file mode 100644 index 0000000..8185734 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Sistem\ \u00d6zellikleri diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly new file mode 100644 index 0000000..e91b6e8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly @@ -0,0 +1,36 @@ + + + + + + +

${%Thread Dump}

+ +

${t.key}

+
${t.value}
+
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties new file mode 100644 index 0000000..2226971 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Tr\u00e5ddump diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties new file mode 100644 index 0000000..b71cbd5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Thread Dump diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties new file mode 100644 index 0000000..9e8fa01 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Volcado de hilos (threads) diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties new file mode 100644 index 0000000..81443f6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Dump du Thread diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties new file mode 100644 index 0000000..934eae2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Thread\ Dump=\u30b9\u30ec\u30c3\u30c9\u30c0\u30f3\u30d7 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties new file mode 100644 index 0000000..098ec8d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Thread Dump diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties new file mode 100644 index 0000000..1d59daa --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Limpar Threads diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties new file mode 100644 index 0000000..2da4991 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties new file mode 100644 index 0000000..8b4aa4c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=Thread\ Dump diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class new file mode 100644 index 0000000..8612c7f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class new file mode 100644 index 0000000..d7ad34b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class new file mode 100644 index 0000000..979e4f8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class new file mode 100644 index 0000000..93549ae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class new file mode 100644 index 0000000..77b49b0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class new file mode 100644 index 0000000..37a703c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class new file mode 100644 index 0000000..519c3b4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class new file mode 100644 index 0000000..d22af7e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class new file mode 100644 index 0000000..880f3be --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class new file mode 100644 index 0000000..75acca1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class new file mode 100644 index 0000000..0b682a4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class new file mode 100644 index 0000000..2e110ae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly new file mode 100644 index 0000000..d264a1c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + +
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class new file mode 100644 index 0000000..4f63148 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class new file mode 100644 index 0000000..8ba1203 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class new file mode 100644 index 0000000..5bc95cf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class new file mode 100644 index 0000000..b1fbd71 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class new file mode 100644 index 0000000..36658c5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties new file mode 100644 index 0000000..101da63 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties @@ -0,0 +1,51 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +MavenBuild.FailedEarlier=Build failed before it gets to this module +MavenBuild.KeptBecauseOfParent=Kept because {0} is kept +MavenBuild.Triggering=Triggering a new build of {0} +MavenBuilder.Aborted=Aborted +MavenBuilder.AsyncFailed=Asynchronous execution failure +MavenBuilder.Failed=Maven failed with error. +MavenBuilder.Waiting=Waiting for Jenkins to finish collecting data + +MavenModule.Pronoun=Module + +MavenModuleSet.DiplayName=Build a maven2/3 project +MavenModuleSet.AlternateSettingsRelativePath=Alternate settings file must be a relative path. + +MavenModuleSetBuild.DiscoveredModule=Discovered a new module {0} {1} +MavenModuleSetBuild.FailedToParsePom=Failed to parse POMs +MavenModuleSetBuild.NoSuchPOMFile=No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration? +MavenModuleSetBuild.NoSuchAlternateSettings=No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace. +MavenModuleSetBuild.NoMavenInstall=A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist. + +MavenProbeAction.DisplayName=Monitor Maven Process + +MavenProcessFactory.ClassWorldsNotFound=No classworlds*.jar found in {0} -- Is this a valid maven2/3 directory? + +MavenRedeployer.DisplayName=Deploy to Maven repository +ProcessCache.Reusing=Reusing existing maven process + +RedeployPublisher.getDisplayName=Deploy artifacts to Maven repository +RedeployPublisher.RepositoryURL.Mandatory=Repository URL is mandatory +ReleaseAction.DisplayName=Release New Version diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties new file mode 100644 index 0000000..2ef5d60 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties @@ -0,0 +1,44 @@ +# 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. + +MavenModuleSetBuild.DiscoveredModule=Opdagede et nyt modul {0} {1} +MavenBuild.Triggering=Starter et nyt byg af {0} +MavenBuild.KeptBecauseOfParent=Beholdt da {0} er gemt +MavenModuleSetBuild.FailedToParsePom=Kunne ikke parse POM''erne +MavenBuilder.Waiting=Venter p\u00e5 at Jenkins bliver f\u00e6rdig med at samle data +MavenBuilder.Aborted=Afbrudt +MavenBuilder.Failed=Maven stoppede med en fejl. +MavenProbeAction.DisplayName=Overv\u00e5g Mavenproces +MavenProcessFactory.ClassWorldsNotFound=Ingen classworlds*.jar fundet i {0} -- Er dette et gyldigt maven2 direktorie? +MavenModuleSet.DiplayName=Byg et maven2/3 projekt +MavenModule.Pronoun=Modul +MavenBuild.FailedEarlier=Bygget fejler f\u00f8r det n\u00e5r til dette modul +MavenModuleSetBuild.NoSuchPOMFile=Ingen fil kaldet {0}\nM\u00e5ske mangler du at specificere den korrekte POM fil placering i projekt konfigurationen? +MavenRedeployer.DisplayName=Send til Mavenarkiv +RedeployPublisher.getDisplayName=Send artifakter til Mavenarkiv +MavenModuleSetBuild.NoMavenInstall=En Maven installation skal v\u00e6re tilg\u00e6ngelig for at dette projekt kan bygge.\n\ +Enten har din server ikke en Maven installation defineret, eller den anmodede Maven version eksisterer ikke. +ProcessCache.Reusing=Genbrug eksisterende Mavenproces +MavenBuilder.AsyncFailed=Fejl under asynkron udf\u00f8relse +MavenModuleSetBuild.NoSuchAlternateSettings=Der eksisterer ingen konfigurationsfil ved navn {0}\n\ +Kontroller at din alternative konfigurationsfil er korrekt specificeret og eksisterer i arbejdsomr\u00e5det +ReleaseAction.DisplayName=Udgiv ny version diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties new file mode 100644 index 0000000..469b246 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties @@ -0,0 +1,55 @@ +# 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. + +MavenBuild.FailedEarlier=Build schlug bereits vor diesem Modul fehl +MavenBuild.KeptBecauseOfParent=Zurückbehalten, weil {0} zurückbehalten wurde. +MavenBuild.Triggering=Löse neuen Build von {0} aus +MavenBuilder.Aborted=Abgebrochen +MavenBuilder.AsyncFailed=Fehlschlag der asynchronen Ausführung +MavenBuilder.Failed=Maven schlug mit Fehlern fehl. +MavenBuilder.Waiting=Warte bis Jenkins die Datensammlung abgeschlossen hat + +MavenModule.Pronoun=Modul + +MavenModuleSet.DiplayName=Maven 2/3 Projekt bauen +MavenModuleSet.AlternateSettingsRelativePath=Alternative Settings-Datei muss ein relativer Pfad sein. + +MavenModuleSetBuild.DiscoveredModule=Neues Modul {0} {1} entdeckt +MavenModuleSetBuild.FailedToParsePom=POMs konnten nicht geparst werden +MavenModuleSetBuild.NoSuchPOMFile={0} nicht gefunden\nEventuell müssen Sie den korrekten POM-Dateipfad in der Projektkonfiguration angeben. +MavenModuleSetBuild.NoMavenInstall=\ + Um dieses Projekt zu bauen, wird eine Maven-Installation benötigt. \ + Entweder wurden für Ihren Server noch keine Maven-Installationen konfiguriert, \ + oder die benötigte Maven-Version existiert nicht. +MavenModuleSetBuild.NoSuchAlternateSettings=\ + Die Settings-Datei {0} existiert nicht. Bitte überprüfen Sie die Angabe der Settings-Datei \ + sowie deren Existenz im Arbeitsbereich. + +MavenProbeAction.DisplayName=Maven Prozess überwachen + +MavenProcessFactory.ClassWorldsNotFound=Datei classworlds*.jar in {0} nicht gefunden -- Ist dies ein gültiges Maven2-Verzeichnis? + +MavenRedeployer.DisplayName=In Maven-Repository ausbringen (deploy) +ProcessCache.Reusing=Bestehenden Maven-Prozess wiederverwenden + +RedeployPublisher.getDisplayName=Bringe Artefakte in Maven-Repository aus (deploy) +ReleaseAction.DisplayName=Neue Version veröffentlichen (release) diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties new file mode 100644 index 0000000..331b4c8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties @@ -0,0 +1,52 @@ +# The MIT License +# +# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributers +# +# 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. + +MavenBuild.FailedEarlier=La ejecución falló antes de llegar a este módulo +MavenBuild.KeptBecauseOfParent=Mantener porque {0} se mantiene +MavenBuild.Triggering=Lanzando la ejecución de {0} +MavenBuilder.Aborted=Cancelado +MavenBuilder.AsyncFailed=La ejecución asincrona ha fallado +MavenBuilder.Failed=Maven ha acabado con error +MavenBuilder.Waiting=Esperando a que Jenkins finalize de recopilar datos + +MavenModule.Pronoun=Modulo + +MavenModuleSet.DiplayName=Crear un proyecto maven2/3 + +MavenModuleSetBuild.DiscoveredModule=Se ha descubierto un nuevo módulo {0} {1} +MavenModuleSetBuild.FailedToParsePom=Error al analizar el fichero POM +MavenModuleSetBuild.NoSuchPOMFile=No existe el fichero {0}\nQuizas sea necesario que especifiques la ubicación del fichero POM +MavenModuleSetBuild.NoSuchAlternateSettings=No existe el fichero de configuración {0} \nVerifica que se ha especificado un fichero en la configuración, y que dicho fichero existe el el espacio de trabajo. +MavenModuleSetBuild.NoMavenInstall=Se necesita una instalación de ''maven'' para poder ejecutar este proyecto.\nEs posible que no se haya especificado dónde está la instalación de maven o sea incorrecta. + +MavenProbeAction.DisplayName=Monitorizar proceso maven + +MavenProcessFactory.ClassWorldsNotFound=No se encontró la libraría classworlds*.jar en {0} -- ¿Es un directorio de instalación de maven válido? + +MavenRedeployer.DisplayName=Desplegar al repositorio maven. +ProcessCache.Reusing=Reutilizar un proceso existente de maven + +RedeployPublisher.getDisplayName=Desplegar ficheros al repositorio maven +ReleaseAction.DisplayName=Publicar una nueva versión + +RedeployPublisher.RepositoryURL.Mandatory=La URL del repositorio es obligatoria +MavenModuleSet.AlternateSettingsRelativePath=El fichero de configuración alternativo debe tener una ruta relativa. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties new file mode 100644 index 0000000..0247365 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties @@ -0,0 +1,46 @@ +# 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. + +MavenBuild.FailedEarlier=Le build a échoué avant d''atteindre ce module +MavenBuild.Triggering=Lancement d''un nouveau build de {0} +MavenBuilder.Aborted=Annulé +MavenBuilder.AsyncFailed=Erreur d''exécution asynchrone +MavenBuilder.Failed=Maven a échoué avec une erreur. +MavenBuilder.Waiting=En attente qu''Jenkins finisse de récupérer les données + +MavenModule.Pronoun=Module + +MavenModuleSet.DiplayName=Construire un projet maven2/3 + +MavenModuleSetBuild.DiscoveredModule=Un nouveau module {0} {1} a été trouvé +MavenModuleSetBuild.FailedToParsePom=Echec à la lecture des POMs +MavenModuleSetBuild.NoSuchFile=Pas de fichier {0}\nAvez-vous spécifié le bon chemin vers le fichier POM dans la configuration du projet? + +MavenProbeAction.DisplayName=Surveiller un process Maven + +MavenProcessFactory.ClassWorldsNotFound=Pas de fichier classworlds*.jar trouvé dans {0} -- Est-ce un répertoire maven2/3 valide? + +MavenRedeployer.DisplayName=Déployer vers un repository Maven +ProcessCache.Reusing=Réutilisation du process Maven existant + +RedeployPublisher.getDisplayName=Déployer les artefacts dans le repository Maven +ReleaseAction.DisplayName=Livrer une nouvelle version diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties new file mode 100644 index 0000000..4554972 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties @@ -0,0 +1,52 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman +# +# 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. + +MavenBuild.FailedEarlier=\u3053\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u524d\u306b\u30d3\u30eb\u30c9\u304c\u5931\u6557\u3057\u307e\u3057\u305f +MavenBuild.KeptBecauseOfParent={0}\u304c\u4fdd\u7559\u4e2d\u306e\u305f\u3081\u4fdd\u7559\u3057\u307e\u3059 +MavenBuild.Triggering={0}\u306e\u65b0\u898f\u30d3\u30eb\u30c9\u306e\u5b9f\u884c +MavenBuilder.Aborted=\u4e2d\u6b62 +MavenBuilder.AsyncFailed=\u975e\u540c\u671f\u5b9f\u884c\u5931\u6557 +MavenBuilder.Failed=Maven\u306f\u30a8\u30e9\u30fc\u3067\u5931\u6557\u3057\u307e\u3057\u305f\u3002 +MavenBuilder.Waiting=Jenkins\u304c\u30c7\u30fc\u30bf\u53ce\u96c6\u3092\u5b8c\u4e86\u3059\u308b\u307e\u3067\u5f85\u6a5f\u4e2d + +MavenModule.Pronoun=\u30e2\u30b8\u30e5\u30fc\u30eb + +MavenModuleSet.DiplayName=Maven2/3\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30d3\u30eb\u30c9 + +MavenModuleSetBuild.DiscoveredModule=\u65b0\u898f\u30e2\u30b8\u30e5\u30fc\u30eb {0} {1} \u3092\u767a\u898b +MavenModuleSetBuild.FailedToParsePom=POM\u306e\u89e3\u6790\u306b\u5931\u6557 +MavenModuleSetBuild.NoSuchPOMFile={0}\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u305b\u3093\u3002\n\u304a\u305d\u3089\u304f\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u753b\u9762\u3067\u6b63\u3057\u3044POM\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +MavenModuleSetBuild.NoSuchAlternateSettings=\ + \u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb {0} \u304c\u3042\u308a\u307e\u305b\u3093\u3002\n\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u6b63\u3057\u3044\u3053\u3068\u3001\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306b\u5b58\u5728\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +MavenModuleSetBuild.NoMavenInstall=\ + \u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30d3\u30eb\u30c9\u3059\u308b\u306b\u306fMaven\u304c\u5fc5\u8981\u3067\u3059\u3002\nMaven\u306e\u8a2d\u5b9a\u304c\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u3001\u3082\u3057\u304f\u306f\u6307\u5b9a\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u306eMaven\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 + +MavenProbeAction.DisplayName=Maven\u30d7\u30ed\u30bb\u30b9\u306e\u76e3\u8996 + +MavenProcessFactory.ClassWorldsNotFound={0}\u306bclassworlds*.jar\u304c\u307f\u3064\u304b\u308a\u307e\u305b\u3093\u3002 -- \u6b63\u3057\u3044Maven2\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059\u304b? + +MavenRedeployer.DisplayName=Maven\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u306e\u30c7\u30d7\u30ed\u30a4 +ProcessCache.Reusing=\u65e2\u5b58Maven\u30d7\u30ed\u30bb\u30b9\u3092\u518d\u5229\u7528 + +RedeployPublisher.getDisplayName=Maven\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u6210\u679c\u7269\u3092\u30c7\u30d7\u30ed\u30a4 +RedeployPublisher.RepositoryURL.Mandatory=\u30ea\u30dd\u30b8\u30c8\u30eaURL\u306f\u5fc5\u9808\u3067\u3059\u3002 +ReleaseAction.DisplayName=\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties new file mode 100644 index 0000000..82fb8ae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties @@ -0,0 +1,47 @@ +# 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. + +MavenBuild.FailedEarlier=Het bouwen is gefaald voorafgaand aan deze module. +MavenBuild.KeptBecauseOfParent=Kept because {0} is kept +MavenBuild.Triggering=Een nieuwe bouwpoging van {0} wordt gestart. +MavenBuilder.Aborted=Afgebroken +MavenBuilder.AsyncFailed=Asynchrone uitvoeringsfout +MavenBuilder.Failed=Maven is gefaald omwille van een fout. +MavenBuilder.Waiting=Wachtend to Jenkins het verzamelen van gegevens be\u00EBindigd heeft + +MavenModule.Pronoun=Module + +MavenModuleSet.DiplayName=Bouw een maven2 p/3roject + +MavenModuleSetBuild.DiscoveredModule= Een nieuwe module {0} {1} werd ontdekt. +MavenModuleSetBuild.FailedToParsePom=Het lezen van de POMs is gefaald. +MavenModuleSetBuild.NoSuchFile=Onbekend bestand {0}\nMisschien moet je het correcte POM bestandspad op te geven in de projectconfiguratie? + +MavenProbeAction.DisplayName=Overwaak Maven Proces + +MavenProcessFactory.ClassWorldsNotFound=Geen classworlds*.jar gevonden in {0} -- Is dit een geldig maven2 pad? + +MavenRedeployer.DisplayName=Installeer in Maven repository +ProcessCache.Reusing=Hergebruik bestaand maven proces + +RedeployPublisher.getDisplayName=Artefacten uitrollen naar de Maven repository +ReleaseAction.DisplayName=Lever een nieuwe versie af. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties new file mode 100644 index 0000000..192711a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties @@ -0,0 +1,55 @@ +# 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. + +MavenBuild.FailedEarlier=Constru\u00e7\u00e3o falhou antes de chegar neste m\u00f3dulo +MavenBuild.Triggering=Disparando uma nova constru\u00e7\u00e3o de {0} +MavenBuilder.Aborted=Abortado +MavenBuilder.AsyncFailed=Falha de execucu\u00e7\u00e3o ass\u00edncrona +MavenBuilder.Failed=Maven falhou com erro. +MavenBuilder.Waiting=Aguardando Jenkins terminar de coletar dados + +MavenModule.Pronoun=M\u00f3dulo + +MavenModuleSet.DiplayName=Construir um projeto maven2/3 + +MavenModuleSetBuild.DiscoveredModule=Descoberto um novo m\u00f3dulo {0} {1} +MavenModuleSetBuild.FailedToParsePom=Falhou ao analisar POMs + +MavenProbeAction.DisplayName=Monitorar Processo Maven + +ProcessCache.Reusing=Reusar processos maven existentes + +ReleaseAction.DisplayName=Disponibilizar Nova Vers\u00e3o +# Kept because {0} is kept +MavenBuild.KeptBecauseOfParent=Mantido, pois {0} \u00e9 mantida +# No classworlds*.jar found in {0} -- Is this a valid maven2 directory? +MavenProcessFactory.ClassWorldsNotFound=classworlds*.jar n\u00e3o encontrado em {0}. Esse \u00e9 um diret\u00f3rio v\u00e1lido para o Meven2? +# No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration? +MavenModuleSetBuild.NoSuchPOMFile=Nenhum arquivo {0} encontrado\ Talvez voc\u00ea deva especificar corretamente o path do arquivo POM. +# Deploy to Maven repository +MavenRedeployer.DisplayName=Implantar no reposit\u00f3rio Maven +# Deploy artifacts to Maven repository +RedeployPublisher.getDisplayName=Implantar os artefatos no reposit\u00f3rio Maven +# A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist. +MavenModuleSetBuild.NoMavenInstall=Uma instala\u00e7\u00e3o Maven precisa estar dispon\u00edvel para a constru\u00e7\u00e3o desse projeto. +# No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace. +MavenModuleSetBuild.NoSuchAlternateSettings=N\u00e3o foi localizado o arquivo de configura\u00e7\u00e3o {0}.\Verifique se o seu arquivo de configura\u00e7\u00e3o alternativo est\u00e1 especificado corretamente no workspace diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties new file mode 100644 index 0000000..81e95de --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties @@ -0,0 +1,42 @@ +# 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. + +MavenBuild.FailedEarlier=\u0421\u0431\u043e\u0440\u043a\u0430 \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u0430\u0441\u044c \u0434\u043e \u0442\u043e\u0433\u043e \u043a\u0430\u043a \u0434\u043e\u0431\u0440\u0430\u043b\u0430\u0441\u044c \u0434\u043e \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0434\u0443\u043b\u044f +MavenBuild.Triggering=\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u044e \u043d\u043e\u0432\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 {0} +MavenBuilder.Aborted=\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e +MavenBuilder.AsyncFailed=\u041e\u0448\u0438\u0431\u043a\u0430 \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 +MavenBuilder.Failed=Maven \u0432\u0435\u0440\u043d\u0443\u043b \u043e\u0448\u0438\u0431\u043a\u0443. +MavenBuilder.Waiting=\u041e\u0436\u0438\u0434\u0430\u044e \u043f\u043e\u043a\u0430 Jenkins \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u0442 \u0441\u0431\u043e\u0440 \u0434\u0430\u043d\u043d\u044b\u0445 + +MavenModule.Pronoun=\u041c\u043e\u0434\u0443\u043b\u044c + +MavenModuleSet.DiplayName=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 maven2/3 + +MavenModuleSetBuild.DiscoveredModule=\u041d\u0430\u0439\u0434\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u043c\u043e\u0434\u0443\u043b\u044c {0} {1} +MavenModuleSetBuild.FailedToParsePom=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c POM \u0444\u0430\u0439\u043b\u044b +MavenModuleSetBuild.NoSuchFile=\u0424\u0430\u0439\u043b\u0430 "{0}" \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442\n\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u043a POM \u0444\u0430\u0439\u043b\u0443 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445 \u043f\u0440\u043e\u0435\u043a\u0442\u0430? + +MavenProbeAction.DisplayName=\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Maven + +ProcessCache.Reusing=\u041f\u0435\u0440\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 maven + +ReleaseAction.DisplayName=\u0412\u044b\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties new file mode 100644 index 0000000..b4dddfd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties @@ -0,0 +1,47 @@ +# 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. + +MavenBuild.FailedEarlier=Yap\u0131land\u0131rma bu mod\u00fcle gelmeden \u00d6nce ba\u015far\u0131s\u0131z oldu +MavenBuild.KeptBecauseOfParent={0} tutuldu\u011fu i\u00e7in tutulmu\u015ftur +MavenBuild.Triggering={0} i\u00e7in yeni bir yap\u0131land\u0131rma tetikleniyor +MavenBuilder.Aborted=Durduruldu +MavenBuilder.AsyncFailed=Asenkron \u00e7al\u0131\u015ft\u0131rma hatas\u0131 +MavenBuilder.Failed=Maven bir hata ile kar\u015f\u0131la\u015ft\u0131. +MavenBuilder.Waiting=Jenkins''\u0131n bilgi toplamay\u0131 bitirmesi bekleniyor + +MavenModule.Pronoun=Mod\u00fcl + +MavenModuleSet.DiplayName=Maven2/3 projesi yap\u0131land\u0131r + +MavenModuleSetBuild.DiscoveredModule={0} {1} olarak yeni bir mod\u00fcl bulundu +MavenModuleSetBuild.FailedToParsePom=POMlar\u0131 ayr\u0131\u015ft\u0131r\u0131rken hata ile kar\u015f\u0131la\u015f\u0131ld\u0131 +MavenModuleSetBuild.NoSuchFile={0} diye bir dosya yok\nBelkide projenin konfig\u00fcrasyonunda do\u011fru POM dosyas\u0131n\u0131n dizinini belirtmen gerekmekte? + +MavenProbeAction.DisplayName=Maven \u0130\u015flemini G\u00d6zle + +MavenProcessFactory.ClassWorldsNotFound=classworlds*.jar {0} i\u00e7erisinde bulunamad\u0131 -- Bu dizinin ge\u00e7erli bir maven2 dizini oldu\u011funa emin olun. + +MavenRedeployer.DisplayName=Maven repository''ye deploy et +ProcessCache.Reusing=Varolan maven i\u015flemin yeniden kullan\u0131l\u0131yor + +RedeployPublisher.getDisplayName=Artefaktlar\u0131 Maven repository''ye deploy et +ReleaseAction.DisplayName=Yeni Versiyon \u00c7\u0131kar (release) diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties new file mode 100644 index 0000000..33108e0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties @@ -0,0 +1,50 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +MavenBuild.FailedEarlier=Build failed before it gets to this module +MavenBuild.KeptBecauseOfParent=Kept because {0} is kept +MavenBuild.Triggering=Triggering a new build of {0} +MavenBuilder.Aborted=Aborted +MavenBuilder.AsyncFailed=Asynchronous execution failure +MavenBuilder.Failed=Maven failed with error. +MavenBuilder.Waiting=Waiting for Jenkins to finish collecting data + +MavenModule.Pronoun=\u6a21\u5757 + +MavenModuleSet.DiplayName=\u6784\u5efa\u4e00\u4e2amaven2/3\u9879\u76ee + +MavenModuleSetBuild.DiscoveredModule=Discovered a new module {0} {1} +MavenModuleSetBuild.FailedToParsePom=Failed to parse POMs +MavenModuleSetBuild.NoSuchPOMFile=No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration? +MavenModuleSetBuild.NoSuchAlternateSettings=No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace. +MavenModuleSetBuild.NoMavenInstall=A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist. + +MavenProbeAction.DisplayName=Monitor Maven Process + +MavenProcessFactory.ClassWorldsNotFound=No classworlds*.jar found in {0} -- Is this a valid maven2 directory? + +MavenRedeployer.DisplayName=Deploy to Maven repository +ProcessCache.Reusing=Reusing existing maven process + +RedeployPublisher.getDisplayName=Deploy artifacts to Maven repository +RedeployPublisher.RepositoryURL.Mandatory=Repository URL is mandatory +ReleaseAction.DisplayName=Release New Version diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class new file mode 100644 index 0000000..5d6b6b3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class new file mode 100644 index 0000000..1d7b819 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class new file mode 100644 index 0000000..fc9cbbe --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class new file mode 100644 index 0000000..d322a49 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class new file mode 100644 index 0000000..1be308c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class new file mode 100644 index 0000000..d7ddd1e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class new file mode 100644 index 0000000..39f44e4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class new file mode 100644 index 0000000..f4b1026 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class new file mode 100644 index 0000000..093ec94 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class new file mode 100644 index 0000000..7ae6e24 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class new file mode 100644 index 0000000..0f6230b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class new file mode 100644 index 0000000..6ebd2bf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class new file mode 100644 index 0000000..7dbcc67 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class new file mode 100644 index 0000000..948ea60 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class new file mode 100644 index 0000000..8ec2f96 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class new file mode 100644 index 0000000..ee7a57b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class new file mode 100644 index 0000000..278e269 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class new file mode 100644 index 0000000..ca88fa2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class new file mode 100644 index 0000000..ab89fee --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class new file mode 100644 index 0000000..fd80edd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class new file mode 100644 index 0000000..10f85da --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class new file mode 100644 index 0000000..10411df --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler new file mode 100644 index 0000000..a9a4c6e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler @@ -0,0 +1,2 @@ +#Mon Apr 04 09:40:54 PDT 2011 +constructor=id,url,uniqueVersion,evenIfUnstable diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler new file mode 100644 index 0000000..3e602b3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler @@ -0,0 +1 @@ +url \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly new file mode 100644 index 0000000..a934c4b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties new file mode 100644 index 0000000..93b8a42 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties @@ -0,0 +1,26 @@ +# 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. + +Repository\ URL=Mavenarkiv URL +Deploy\ even\ if\ the\ build\ is\ unstable=Overf\u00f8r til Mavenarkiv, ogs\u00e5 selvom bygget er ustabilt +Repository\ ID=Mavenarkiv ID +Assign\ unique\ versions\ to\ snapshots=Giv \u00f8jebliksbillederne unikke versioner diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties new file mode 100644 index 0000000..88e8020 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties @@ -0,0 +1,26 @@ +# 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. + +Repository\ ID=Repository-ID +Repository\ URL=Repository-URL +Assign\ unique\ versions\ to\ snapshots=Snapshots eindeutige Versionen zuordnen +Deploy\ even\ if\ the\ build\ is\ unstable=Ausbringen (deploy), auch wenn der Build instabil ist. \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties new file mode 100644 index 0000000..94417f9 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties @@ -0,0 +1,25 @@ +# 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. +Repository\ URL=Dirección del repositorio (URL) +Assign\ unique\ versions\ to\ snapshots=Asignar versión única a cada instantánea (snapshot) +Repository\ ID=Identificador (ID) del repositorio +Deploy\ even\ if\ the\ build\ is\ unstable=Desplegar aunque la ejecución sea inestable diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties new file mode 100644 index 0000000..14803c5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties @@ -0,0 +1,25 @@ +# 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. + +Repository\ URL=URL du repository +Repository\ ID=ID du repository +Assign\ unique\ versions\ to\ snapshots=Affecter des numéros de version uniques aux snapshots diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties new file mode 100644 index 0000000..da4e969 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman +# +# 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. + +Repository\ URL=\u30EA\u30DD\u30B8\u30C8\u30EAURL +Repository\ ID=\u30EA\u30DD\u30B8\u30C8\u30EAID +Assign\ unique\ versions\ to\ snapshots=\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8\u306B\u30E6\u30CB\u30FC\u30AF\u306A\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u4ED8\u4E0E +Deploy\ even\ if\ the\ build\ is\ unstable=\u4E0D\u5B89\u5B9A\u30D3\u30EB\u30C9\u3067\u3082\u30C7\u30D7\u30ED\u30A4 \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties new file mode 100644 index 0000000..afe3642 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Repository\ URL=URL van de repository diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties new file mode 100644 index 0000000..cb117cc --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties @@ -0,0 +1,26 @@ +# 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. + +Repository\ URL=URL do reposit\u00f3rio +Deploy\ even\ if\ the\ build\ is\ unstable=Implantar mesmo que a constru\u00e7\u00e3o esteja inst\u00e1vel +Repository\ ID=ID do reposit\u00f3rio +Assign\ unique\ versions\ to\ snapshots=Atribuir vers\u00f5es exclusivas para os Snapshots diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties new file mode 100644 index 0000000..261b7bf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Repository\ URL=URL \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties new file mode 100644 index 0000000..f73e060 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Repository\ URL= diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html new file mode 100644 index 0000000..8ada063 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html @@ -0,0 +1,8 @@ +
+ If checked, the deployment will be performed even if the build is unstable. + +

+ This can be useful if the same build definition is being used for continuous integration + and to deploy nightly snapshots. +

+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html new file mode 100644 index 0000000..2fc1f8b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html @@ -0,0 +1,9 @@ +
+ Wenn angewählt, wird das Modul ausgebracht (deploy), selbst wenn der Build + instabil ist. + +

+ Dies kann sinnvoll sein, wenn dieselbe Build-Konfiguration beispielsweise sowohl für + Continuous Integration als auch für nächtliche Schnappschüsse verwendet wird. +

+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html new file mode 100644 index 0000000..e37ea03 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html @@ -0,0 +1,15 @@ +
+ For some repository URL (such as scpexe), Maven may require + additional configuration (such as user name, executable path, etc.) + + Maven wants you to specify this in ~/.m2/settings.xml of + the user that runs Jenkins, and this ID value is used to retrieve + the setting information from this file (that is, the <server> + element with this ID value will be consulted for various + protocol-specific configuration values.) + +

+ See + the maven-deploy-plugin usage + page for more details. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html new file mode 100644 index 0000000..534977c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html @@ -0,0 +1,15 @@ +
+ Für manche Repository-URLs (z.B. scpexe) benötigt Maven + zusätzliche Einstellungen (Benutzername, Pfad zum Kommando, usw.). + + Maven erwartet diese Einstellungen in der Datei ~/.m2/settings.xml + des Benutzerkontos, unter dem Jenkins läuft. Die hier angegebene + Repository-ID wird verwendet, um die passenden Einstellungen in der + Settings-Datei zu finden (technisch: die protokollspezifischen + Informationen werden dem <server>-Element entnommen, dessen + ID mit dem hier angegebenen Wert übereinstimmt). + +

+ Mehr dazu finden Sie unter + Verwendung des maven-deploy-Plugins. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html new file mode 100644 index 0000000..e37ea03 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html @@ -0,0 +1,15 @@ +
+ For some repository URL (such as scpexe), Maven may require + additional configuration (such as user name, executable path, etc.) + + Maven wants you to specify this in ~/.m2/settings.xml of + the user that runs Jenkins, and this ID value is used to retrieve + the setting information from this file (that is, the <server> + element with this ID value will be consulted for various + protocol-specific configuration values.) + +

+ See + the maven-deploy-plugin usage + page for more details. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html new file mode 100644 index 0000000..b28bea3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html @@ -0,0 +1,12 @@ +
+ ã?‚る特定ã?®ãƒªãƒ?ジトリã?®URL(例ã?ˆã?°ã€?scpexe)ã?«å¯¾ã?—ã?¦ã€? + Mavenã?«è¿½åŠ ã?®è¨­å®š(ユーザーå??や実行パスã?ªã?©)ã‚’è¡Œã?†å¿…è¦?ã?Œã?‚ã‚Šã?¾ã?™ã€‚ + + Jenkinsを実行ã?™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼ã?®~/.m2/settings.xmlã?«ã?“れを追加ã?™ã‚‹ã?¨ã€? + ã?“ã?®ãƒ•ã‚¡ã‚¤ãƒ«ã?‹ã‚‰ãƒªãƒ?ジトリIDを使用ã?—ã?¦è¨­å®šæƒ…報をå?–å¾—ã?—ã?¾ã?™ + (ã?¤ã?¾ã‚Šã€?ã?“ã?®IDã‚’æŒ?ã?¤<server>è¦?ç´ ã?‹ã‚‰ã€?様々ã?ªãƒ—ロトコル仕様ã?®è¨­å®šå€¤ã‚’探ã?—ã?¾ã?™)。 + +

+ 詳細ã?¯ã€? + maven-deploy-pluginã?®ä½¿ç”¨æ–¹æ³•ã‚’å?‚ç…§ã?—ã?¦ã??ã? ã?•ã?„。 +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html new file mode 100644 index 0000000..5c41b4e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html @@ -0,0 +1,8 @@ +
+ If checked, the deployment will assign timestamp-based unique version number + to the deployed artifacts, when their versions end with -SNAPSHOT. + +

+ To the best of my knowledge, this is almost never a useful option especially + for CI servers like Jenkins. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html new file mode 100644 index 0000000..09be1e2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html @@ -0,0 +1,8 @@ +
+ Wenn angewählt, wird beim Deployment eine eindeutige Versionsnummer zugeordnet + (basierend auf einem Zeitstempel), wenn die Versionen mit -SNAPSHOT enden. + +

+ In den allermeisten Fällen ist dies jedoch im Zusammenspiel mit Continuous-Integration-Servern + (wie z.B. Jenkins) wenig sinnvoll. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html new file mode 100644 index 0000000..5c41b4e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html @@ -0,0 +1,8 @@ +
+ If checked, the deployment will assign timestamp-based unique version number + to the deployed artifacts, when their versions end with -SNAPSHOT. + +

+ To the best of my knowledge, this is almost never a useful option especially + for CI servers like Jenkins. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html new file mode 100644 index 0000000..64d8c6c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html @@ -0,0 +1,7 @@ +
+ �ェック�る���ージョン�末尾�-SNAPSHOT�場�� + �果物�タイムスタンプベース�ユニーク��ージョン番�を付与���。 + +

+ ��知���る�り���Jenkins�よ��CIサー���特����ん�役�立���オプション��。 +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html new file mode 100644 index 0000000..cee3034 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html @@ -0,0 +1,4 @@ +
+ Specify the URL of the Maven repository to deploy artifacts to, + such as scp://server.acme.org/export/home/maven/repository/ +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html new file mode 100644 index 0000000..97d8dad --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html @@ -0,0 +1,4 @@ +
+ Gibt die URL des Maven-Repositories an, in das die Artefakte ausgebracht (deployed) + werden sollen, z.B. scp://server.acme.org/export/home/maven/repository/. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html new file mode 100644 index 0000000..cee3034 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html @@ -0,0 +1,4 @@ +
+ Specify the URL of the Maven repository to deploy artifacts to, + such as scp://server.acme.org/export/home/maven/repository/ +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html new file mode 100644 index 0000000..02a67f1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html @@ -0,0 +1,4 @@ +
+ scp://server.acme.org/export/home/maven/repository/ã?®ã‚ˆã?†ã?«ã€? + æˆ?果物をデプロイã?™ã‚‹Mavenã?®ãƒªãƒ?ジトリã?®URLを指定ã?—ã?¦ã??ã? ã?•ã?„。 +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html new file mode 100644 index 0000000..5e87652 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html @@ -0,0 +1,16 @@ +
+ + Deploy artifacts to a Maven repository. In comparison with the standard mvn deploy, + this feature allows you to deploy artifacts after the entire build is confirmed to be + successful. + +

+ This prevents a typical problem in Maven, where some modules are deployed before + a critical failure is discovered later down the road, rendering the repository state + inconsistent. + +

+ Note that regardless of this configuration, you can always manually come back + to Jenkins and deploy any of the past artifacts to any repository of your choice, + after the fact. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html new file mode 100644 index 0000000..a6b2d79 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html @@ -0,0 +1,14 @@ +
+ Bringt Artefakte in ein Maven-Repository aus (deployment). Im Gegensatz zum + üblichen mvn deploy, bringt dieses Funktionsmerkmal Artefakte erst dann aus, + wenn der komplette Build erfolgreich abgeschlossen wurde. + +

+ Dies verhindert ein typisches Problem im Zusammenspiel mit Maven, bei dem zunächst einige + Module bereits ausgebracht werden, bevor etwas später im Build ein kritischer Fehler + entdeckt wird - und somit das Repository in einen inkonsistenten Zustand gerät. + +

+ Hinweis: Unabhängig von dieser Einstellung können Sie aber auch jederzeit manuell + Artefakte aus durchgeführten Builds in beliebige Repositories ausbringen. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html new file mode 100644 index 0000000..5e87652 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html @@ -0,0 +1,16 @@ +
+ + Deploy artifacts to a Maven repository. In comparison with the standard mvn deploy, + this feature allows you to deploy artifacts after the entire build is confirmed to be + successful. + +

+ This prevents a typical problem in Maven, where some modules are deployed before + a critical failure is discovered later down the road, rendering the repository state + inconsistent. + +

+ Note that regardless of this configuration, you can always manually come back + to Jenkins and deploy any of the past artifacts to any repository of your choice, + after the fact. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html new file mode 100644 index 0000000..46c4773 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html @@ -0,0 +1,12 @@ +
+ + æˆ?果物をMavenã?®ãƒªãƒ?ジトリã?«ãƒ‡ãƒ—ロイã?—ã?¾ã?™ã€‚標準ã?®mvn deployã?¨ã?®é?•ã?„ã?¯ã€? + ã?™ã?¹ã?¦ã?®ãƒ“ルドã?Œæˆ?功ã?—ã?Ÿã?“ã?¨ã‚’確èª?ã?—ã?¦ã?‹ã‚‰æˆ?果物をデプロイã?§ã??ã‚‹ã?“ã?¨ã?§ã?™ã€‚ + +

+ ã?“ã?®æ©Ÿèƒ½ã‚’使ã?†ã?¨ã€?致命的ã?ªå¤±æ•—ã?Œèµ·ã??ã‚‹å‰?ã?«ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã?Œãƒ‡ãƒ—ロイã?•ã‚Œã?¦ã€? + リãƒ?ジトリã?ŒçŸ›ç›¾ã?—ã?ŸçŠ¶æ…‹ã?«ã?ªã?£ã?¦ã?—ã?¾ã?†Mavenã?§ã?¯ã‚ˆã??ã?‚ã‚‹å•?題を解決ã?—ã?¾ã?™ã€‚ + +

+ ã?“ã?®è¨­å®šã‚’è¡Œã?£ã?¦ã?„ã‚‹ã?‹ã?«ã‚ˆã‚‰ã?šã€?Jenkinsã?®ç”»é?¢ã?‹ã‚‰ã?„ã?¤ã?§ã‚‚é?ŽåŽ»ã?®æˆ?果物を任æ„?ã?®ãƒªãƒ?ジトリã?«ãƒ‡ãƒ—ロイã?§ã??ã?¾ã?™ã€‚ +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class new file mode 100644 index 0000000..e52324b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class new file mode 100644 index 0000000..e160d47 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class new file mode 100644 index 0000000..4600d1b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class new file mode 100644 index 0000000..5aff213 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class new file mode 100644 index 0000000..535f086 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class new file mode 100644 index 0000000..26a4299 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class new file mode 100644 index 0000000..2198713 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class new file mode 100644 index 0000000..7328ae7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class new file mode 100644 index 0000000..846c5b4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class new file mode 100644 index 0000000..5b1284f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class new file mode 100644 index 0000000..24871b0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class new file mode 100644 index 0000000..87b967f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class new file mode 100644 index 0000000..f9e9afb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class new file mode 100644 index 0000000..ced3336 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly new file mode 100644 index 0000000..44f3b19 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly @@ -0,0 +1,33 @@ + + + + + + [deployed] + + + \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties new file mode 100644 index 0000000..200fc42 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository=Sendt til Mavenarkiv diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties new file mode 100644 index 0000000..d03d187 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository=Ausgebracht in Repository diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties new file mode 100644 index 0000000..ae0d740 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository=Desplegar al repositorio diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties new file mode 100644 index 0000000..b27681e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository=Déployé sur le repository diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties new file mode 100644 index 0000000..0686009 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties @@ -0,0 +1,23 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Deployed\ to\ repository=\u30EA\u30DD\u30B8\u30C8\u30EA\u306B\u30C7\u30D7\u30ED\u30A4\u6E08\u307F diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties new file mode 100644 index 0000000..6b2ba05 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository= diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties new file mode 100644 index 0000000..0a23b06 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Deployed\ to\ repository=Repository''ye deploy edildi diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler new file mode 100644 index 0000000..5539ed0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler @@ -0,0 +1 @@ +id,repositoryUrl,uniqueVersion \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly new file mode 100644 index 0000000..1574a4f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly @@ -0,0 +1,59 @@ + + + + + + + + + +

+ + ${%Redeploy Artifacts} +

+ + + + + + + + + +

+ ${%This page allows you to redeploy the build artifacts to a repository after the fact.} +

+ + + + + + + +
+
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties new file mode 100644 index 0000000..efa3d24 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties @@ -0,0 +1,26 @@ +# 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. + +Redeploy\ Artifacts=Gensend artifakter +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\ +Denne side g\u00f8r det muligt at gensende byggeartifakterne til et Mavenarkiv efter bygget er udf\u00f8rt. +OK=OK diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties new file mode 100644 index 0000000..e6f7738 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties @@ -0,0 +1,27 @@ +# 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. + +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\ + Auf dieser Seite können Sie Artefakte im Nachhinein (also nach Abschluss eines Builds) \ + in ein Maven-Repository ausbringen. +Redeploy\ Artifacts=Artefakte ausbringen (deploy) +OK=OK diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties new file mode 100644 index 0000000..78716c0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties @@ -0,0 +1,25 @@ +# 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. + +OK=Aceptar +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Esta p\u00E1gina te permite desplegar los artefactos que se creen correctamente (sin fallos) a un repositorio +Redeploy\ Artifacts=Desplegar artefactos diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties new file mode 100644 index 0000000..a767ce1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties @@ -0,0 +1,25 @@ +# 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. + +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Cette page vous permet de redéployer les artefacts vers un repository après coup. +Redeploy\ Artifacts=Redéployer les artefacts +OK= diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties new file mode 100644 index 0000000..bd62f0e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +Redeploy\ Artifacts=\u6210\u679c\u7269\u306e\u518d\u30c7\u30d7\u30ed\u30a4 +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\ + \u30d3\u30eb\u30c8\u5f8c\u306b\u6210\u679c\u7269\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u518d\u30c7\u30d7\u30ed\u30a4\u3057\u307e\u3059\u3002 +OK=\u5b9f\u884c \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties new file mode 100644 index 0000000..8547c83 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties @@ -0,0 +1,26 @@ +# 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. + +Redeploy\ Artifacts=Reimplantar artefatos +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Essa p\u00e1gina permite reimplantar \ +os artefatos da constru\u00e7\u00e3o. +OK=OK diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties new file mode 100644 index 0000000..7e0fc1e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties @@ -0,0 +1,24 @@ +# 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. + +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\ +Bu sayfa t\u00fcm i\u015flemler bittikten sonra bile yap\u0131land\u0131rma artefaktlar\u0131n\u0131, repository''ye yeniden deploy edebilmeyi sa\u011flar. diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class new file mode 100644 index 0000000..398bb13 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class new file mode 100644 index 0000000..39fceaf --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class new file mode 100644 index 0000000..7636c42 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class new file mode 100644 index 0000000..57a8d54 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class new file mode 100644 index 0000000..cda495f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class new file mode 100644 index 0000000..700c200 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class new file mode 100644 index 0000000..e527ba3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class new file mode 100644 index 0000000..8783184 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class new file mode 100644 index 0000000..fff4a8b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class new file mode 100644 index 0000000..8dd2426 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class new file mode 100644 index 0000000..520c3da --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class new file mode 100644 index 0000000..1e793b5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class new file mode 100644 index 0000000..b5fca54 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class new file mode 100644 index 0000000..6a32cef --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class new file mode 100644 index 0000000..b7d0aad --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class new file mode 100644 index 0000000..8479a51 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class new file mode 100644 index 0000000..b53e6b7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class new file mode 100644 index 0000000..319b3d0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class new file mode 100644 index 0000000..4cf9971 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class new file mode 100644 index 0000000..8bf5283 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class new file mode 100644 index 0000000..9071f0c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class new file mode 100644 index 0000000..127c8f1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties new file mode 100644 index 0000000..f8e1354 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties @@ -0,0 +1,51 @@ +# 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. + +BuildInfoRecorder.DisplayName=Record build information + +MavenArtifact.DeployingMainArtifact=Deploying the main artifact {0} +MavenArtifact.DeployingAttachedArtifact=Deploying the attached artifact {0} + +MavenArtifactArchiver.DisplayName=Archive the artifacts +MavenArtifactArchiver.FailedToInstallToMaster=Failed to install artifact to the master + +MavenFingerprinter.DisplayName=Record fingerprints + +MavenJavadocArchiver.DisplayName=Publish javadoc +MavenTestJavadocArchiver.DisplayName=Publish Test javadoc +MavenJavadocArchiver.FailedToCopy=Unable to copy Javadoc from {0} to {1} +MavenJavadocArchiver.NoDestDir=Unable to obtain the destDir from javadoc mojo + +MavenMailer.DisplayName=E-mail Notification + +MavenSiteArchiver.DisplayName=Maven-generated site + +ReportAction.DisplayName=Maven reports +ReportCollector.DisplayName=Record Maven reports +ReportCollector.OutsideSite=Maven report output goes to {0}, which is outside project reporting path{1} + +SurefireArchiver.DisplayName=Publish surefire reports +SurefireArchiver.NoReportsDir=Unable to obtain the reportsDirectory from surefire:test mojo +SurefireArchiver.Recording=[JENKINS] Recording test results + +MavenAbstractArtifactRecord.Displayname=Redeploy Artifacts +HistoryWidgetImpl.Displayname=Deployment History diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties new file mode 100644 index 0000000..b3a65ca --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties @@ -0,0 +1,41 @@ +# 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. + +MavenJavadocArchiver.FailedToCopy=Kan ikke kopiere Javadocs fra {0} til {1} +ReportAction.DisplayName=Mavenrapporter +MavenFingerprinter.DisplayName=Opsamling af filfingeraftryk +MavenArtifactArchiver.DisplayName=Arkiver atifakterne +BuildInfoRecorder.DisplayName=Opsamle byggeinformation +MavenMailer.DisplayName=E-mail p\u00e5mindelse +MavenJavadocArchiver.DisplayName=Publicer javadoc +MavenArtifact.DeployingAttachedArtifact=Send de vedh\u00e6ftede artifakter {0} +MavenSiteArchiver.DisplayName=Maven genereret site +SurefireArchiver.Recording=[JENKINS] Opsamler test resultater +MavenJavadocArchiver.NoDestDir=Kan ikke finde destDir fra javadoc mojo''en +MavenAbstractArtifactRecord.Displayname=Gensend artifakter +ReportCollector.OutsideSite=Maven rapportens output g\u00f8r til {0}, hvilket ikke er i projektets rapporteringssti {1} +ReportCollector.DisplayName=Opsamle maven rapporter +MavenArtifactArchiver.FailedToInstallToMaster=Det lykkedes ikke at installere artifakten p\u00e5 master''en +MavenArtifact.DeployingMainArtifact=Sender main artifakten {0} +SurefireArchiver.DisplayName=Publicer surefirerapporter +HistoryWidgetImpl.Displayname=Sendingshistorik +SurefireArchiver.NoReportsDir=Kan ikke finde reportsDirectory fra surefire:test mojo''en diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties new file mode 100644 index 0000000..d3eaf8e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties @@ -0,0 +1,53 @@ +# 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. + +BuildInfoRecorder.DisplayName=Build-Informationen aufzeichnen + +HistoryWidgetImpl.Displayname=Entwicklungsverlauf + +MavenAbstractArtifactRecord.Displayname=Artefakte ausbringen (deploy) + +MavenArtifact.DeployingMainArtifact=Hauptartefakt {0} wird ausgebracht (deploy) +MavenArtifact.DeployingAttachedArtifact=Verknüpfte Artefakte {0} werden ausgebracht (deploy) + +MavenArtifactArchiver.DisplayName=Artefakte archivieren +MavenArtifactArchiver.FailedToInstallToMaster=Artefakt konnte nicht auf dem Master installiert werden + +MavenFingerprinter.DisplayName=Fingerabdrücke aufzeichnen + +MavenJavadocArchiver.DisplayName=Javadoc veröffentlichen +MavenJavadocArchiver.FailedToCopy=Javadocs konnten nicht von {0} nach {1} kopiert werden +MavenJavadocArchiver.NoDestDir=Das Zielverzeichnis für die Javadocs konnte nicht vom javadoc-Mojo ermittelt werden. + +MavenMailer.DisplayName=E-Mail-Benachrichtigung + +MavenSiteArchiver.DisplayName=Maven Site + +ReportAction.DisplayName=Maven-Berichte +ReportCollector.DisplayName=Maven-Berichte aufzeichnen +ReportCollector.OutsideSite=Maven-Berichte werden nach {0} ausgegeben, was außerhalb des Projektberichtspfad {1} liegt + +SurefireArchiver.DisplayName=Surefire-Berichte veröffentlichen +SurefireArchiver.NoReportsDir=Das Berichtsverzeichnis konnte nicht vom surefire:test-Mojo ermittelt werden. +SurefireArchiver.Recording=[JENKINS] Zeichne Testergebnisse auf + + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties new file mode 100644 index 0000000..c68b829 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties @@ -0,0 +1,51 @@ +# The MIT License +# +# Copyright (c) 2004-2009, 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. + +BuildInfoRecorder.DisplayName=Registro de la información de ejecuciones + +MavenArtifact.DeployingMainArtifact=Desplegando el artefacto principal {0} +MavenArtifact.DeployingAttachedArtifact=Desplegando el artefacto adjunto {0} + +MavenArtifactArchiver.DisplayName=Guardar los artefacto producidos +MavenArtifactArchiver.FailedToInstallToMaster=Error al instalar el artefacto en el nodo principal + +MavenFingerprinter.DisplayName=Guardar marcas de fichero + +MavenJavadocArchiver.DisplayName=Publcar javadoc +MavenJavadocArchiver.FailedToCopy=Imposible de copiar Javadoc desd {0} a {1} +MavenJavadocArchiver.NoDestDir=Imposible de idenfificar el directorio destino ''destDir'' del javadoc mojo + +MavenMailer.DisplayName=Notificación por E-mail + +MavenSiteArchiver.DisplayName=Sitio generado por Maven + +ReportAction.DisplayName=Informes de Maven +ReportCollector.DisplayName=Guardar informes de Maven +ReportCollector.OutsideSite=La salida de maven se almacena en {0}, que está fuera de la ruta de informes del proyecto {1} + +SurefireArchiver.DisplayName=Publicar informes de ''surefire'' +SurefireArchiver.NoReportsDir=Imposible de determinar el directorio de informes ''reportsDirectory'' del surefire:test mojo +SurefireArchiver.Recording=[JENKINS] Guardando informes de test + +MavenAbstractArtifactRecord.Displayname=Redesplegar Artefactos +HistoryWidgetImpl.Displayname=Historia de despliegues + diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties new file mode 100644 index 0000000..1896859 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties @@ -0,0 +1,50 @@ +# 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. + +BuildInfoRecorder.DisplayName=Enregistrer les informations du build + +MavenArtifact.DeployingMainArtifact=Déploiement de l''artefact principal {0} +MavenArtifact.DeployingAttachedArtifact=Déploiement de l''artefact attaché {0} + +MavenArtifactArchiver.DisplayName=Archiver les artefacts +MavenArtifactArchiver.FailedToInstallToMaster=Echec à l''installation de l''artefact sur le maître + +MavenFingerprinter.DisplayName=Enregistrer les empreintes numériques + +MavenJavadocArchiver.DisplayName=Publier les javadocs +MavenJavadocArchiver.FailedToCopy=Impossible de copier les javadocs de {0} vers {1} +MavenJavadocArchiver.NoDestDir=Impossible d''obtenir le répertoire de destination à partir du plugin javadoc + +MavenMailer.DisplayName=Notification par email + +MavenSiteArchiver.DisplayName=Site généré par Maven + +ReportAction.DisplayName=Rapports Maven +ReportCollector.DisplayName=Enregister les rapports Maven +ReportCollector.OutsideSite=La sortie des rapports Maven se fait vers {0}, soit hors du chemin de rapport projet {1} + +SurefireArchiver.DisplayName=Publier les rapports Surefire +SurefireArchiver.NoReportsDir=Impossible d''obtenir le chemin vers les rapports à partir du plugin surefire:test +SurefireArchiver.Recording=[JENKINS] Enregistrement des résultats des tests + +MavenAbstractArtifactRecord.Displayname=Redéployer les artefacts +HistoryWidgetImpl.Displayname=Historique des déploiements diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties new file mode 100644 index 0000000..e8e0d97 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties @@ -0,0 +1,50 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman +# +# 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. + +BuildInfoRecorder.DisplayName=\u30D3\u30EB\u30C9\u60C5\u5831\u306E\u8A18\u9332 + +MavenArtifact.DeployingMainArtifact=\u6210\u679C\u7269 {0} \u306E\u30C7\u30D7\u30ED\u30A4 +MavenArtifact.DeployingAttachedArtifact=\u6210\u679C\u7269 {0} \u306E\u30C7\u30D7\u30ED\u30A4 + +MavenArtifactArchiver.DisplayName=\u6210\u679C\u7269\u306E\u30A2\u30FC\u30AB\u30A4\u30D6 +MavenArtifactArchiver.FailedToInstallToMaster=\u6210\u679C\u7269\u306E\u30DE\u30B9\u30BF\u30FC\u3078\u306E\u914D\u7F6E\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002 + +MavenFingerprinter.DisplayName=\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u3092\u8A18\u9332 + +MavenJavadocArchiver.DisplayName=Javadoc\u306E\u4FDD\u5B58 +MavenJavadocArchiver.FailedToCopy=Javadoc\u3092 {0} \u304B\u3089 {1} \u3078\u30B3\u30D4\u30FC\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 +MavenJavadocArchiver.NoDestDir=Javadoc Mojo\u304B\u3089\u5B9B\u5148\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 + +MavenMailer.DisplayName=E-mail\u3067\u306E\u901A\u77E5 + +MavenSiteArchiver.DisplayName=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u6587\u66F8 + +ReportAction.DisplayName=Maven\u30EC\u30DD\u30FC\u30C8 +ReportCollector.DisplayName=Maven\u30EC\u30DD\u30FC\u30C8\u306E\u8A18\u9332 +ReportCollector.OutsideSite=Maven\u30EC\u30DD\u30FC\u30C8\u306F {0}\u306B\u51FA\u529B\u3055\u308C\u307E\u3059\u304C\u3001\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30D1\u30B9 {1} \u306E\u5916\u3067\u3059\u3002 + +SurefireArchiver.DisplayName=Surefire\u30EC\u30DD\u30FC\u30C8\u306E\u4FDD\u5B58 +SurefireArchiver.NoReportsDir=surefire:test mojo\u304B\u3089reportsDirectory\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 +SurefireArchiver.Recording=[JENKINS] \u30C6\u30B9\u30C8\u7D50\u679C\u306E\u8A18\u9332 + +MavenAbstractArtifactRecord.Displayname=\u6210\u679C\u7269\u306E\u518D\u30C7\u30D7\u30ED\u30A4 +HistoryWidgetImpl.Displayname=\u30C7\u30D7\u30ED\u30A4\u5C65\u6B74 diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties new file mode 100644 index 0000000..91c44dc --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties @@ -0,0 +1,46 @@ +# 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. + +BuildInfoRecorder.DisplayName=Registreer informatie over het bouwprocess + +MavenArtifact.DeployingMainArtifact=Hoofdartefact {0} wordt uitgerold. +MavenArtifact.DeployingAttachedArtifact=Gekoppeld artefact {0} wordt uitgerold. + +MavenArtifactArchiver.DisplayName=Archiveer de artifacten +MavenArtifactArchiver.FailedToInstallToMaster=Installatie van artifact op de hoofdnode is gefaald. + +MavenFingerprinter.DisplayName=Registreer vingerafdrukken + +MavenJavadocArchiver.DisplayName=Publiceer javadoc +MavenJavadocArchiver.FailedToCopy=Kon de javadoc niet kopi\u00EBren van {0} naar {1} +MavenJavadocArchiver.NoDestDir=Kon het doelpad voor de javadoc niet verkrijgen van de javadoc-mojo + +MavenMailer.DisplayName=E-mail-notificatie + +ReportAction.DisplayName=Maven rapport +ReportCollector.DisplayName=Registreer Maven reporten +ReportCollector.OutsideSite=Rapportuitvoer van Maven wordt naar {0} geschreven. Dit pad ligt echter buiten \ + het geconfigureerde rapporteringspad {1} + +SurefireArchiver.DisplayName=Publiceer surefire reporten +SurefireArchiver.NoReportsDir=Kon de het pad naar de rapporten niet verkrijgen van de surefire:test mojo +SurefireArchiver.Recording=[JENKINS] Vastleggen testresultaten diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties new file mode 100644 index 0000000..4017506 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties @@ -0,0 +1,45 @@ +# 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. + +BuildInfoRecorder.DisplayName=Gravar informa\u00e7\u00f5es da constru\u00e7\u00e3o +MavenArtifactArchiver.DisplayName=Arquivar os artefatos +MavenArtifactArchiver.FailedToInstallToMaster=Falhou em instalar artefato para o mestre +MavenFingerprinter.DisplayName=Gravar fingerprints +MavenJavadocArchiver.DisplayName=Publicar javadoc +MavenJavadocArchiver.FailedToCopy=Incapaz de copiar Javadoc de {0} para {1} +MavenJavadocArchiver.NoDestDir=Incapaz de obter destDir do mojo javadoc +MavenMailer.DisplayName=Notifica\u00e7\u00e3o de E-mail +ReportAction.DisplayName=Relat\u00f3rios Maven +ReportCollector.DisplayName=Gravar relat\u00f3rios Maven +ReportCollector.OutsideSite=Sa\u00edda do relat\u00f3rio Maven vai para {0}, que est\u00e1 fora do caminho de relat\u00f3rio do projeto {1} +SurefireArchiver.DisplayName=Publicar relat\u00f3rios Surefire +SurefireArchiver.NoReportsDir=Incapaz de obter reportsDirectory do surefire:test mojo +SurefireArchiver.Recording=[JENKINS] Gravando resultados de teste# Deploying the attached artifact {0} +MavenArtifact.DeployingAttachedArtifact= +# Maven-generated site +MavenSiteArchiver.DisplayName=Site Maven-gerado +# Redeploy Artifacts +MavenAbstractArtifactRecord.Displayname=Reimplantar artefatos +# Deploying the main artifact {0} +MavenArtifact.DeployingMainArtifact=Implantar o artefato principal +# Deployment History +HistoryWidgetImpl.Displayname=Hit\u00f3rico de implanta\u00e7\u00f5es diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties new file mode 100644 index 0000000..2b72da6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties @@ -0,0 +1,45 @@ +# 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. + +BuildInfoRecorder.DisplayName=Yap\u0131land\u0131rma bilgisini kaydet + +MavenArtifactArchiver.DisplayName=Artefaktlar\u0131 ar\u015fivle +MavenArtifactArchiver.FailedToInstallToMaster=Artefakt Master Sunucuya y\u00fcklenirken hata olu\u015ftu + +MavenArtifact.DeployingMainArtifact=Ana artefakt {0}''\u0131 deploy ediyor +MavenArtifact.DeployingAttachedArtifact=Eklenmi\u015f artefakt {0}''\u0131 deploy ediyor + +MavenFingerprinter.DisplayName=Parmakizlerini kaydet + +MavenJavadocArchiver.DisplayName=Javadoc yay\u0131nla +MavenJavadocArchiver.FailedToCopy=Javadoc {0}''dan {1}''e kopyalanam\u0131yor +MavenJavadocArchiver.NoDestDir=Javadoc mojodan ''destDir'' \u00f6zelli\u011fi al\u0131nam\u0131yor + +MavenMailer.DisplayName=E-posta bilgilendirmesi + +ReportAction.DisplayName=Maven raporlar\u0131 +ReportCollector.DisplayName=Maven raporlar\u0131n\u0131 kaydet +ReportCollector.OutsideSite=Maven rapor \u00e7\u0131kt\u0131s\u0131, projenin raporlama dizini olan {1} d\u0131\u015f\u0131ndaki {0}''a gidiyor + +SurefireArchiver.DisplayName=Surefire raporlar\u0131n\u0131 yay\u0131nla +SurefireArchiver.NoReportsDir=surefire:test mojosundan reportsDirectory \u00f6zelli\u011fi al\u0131nam\u0131yor +SurefireArchiver.Recording=[JENKINS] Test sonu\u00e7lar\u0131n\u0131 kaydediyor diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class new file mode 100644 index 0000000..22ecd8d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class new file mode 100644 index 0000000..7cb921d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class new file mode 100644 index 0000000..c55cf51 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class new file mode 100644 index 0000000..48290d7 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class new file mode 100644 index 0000000..27b7539 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class new file mode 100644 index 0000000..b11184d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly new file mode 100644 index 0000000..3950584 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly @@ -0,0 +1,66 @@ + + + + + + +

${%Test Result}

+ + + + + + + + + + + + + + + + + + + + + + + + + +
${%Module}${%Fail}(${%diff})${%Total}(${%diff})
+ + ${c.name} + + ${p.failCount} + ${h.getDiffString2(p.failCount-prev.failCount)} + ${p.totalCount} + ${h.getDiffString2(p.totalCount-prev.totalCount)} +
+
+
+
\ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties new file mode 100644 index 0000000..4023887 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties @@ -0,0 +1,27 @@ +# 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. + +diff=diff +Test\ Result=Testresultat +Module=Modul +Total=I alt +Fail=Fejler diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties new file mode 100644 index 0000000..bbc24a3 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=Testergebnis +Module=Modul +Fail=Fehlgeschlagen +diff=Differenz +Total=Gesamt diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties new file mode 100644 index 0000000..d83aeca --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties @@ -0,0 +1,27 @@ +# 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. + +Total=Total +Fail=Fallos +Module=Módulo +diff=differencias +Test\ Result=Resultado del test diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties new file mode 100644 index 0000000..eda1b78 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=Résultat des tests +Module= +Fail=Echec +diff=Différence +Total= diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties new file mode 100644 index 0000000..a876be6 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties @@ -0,0 +1,27 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman +# +# 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. + +Test\ Result=\u30c6\u30b9\u30c8\u7d50\u679c +Module=\u30e2\u30b8\u30e5\u30fc\u30eb +Fail=\u5931\u6557 +diff=\u5dee\u5206 +Total=\u30c8\u30fc\u30bf\u30eb \ No newline at end of file diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties new file mode 100644 index 0000000..1eab0f2 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=Testresultaat +Module=Module +Fail=Gefaald +diff=delta +Total=Totaal diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties new file mode 100644 index 0000000..56a2ab1 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=Resultado do Teste +Module=M\u00f3dulo +Fail=Falha +diff=diferen\u00e7a +Total=Total diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties new file mode 100644 index 0000000..496404b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u043e\u0432 +Module=\u041c\u043e\u0434\u0443\u043b\u044c +Fail=\u041e\u0448\u0438\u0431\u043a\u0430 +diff=\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 +Total=\u0412\u0441\u0435\u0433\u043e diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties new file mode 100644 index 0000000..64c4c7d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties @@ -0,0 +1,27 @@ +# 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. + +Fail=Fel +Module=Modul +Test\ Result=Testresultat +Total=Totalt +diff=diff diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties new file mode 100644 index 0000000..1d6aa62 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties @@ -0,0 +1,27 @@ +# 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. + +Test\ Result=Test Sonu\u00e7lar\u0131 +Module=Mod\u00fcl +Fail=Ba\u015far\u0131s\u0131z\ ol +diff=fark +Total=Toplam diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class new file mode 100644 index 0000000..d7fab66 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class new file mode 100644 index 0000000..65fd560 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class new file mode 100644 index 0000000..3114815 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class new file mode 100644 index 0000000..b181f6f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class new file mode 100644 index 0000000..85049bd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class new file mode 100644 index 0000000..d211ef5 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar new file mode 100644 index 0000000..5bdade8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar new file mode 100644 index 0000000..b5bf1b8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar new file mode 100644 index 0000000..8ce9f13 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar new file mode 100644 index 0000000..8fb6603 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar new file mode 100644 index 0000000..9f517ea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar new file mode 100644 index 0000000..85292f0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar new file mode 100644 index 0000000..08ec632 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar new file mode 100644 index 0000000..fd72580 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar new file mode 100644 index 0000000..ce4b9ff --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar new file mode 100644 index 0000000..458d432 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar new file mode 100644 index 0000000..09fe533 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar new file mode 100644 index 0000000..133dc6c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar new file mode 100644 index 0000000..2ff9bbd --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar new file mode 100644 index 0000000..996e78f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar new file mode 100644 index 0000000..577b8eb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar new file mode 100644 index 0000000..fcd617c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar b/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar new file mode 100644 index 0000000..73a15aa --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar new file mode 100644 index 0000000..0f06e9c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar b/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar new file mode 100644 index 0000000..a6568b0 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar new file mode 100644 index 0000000..d3250ee --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar new file mode 100644 index 0000000..9bfd73b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar new file mode 100644 index 0000000..0c40b9b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar new file mode 100644 index 0000000..d8beb5e --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar new file mode 100644 index 0000000..f46060c --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar new file mode 100644 index 0000000..38af5ea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar new file mode 100644 index 0000000..3793058 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar new file mode 100644 index 0000000..8a21269 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar new file mode 100644 index 0000000..365cb51 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar new file mode 100644 index 0000000..c0e51fb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar new file mode 100644 index 0000000..eb97c84 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar new file mode 100644 index 0000000..5e76d45 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar new file mode 100644 index 0000000..52a8350 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar new file mode 100644 index 0000000..2984d2d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar new file mode 100644 index 0000000..514385a --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar new file mode 100644 index 0000000..1482ddb --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar new file mode 100644 index 0000000..2a37938 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar new file mode 100644 index 0000000..f51e0ae --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar b/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar new file mode 100644 index 0000000..26d2b80 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar new file mode 100644 index 0000000..9227205 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar new file mode 100644 index 0000000..7c65410 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar new file mode 100644 index 0000000..e4de16f --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar new file mode 100644 index 0000000..cae5596 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar new file mode 100644 index 0000000..eee5c57 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar new file mode 100644 index 0000000..9dc9f64 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar new file mode 100644 index 0000000..25002a4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar new file mode 100644 index 0000000..bae6c31 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar new file mode 100644 index 0000000..dab4cd8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar new file mode 100644 index 0000000..9c5283d --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar new file mode 100644 index 0000000..f20f1c4 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar new file mode 100644 index 0000000..2e59d4b --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar new file mode 100644 index 0000000..5bb8c32 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar new file mode 100644 index 0000000..2aca330 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar new file mode 100644 index 0000000..4321708 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar new file mode 100644 index 0000000..052b265 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar new file mode 100644 index 0000000..13589ea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar new file mode 100644 index 0000000..3f5b205 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar new file mode 100644 index 0000000..f87a849 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar new file mode 100644 index 0000000..d133e35 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar new file mode 100644 index 0000000..547f563 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar b/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar new file mode 100644 index 0000000..d42c0ea --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar Binary files differ diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar new file mode 100644 index 0000000..66bf3d8 --- /dev/null +++ b/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar Binary files differ diff --git a/work/plugins/maven-plugin/aggregator.html b/work/plugins/maven-plugin/aggregator.html new file mode 100644 index 0000000..99e1365 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator.html @@ -0,0 +1,20 @@ +
+

+ If checked, Jenkins will run individual module builds as separate builds. On a project + with a large number of modules, or on a project where modules take a long time to build, + setting this option to true may speed up the whole build, as different modules can be built + in parallel. + +

+ Otherwise, leave it unchecked and Jenkins will build this maven project like you'd normally + do from command line. + +

+ When your build uses "aggregator-style" multi-module aware mojos, you'd have to leave this + option unchecked so that the mojo will have access to all of your modules. + +

+ Historically, this has been the default mode of the native maven project up until Jenkins 1.133. + So if your project was created before that, you might want to uncheck this. + +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/aggregator_de.html b/work/plugins/maven-plugin/aggregator_de.html new file mode 100644 index 0000000..d05fe94 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_de.html @@ -0,0 +1,18 @@ +
+

+ Wenn angewählt, baut Jenkins jedes einzelne Modul in einem getrennten Build. + Für Projekte mit einer großen Anzahl an Modulen oder mit Modulen, deren Builds + sehr lange dauern, kann diese Option die Gesamtdauer des Builds verkürzen, + da Module parallelisiert gebaut werden können. +

+ Wenn abgewählt, baut Jenkins dieses Maven-Projekt genau so, wie Sie es + normalerweise aus der Kommandozeile heraus durchführen würden. +

+ Wenn Ihr Build "Aggregator"-artige Mojos mit Multimodul-Unterstützung verwendet, + sollten Sie diese Option abwählen, damit diese Mojos Zugriff auf alle + Module haben. +

+ Diese Option war bis Jenkins 1.133 per Vorgabe angewählt. Wenn Sie Ihr + Projekt also vor dieser Version eingerichtet haben, sollten Sie diese Option + eventuell abwählen. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/aggregator_fr.html b/work/plugins/maven-plugin/aggregator_fr.html new file mode 100644 index 0000000..3222121 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_fr.html @@ -0,0 +1,23 @@ +
+

+ Si cette option est sélectionnée, Jenkins lancera les builds de chaque + module comme des builds séparés. + Sur un projet avec un grand nombre de modules ou sur un projet où les + modules prennent du temps pour se construire, cette option permet + d'accélérer le build dans sa globalité, puisque les sous-modules peuvent + être construits en parallèle. + +

+ Si cette option n'est *pas* cochée, Jenkins construira le projet comme + lors d'un lancement classique en ligne de commande. + +

+ Si votre build utilise des mojos "aggregator" qui tirent parti des + multi-modules, laissez cette option déchochée, afin que les mojos + aient accès à tous vos modules. + +

+ Historiquement, c'était l'option par défaut pour les projets 'natifs' maven + jusqu'à Jenkins 1.333. Si votre projet a été créé avant cette version, + laissez plutôt cette option décochée. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/aggregator_ja.html b/work/plugins/maven-plugin/aggregator_ja.html new file mode 100644 index 0000000..6ea9c1f --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_ja.html @@ -0,0 +1,15 @@ +
+

+ 個々ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒ“ルドを別々ã?®ãƒ“ルドã?¨ã?—ã?¦æ‰±ã?„ã?¾ã?™ã€‚ã?Ÿã??ã?•ã‚“ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã?Œã?‚るプロジェクトやビルドã?«æ™‚é–“ã?Œã?‹ã?‹ã‚‹ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã?Œã?‚るプロジェクトã?§ã€? + ã?“ã?®ã‚ªãƒ—ションを使用ã?™ã‚‹ã?¨ã€?モジュールを並行ã?—ã?¦ãƒ“ルドã?™ã‚‹ã?“ã?¨ã?§ã€?ビルド全体をスピードアップã?§ã??ã?¾ã?™ã€‚ + +

+ ��オプションを使用���れ��コマンドライン�実行�る���様����Mavenプロジェクトをビルド���。 + +

+ ビルドã?Œ"aggregator"を使用ã?—ã?Ÿãƒžãƒ«ãƒ?モジュールã?®å ´å?ˆã€?mojoã?Œã?™ã?¹ã?¦ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã?«ã‚¢ã‚¯ã‚»ã‚¹ã?§ã??るよã?†ã?«ã?“ã?®ã‚ªãƒ—ションをãƒ?ェックã?—ã?ªã?„よã?†ã?«ã?™ã?¹ã??ã?§ã?™ã€‚ + +

+ Jenkins 1.133ã?¾ã?§ã?¯Mavenプロジェクトã?®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã?§ã?—ã?Ÿã?®ã?§ã€?ã‚‚ã?—ã??れ以å‰?ã?«ãƒ—ロジェクトを作æˆ?ã?—ã?Ÿã?®ã?§ã?‚ã‚Œã?°ã€?ã?“ã?®ã‚ªãƒ—ションを外ã?—ã?Ÿæ–¹ã?Œã?„ã?„ã?§ã?—ょã?†ã€‚ + +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/aggregator_pt_BR.html b/work/plugins/maven-plugin/aggregator_pt_BR.html new file mode 100644 index 0000000..edd4937 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_pt_BR.html @@ -0,0 +1,20 @@ +
+

+ Se marcada, o Jenkins executará as construções de módulo individual como construções separadas. Em um projeto + com um grande número de módulos, ou em um projeto onde os módulo levam muito tempo para construir, + marcar esta opção pode acelerar a construção toda, assim módulos diferentes podem ser construídos + em paralelo. + +

+ Caso contrário, deixe desmarcada e o Jenkins construirá este projeto maven como você faria normalmente + pela linha de comando. + +

+ Quando sua construção usa os mojos no "estilo-agregador" multi-módulo, você teria que deixar esta + opção desmarcada assim o mojo terá acesso a todos os seus módulos. + +

+ Históricamente, este tem sido o módo padrão do projeto maven nativo até o Jenkins 1.133. + Assim se seu projeto foi criado antes disso, você poderia querer desmarcar esta opção. + +

diff --git a/work/plugins/maven-plugin/aggregator_ru.html b/work/plugins/maven-plugin/aggregator_ru.html new file mode 100644 index 0000000..e8ece90 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_ru.html @@ -0,0 +1,20 @@ +
+

+ ЕÑ?ли включено, Jenkins будет запуÑ?кать Ñ?борки отдельных модулей как отдельные Ñ?борки. + Ð’ проектах Ñ? большим количеÑ?твом модулей или в проектах, где Ñ?борка модулей занимает + продолжитьельное времÑ?, уÑ?тановка Ñ?той опции может уÑ?корить Ñ?борку вÑ?его продукта, + так как незавиÑ?имые модули могут Ñ?обиратьÑ?Ñ? параллельно. + +

+ Ð’ противном Ñ?лучае оÑ?тавьте опцию непомеченой и Jenkins будет выполнÑ?Ñ‚ÑŒ Ñ?борку проекта + так, как будто вы запуÑ?тили её из командной Ñ?троки. + +

+ ЕÑ?ли ваша Ñ?борка иÑ?пользует "aggregator-style" моджо (mojos) мультимодульного оповещениÑ? + вам не нужно включать Ñ?ту опцию, так чтобы моджо имел доÑ?туп ко вÑ?ем вашим модулÑ?м. + +

+ ИÑ?торичеÑ?ки Ñ?то Ñ?влÑ?лоÑ?ÑŒ поведением по-умолчанию родных проектов maven до верÑ?ии Jenkins 1.133. + ЕÑ?ли ваш проект был Ñ?оздан ранее Ñ?той верÑ?ии, вы, вероÑ?тно, захотите выключить Ñ?ту опцию. + +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/aggregator_tr.html b/work/plugins/maven-plugin/aggregator_tr.html new file mode 100644 index 0000000..7451475 --- /dev/null +++ b/work/plugins/maven-plugin/aggregator_tr.html @@ -0,0 +1,19 @@ +
+

+ Seçili ise, Jenkins bireysel modülleri ayrı yapılandırmalar olarak çalıştıracaktır. + Çok sayıda modüle sahip projelerde, veya modülleri uzun süren yapılandırmalarda, bu seçenek "doğru" + olarak seçildiğinde modüllerin paralel çalışması sağlanarak, tüm yapılandırma işlemi hızlandırılabilir. + +

+ Aksi takdirde, seçili değil halde bırakırsanız, Jenkins bu maven projelerini sizin normalde + komut satırından yaptığınız şekilde çalıştıracaktır. + +

+ Eğer yapılandırmanız "aggregator-stili" çoklu-modülün farkında mojolar (ne demekse) kullanıyorsa, + bu kısmı seçili değil halde bırakmanız gerekir ki mojo tüm modüllerinize erişebilsin. + +

+ Geçmişe baktığımızda, bu, Jenkins 1.133'e kadar doğal maven projelerinin varsayılan modu idi. + Yani, eğer projeniz bundan önce yapıldı ise, bu kısmı seçili değil olarak bırakmak isteyebilirsiniz. + +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/alternate-settings.html b/work/plugins/maven-plugin/alternate-settings.html new file mode 100644 index 0000000..c373360 --- /dev/null +++ b/work/plugins/maven-plugin/alternate-settings.html @@ -0,0 +1,10 @@ +
+

+ Specifies a path to an alternate settings.xml file for Maven. This + is equivalent to the -s or --settings options on the Maven command + line. + +

+ This path is relative to the workspace root. + +

diff --git a/work/plugins/maven-plugin/alternate-settings_de.html b/work/plugins/maven-plugin/alternate-settings_de.html new file mode 100644 index 0000000..7a34dd0 --- /dev/null +++ b/work/plugins/maven-plugin/alternate-settings_de.html @@ -0,0 +1,10 @@ +
+

+ Gibt den Pfad zu einer alternativen Settings-Datei für Maven an. + Dies entspricht der Option -s bzw. --settings + der Maven-Kommandozeile. + +

+ Der Pfad ist relativ zum Stammverzeichnis des Arbeitsbereiches. + +

diff --git a/work/plugins/maven-plugin/alternate-settings_ja.html b/work/plugins/maven-plugin/alternate-settings_ja.html new file mode 100644 index 0000000..65e96f9 --- /dev/null +++ b/work/plugins/maven-plugin/alternate-settings_ja.html @@ -0,0 +1,8 @@ +
+

+ Mavenã?®settings.xmlã?®ä»£æ›¿ã?¨ã?ªã‚‹ãƒ•ã‚¡ã‚¤ãƒ«ã?®ãƒ‘スを指定ã?—ã?¾ã?™ã€‚ + Mavenã?®ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã?§ "-s"ã‚‚ã?—ã??ã?¯"--settings"オプションを指定ã?™ã‚‹ã?®ã?¨å?Œç­‰ã?®æ©Ÿèƒ½ã?§ã?™ã€‚ + +

+ パス�ワークスペース�ルート�ら�相対パス��。 +

diff --git a/work/plugins/maven-plugin/archivingDisabled.html b/work/plugins/maven-plugin/archivingDisabled.html new file mode 100644 index 0000000..3377475 --- /dev/null +++ b/work/plugins/maven-plugin/archivingDisabled.html @@ -0,0 +1,6 @@ +
+ If checked, Hudson will not automatically archive all artifacts + generated by this project. If you wish to archive the results of + this build within Hudson, you will need to use the "Archive the + Artifacts" post-build option below. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/archivingDisabled_de.html b/work/plugins/maven-plugin/archivingDisabled_de.html new file mode 100644 index 0000000..73b26a0 --- /dev/null +++ b/work/plugins/maven-plugin/archivingDisabled_de.html @@ -0,0 +1,6 @@ +
+ Wenn angewählt, wird Hudson Buildartefakte dieses Projekts nicht + mehr automatisch archivieren. Wenn Sie trotzdem gezielt einzelne Ergebnisse + eines Builds innerhalb von Hudson archivieren möchten, verwenden Sie + die Option "Artefakte archivieren" in den Post-Build-Aktionen weiter unten. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/archivingDisabled_ja.html b/work/plugins/maven-plugin/archivingDisabled_ja.html new file mode 100644 index 0000000..4b95261 --- /dev/null +++ b/work/plugins/maven-plugin/archivingDisabled_ja.html @@ -0,0 +1,4 @@ +
+ ��オプションを設定�る����プロジェクト�生��る�����果物を自動的��存���ん。 + ビルド��果を�存���場���"ビルド後�処�"�"�果物を�存"を設定�る必���り��。 +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals.html b/work/plugins/maven-plugin/goals.html new file mode 100644 index 0000000..8b57cb5 --- /dev/null +++ b/work/plugins/maven-plugin/goals.html @@ -0,0 +1,5 @@ +
+ Specifies the goals to execute, such as "clean install" or "deploy". + This field can also accept any other command line options to Maven, + such as "-e" or "-Dmaven.test.skip=true". +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals_de.html b/work/plugins/maven-plugin/goals_de.html new file mode 100644 index 0000000..bfe0aba --- /dev/null +++ b/work/plugins/maven-plugin/goals_de.html @@ -0,0 +1,6 @@ +
+ Geben Sie hier die Ziele (goals) an, die ausgeführt werden sollen, + z.B. "clean install" oder "deploy". Dieses Feld akzeptiert + auch alle weiteren Maven-Kommandozeilenoptionen wie beispielsweise + "-e" oder "-Dmaven.test.skip=true". +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals_fr.html b/work/plugins/maven-plugin/goals_fr.html new file mode 100644 index 0000000..6f01627 --- /dev/null +++ b/work/plugins/maven-plugin/goals_fr.html @@ -0,0 +1,5 @@ +
+ Spécifie les goals (cibles Maven) à exécuter, comme "clean install" ou "deploy". + Ce champ peut accepter toutes les options en ligne de commande Maven, + comme "-e" ou "-Dmaven.test.skip=true". +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals_ja.html b/work/plugins/maven-plugin/goals_ja.html new file mode 100644 index 0000000..ac92216 --- /dev/null +++ b/work/plugins/maven-plugin/goals_ja.html @@ -0,0 +1,4 @@ +
+ "clean install"や"deploy"�よ��実行�るゴールを指定���。 + ��項目��"-e"や"-Dmaven.test.skip=true"�よ��Maven�コマンドラインオプションも��付���。 +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals_pt_BR.html b/work/plugins/maven-plugin/goals_pt_BR.html new file mode 100644 index 0000000..8a4c42b --- /dev/null +++ b/work/plugins/maven-plugin/goals_pt_BR.html @@ -0,0 +1,5 @@ +
+ Especifica os objetivos para executar, tal como "clean install" ou "deploy". + Este campo também pode aceitar outras opções de linha de comando do Maven, + tal como "-e" ou "-Dmaven.test.skip=true". +
diff --git a/work/plugins/maven-plugin/goals_ru.html b/work/plugins/maven-plugin/goals_ru.html new file mode 100644 index 0000000..a52efab --- /dev/null +++ b/work/plugins/maven-plugin/goals_ru.html @@ -0,0 +1,5 @@ +
+ Указывыет цели длÑ? выполнениÑ?, например "clean install" или "deploy". + Это поле также принимает другие опции командной Ñ?троки Maven, например, + "-e" или "-Dmaven.test.skip=true". +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/goals_tr.html b/work/plugins/maven-plugin/goals_tr.html new file mode 100644 index 0000000..931b2b9 --- /dev/null +++ b/work/plugins/maven-plugin/goals_tr.html @@ -0,0 +1,5 @@ +
+ Çalıştırılacak maven hedeflerini belirlemeye yarar, ("clean install" veya "deploy" gibi). + Bu alanı, aynı zamanda Maven'a vereceğeniz diğer komut satırı seçenekleri için kullanabilirsiniz. + ("-e" veya "-Dmaven.test.skip=true" gibi) +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes.html b/work/plugins/maven-plugin/ignore-upstrem-changes.html new file mode 100644 index 0000000..652dd8e --- /dev/null +++ b/work/plugins/maven-plugin/ignore-upstrem-changes.html @@ -0,0 +1,14 @@ +
+ If checked, Jenkins will parse the POMs of this project, and see if any of its snapshot dependencies + are built on this Jenkins as well. If so, Jenkins will set up build dependency relationship so that + whenever the dependency job is built and a new SNAPSHOT jar is created, Jenkins will schedule a build + of this project. + +

+ This is convenient for automatically performing continuous integration. Jenkins will check the snapshot + dependencies from the <dependency> element in the POM, as well as <plugin>s and + <extension>s used in POMs. + +

+ If this behavior is problematic, uncheck this option. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_de.html b/work/plugins/maven-plugin/ignore-upstrem-changes_de.html new file mode 100644 index 0000000..9b58927 --- /dev/null +++ b/work/plugins/maven-plugin/ignore-upstrem-changes_de.html @@ -0,0 +1,15 @@ +
+ Wenn angewählt, liest Jenkins die POM-Dateien dieses Projekts ein und überprüft, + ob SNAPSHOT-Abhängigkeiten dieses Projekts ebenfalls auf derselben Jenkins-Instanz gebaut werden. + Wenn ja, richtet Jenkins automatisch folgende Build-Abhängigkeit ein: Wann immer die + SNAPSHOT-Abhängigkeit neu gebaut wird und ein neue SNAPSHOT-Jar-Datei erzeugt wird, wird auch + dieses Projekt anschließend neu gebaut. + +

+ Jenkins findet SNAPSHOT-Abhängigkeiten durch Auswertung der POM-Elemente <dependency>, + <plugin> und <extension>. + +

+ Dies erlaubt auf sehr bequeme Weise, kontinuierliche Integration zu automatisieren. + Bei Problemen mit diesem Verhalten wählen Sie die Option ab. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html b/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html new file mode 100644 index 0000000..a9f34dd --- /dev/null +++ b/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html @@ -0,0 +1,17 @@ +
+ Si cette case est cochée, Jenkins parcourera les fichiers POM de ce + projet et verra si une des dépendances SNAPSHOT sont construites + également sur ce serveur Jenkins. Dans ce cas, Jenkins positionnera une + relation dépendance de build, de façon à ce que, à chaque fois que le job + dont il dépend est construit et qu'un nouveau jar SNAPSHOT est créé, + Jenkins programme un nouveau build pour ce projet. + +

+ Cela est pratique pour obtenir une intégration continue automatique. + Jenkins vérifiera que les dépendances SNAPSHOT de l'élément + <dependency> dans le POM, ainsi que les <plugin>s et les + <extension>s utilisés dans les POMs. + +

+ Si ce comportement est problématique, décochez cette option. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html b/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html new file mode 100644 index 0000000..0de009b --- /dev/null +++ b/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html @@ -0,0 +1,12 @@ +
+ ãƒ?ェックã?™ã‚‹ã?¨ã€?ã?“ã?®ãƒ—ロジェクトã?®POMを解æž?ã?—ã?¦ã€?ä¾?å­˜ã?™ã‚‹ã‚¹ãƒŠãƒƒãƒ—ショットã?Œã?“ã?®Jenkins上ã?§ãƒ“ルドã?•ã‚Œã‚‹ã?‹ã?©ã?†ã?‹ãƒ?ェックã?—ã?¾ã?™ã€‚ + ã‚‚ã?—ビルドã?•ã‚Œã‚‹ã?ªã‚‰ã€?ä¾?å­˜ã?™ã‚‹ã‚¸ãƒ§ãƒ–ã?Œãƒ“ルドã?•ã‚Œã‚¹ãƒŠãƒƒãƒ—ショットã?®jarファイルã?Œä½œæˆ?ã?•ã‚Œã‚‹ã?¨ã??ã?¯ã?„ã?¤ã?§ã‚‚ã€? + ã?“ã?®ãƒ—ロジェクトã?®ãƒ“ルドをスケジュールã?™ã‚‹ã‚ˆã?†ã?«ã€?Jenkinsã?¯ä¾?存性を設定ã?—ã?¾ã?™ã€‚ + +

+ ��機能��自動的�継続インテグレーションを実行�る��便利��。Jenkins��POM�<plugin>や<extension>��様�� + <dependency>�らもスナップショット��存性を�ェック���。 + +

+ ã‚‚ã?—動作ã?«å•?é¡Œã?Œã?‚るよã?†ã?§ã?—ã?Ÿã‚‰ã€?ã?“ã?®ã‚ªãƒ—ションã?®ãƒ?ェックをã?¯ã?šã?—ã?¦ã??ã? ã?•ã?„。 +

diff --git a/work/plugins/maven-plugin/incremental.html b/work/plugins/maven-plugin/incremental.html new file mode 100644 index 0000000..d3ce048 --- /dev/null +++ b/work/plugins/maven-plugin/incremental.html @@ -0,0 +1,15 @@ +
+

+ If checked, Jenkins will only build any modules with changes from SCM + and any modules which depend on those changed modules, using Maven's + "-amd -pl group1:artifact1,group1:artifact2" command-line + options. If the SCM reports no changes to any modules, however, all + modules will be + built. See http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode + for more information on the Maven behavior this utilizes. + +

+ This functionality requires Maven 2.1 or later, and will not have + any impact if "Build modules in parallel" is selected. + +

diff --git a/work/plugins/maven-plugin/incremental_de.html b/work/plugins/maven-plugin/incremental_de.html new file mode 100644 index 0000000..f76af13 --- /dev/null +++ b/work/plugins/maven-plugin/incremental_de.html @@ -0,0 +1,13 @@ +
+ Wenn angewählt, baut Jenkins nur Module mit SCM-Änderungen sowie diejenigen Module, + die von diesen geänderten Modulen abhängen. Jenkins verwendet dazu + Mavens Kommandozeilenoption "-amd -pl group1:artifact1,group1:artifact2". + Wenn das SCM-System hingegen in keinen Modulen Änderungen feststellt, + werden alle Module gebaut. Mehr zur diesem Maven-Verhalten finden Sie unter + http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode. + +

+ Diese Funktion erfordert Maven 2.1 oder höher und wird ignoriert, + wenn "Baue Module parallel" angewählt ist. + +

diff --git a/work/plugins/maven-plugin/maven-opts.html b/work/plugins/maven-plugin/maven-opts.html new file mode 100644 index 0000000..537ca62 --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts.html @@ -0,0 +1,8 @@ +
+ Specify JVM options needed when launching Maven as an external process. + Also see MAVEN_OPTS documentation + (even though this is for Maven 1.x it still applies to Maven 2.x) + +

+ Shell-like environment variable expansions work in this field, by using the ${VARIABLE} syntax. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_de.html b/work/plugins/maven-plugin/maven-opts_de.html new file mode 100644 index 0000000..085e4fe --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_de.html @@ -0,0 +1,9 @@ +
+ Geben Sie die JVM-Optionen an, die für den Aufruf von Maven als externen + Prozess benötigt werden. + Mehr dazu in der Dokumentation der MAVEN_OPTS (auf Englisch) + - die dort dokumentierten Optionen für Maven 1.x treffen auch für Maven 2.x zu. +

+ Dieses Feld unterstützt die Expansion von Umgebungsvariablen - ähnlich der + Verwendung in einer Shell - mittels der Syntax ${VARIABLE}. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_fr.html b/work/plugins/maven-plugin/maven-opts_fr.html new file mode 100644 index 0000000..5b4a4f6 --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_fr.html @@ -0,0 +1,11 @@ +
+ Indique quelles options passer à la JVM quand Maven se lance dans un + process externe. Voir aussi la + documentation MAVEN_OPTS + (bien qu'elle soit écrite pour Maven 1.x, elle reste valable pour Maven + 2.x). + +

+ Les expansions de variables à la Shell sont valables dans ce champ, + avec une syntaxe du type ${VARIABLE}. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_ja.html b/work/plugins/maven-plugin/maven-opts_ja.html new file mode 100644 index 0000000..ce0e65c --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_ja.html @@ -0,0 +1,8 @@ +
+ 外部プロセスã?¨ã?—ã?¦ã€?Mavenã‚’èµ·å‹•ã?™ã‚‹å ´å?ˆã?«å¿…è¦?ã?ªJVMã?®ã‚ªãƒ—ションを指定ã?—ã?¾ã?™ã€‚ + MAVEN_OPTS ドキュメントもå?‚ç…§ã?—ã?¦ã??ã? ã?•ã?„ + (ã?“ã‚Œã?¯Maven 1.Xã?®ã‚‚ã?®ã?§ã?™ã?Œã€?ã?¾ã? Maven 2.Xã?«ã‚‚ã?‚ã?¦ã?¯ã?¾ã‚Šã?¾ã?™)。 + +

+ ${VARIABLE}ã?®ã‚ˆã?†ã?ªå½¢å¼?ã?§ã€?シェルã?®ã‚ˆã?†ã?ªç’°å¢ƒå¤‰æ•°æ‹¡å¼µã‚’使用ã?§ã??ã?¾ã?™ã€‚ +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_pt_BR.html b/work/plugins/maven-plugin/maven-opts_pt_BR.html new file mode 100644 index 0000000..dfa52c5 --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_pt_BR.html @@ -0,0 +1,8 @@ +
+ Especifica as opções de JVM necessárias quando lançando o Maven como um processo externo. + Veja também a documentação MAVEN_OPTS + (embora isto seja para Maven 1.x ainda se aplica ao Maven 2.x) + +

+ Expansões de variáveis de ambiente de Shell funcionam neste campo, usando a sintáxe ${VARIABLE}. +

diff --git a/work/plugins/maven-plugin/maven-opts_ru.html b/work/plugins/maven-plugin/maven-opts_ru.html new file mode 100644 index 0000000..5a42028 --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_ru.html @@ -0,0 +1,8 @@ +
+ Укажите опции JVM, необходимые длÑ? запуÑ?ка Maven как внешнего процеÑ?Ñ?а. + Также Ñ?мотрите документацию по MAVEN_OPTS + (не Ñ?мотрÑ? на то что Ñ?то документациÑ? длÑ? Maven 1.x она вполне применима длÑ? Maven 2.x). + +

+ ПодÑ?тановка переменных в Ñ?тиле shell также работает в Ñ?том поле. ИÑ?пользуйте Ñ?интакÑ?ичеÑ?кую конÑ?трукцию ${VARIABLE}. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_tr.html b/work/plugins/maven-plugin/maven-opts_tr.html new file mode 100644 index 0000000..e93e4cb --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_tr.html @@ -0,0 +1,8 @@ +
+ Maven'ı harici bir işlem olarak çağıracaksanız, JVM seçeneklerini belirleyiniz. + Bu linke göz atmanızda fayda var MAVEN_OPTS dokümantasyonu + (Her ne kadar Maven 1.x için olsa da Maven 2.x için de geçerlidir) + +

+ Shell-benzeri ortam değişkenleri ${VARIABLE} sentaksı kullanarak bu alanda kullanılabilir. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/maven-opts_zh_CN.html b/work/plugins/maven-plugin/maven-opts_zh_CN.html new file mode 100644 index 0000000..df03f21 --- /dev/null +++ b/work/plugins/maven-plugin/maven-opts_zh_CN.html @@ -0,0 +1,7 @@ +
+ 在�动Maven时指定需�的JVM选项. + �以�阅MAVEN_OPTS文档 + (尽管这是Maven1.x文档,但是�样适用于Maven2.x) +

+ �想在这里使用Shell环境��,使用语法${VARIABLE}. +

\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals.html b/work/plugins/maven-plugin/module-goals.html new file mode 100644 index 0000000..0af3a57 --- /dev/null +++ b/work/plugins/maven-plugin/module-goals.html @@ -0,0 +1,6 @@ +
+ By default (or if this field is left as-is or empty), all modules + build the same goals/phases specified in + the parent's configuration, but you can + override it on modules by specifying a different value here. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals_de.html b/work/plugins/maven-plugin/module-goals_de.html new file mode 100644 index 0000000..8ac20ad --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_de.html @@ -0,0 +1,7 @@ +
+ Per Vorgabe (oder wenn dieses Feld unverändert oder leer bleibt), bauen + alle Module dieselben Ziele (goals) und Phasen (phases), die in der + Konfiguration des Elters angegeben wurden. + Sie können jedoch diese Einstellung überschreiben, indem Sie hier + einen abweichenden Wert eingeben. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals_fr.html b/work/plugins/maven-plugin/module-goals_fr.html new file mode 100644 index 0000000..bfac54c --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_fr.html @@ -0,0 +1,6 @@ +
+ Par défaut (si ce champ est laissé tel quel ou vide), tous les + modules se construisent avec les mêmes goals ou phases, tels que spécifiés dans la + configuration du parent. Vous pouvez + les remplacer au cas par cas en spécifiant une autre valeur ici. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals_ja.html b/work/plugins/maven-plugin/module-goals_ja.html new file mode 100644 index 0000000..e9c8bde --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_ja.html @@ -0,0 +1,5 @@ +
+ デフォルトã?§ã?¯ï¼ˆã‚‚ã?—ã??ã?¯ã€?ã?“ã?®é …目をã??ã?®ã?¾ã?¾ã?‹ç©ºæ¬„ã?®å ´å?ˆï¼‰ã€? + ã?™ã?¹ã?¦ã?®ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã?¯ã€?親ã?®è¨­å®šã?§æŒ‡å®šã?•ã‚Œã?Ÿå?Œä¸€ã?®ã‚´ãƒ¼ãƒ«/フェーズをビルドã?—ã?¾ã?™ã?Œã€? + ã?“ã?“ã?«ç•°ã?ªã‚‹å€¤ã‚’設定ã?™ã‚Œã?°ä¸Šæ›¸ã??ã?§ã??ã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals_pt_BR.html b/work/plugins/maven-plugin/module-goals_pt_BR.html new file mode 100644 index 0000000..071cdb1 --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_pt_BR.html @@ -0,0 +1,6 @@ +
+ Por padrão (ou se este campo for deixado como está ou vazio), todos os módulos + constróem os mesmos objetivos/fases especificados na + configuração pai, mas você pode + sobrescrever-la nos módulos especificando um valor diferente aqui. +
diff --git a/work/plugins/maven-plugin/module-goals_ru.html b/work/plugins/maven-plugin/module-goals_ru.html new file mode 100644 index 0000000..9e573ed --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_ru.html @@ -0,0 +1,5 @@ +
+ По-умолчанию (значение в поле пуÑ?тое или не тронуто), Ñ?борки вÑ?ех модулей + будут вызывать одни и те же цели/фазы, указанные в наÑ?тройках проекта, + однако вы можете переопределить их указав иное значение здеÑ?ÑŒ. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/module-goals_tr.html b/work/plugins/maven-plugin/module-goals_tr.html new file mode 100644 index 0000000..74c859c --- /dev/null +++ b/work/plugins/maven-plugin/module-goals_tr.html @@ -0,0 +1,6 @@ +
+ Varsayılan değer olarak (bu alan olduğu gibi bırakılırsa, veya boşaltılırsa), tüm modüller + the parent's configuration içerisinde + belirtilen hedefleri/fazları yapılandıracaktır. Fakat + buraya modüller için farklı değerler girerek, davranışını değiştirebilirsiniz. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/private-repository.html b/work/plugins/maven-plugin/private-repository.html new file mode 100644 index 0000000..1eb5162 --- /dev/null +++ b/work/plugins/maven-plugin/private-repository.html @@ -0,0 +1,30 @@ +
+ Normally, Jenkins uses the local Maven repository as determined by Maven — the exact process + seems to be undocumented, but it's ~/.m2/repository and can be overridden by + <localRepository> in ~/.m2/settings.xml (see the reference for more details.) + +

+ This normally means that all the jobs that are executed on the same node shares a single Maven repository. + The upside of this is that you can save the disk space, but the downside of this is that sometimes those + builds could interfere with each other. For example, you might end up having builds incorrectly succeed, + just because your have all the dependencies in your local repository, despite that fact that none of the + repositories in POM might have them. + +

+ There are also some reported problems regarding having concurrent Maven processes trying to use the same local + repository. + + +

+ When this option is checked, Jenkins will tell Maven to use $WORKSPACE/.repository as the local Maven repository. + This means each job will get its own isolated Maven repository just for itself. It fixes the above problems, + at the expense of additional disk space consumption. + +

+ When using this option, consider setting up a Maven artifact manager so that you don't have to hit + remote Maven repositories too often. + +

+ If you'd prefer to activate this mode in all the Maven jobs executed on Jenkins, refer to the technique described + here. +

diff --git a/work/plugins/maven-plugin/private-repository_de.html b/work/plugins/maven-plugin/private-repository_de.html new file mode 100644 index 0000000..2dff757 --- /dev/null +++ b/work/plugins/maven-plugin/private-repository_de.html @@ -0,0 +1,30 @@ +
+ Normalerweise verwendet Jenkins das lokale Maven-Repository so wie es von Maven + bestimmt wird — das exakte Verfahren dafür scheint undokumentiert, aber es ist typischerweise + ~/.m2/repository und kann durch <localRepository> in ~/.m2/settings.xml + überschrieben werden (mehr dazu in der Maven Dokumentation). + +

+ Dies bedeutet, dass sich alle Jobs, die auf dem gleichen Knoten ausgeführt werden, ein gemeinsames + Maven-Repository teilen. Der Vorteil dabei ist, dass dadurch Festplattenplatz gespart werden kann. + Nachteilig ist hingegen, dass diese Jobs sich manchmal in die Quere kommen können. + Beispielsweise können so Builds fälschlicherweise erfolgreich sein, weil zwar alle Abhängigkeiten im lokalen + Repository vorhanden sind, aber keine davon in den Repositories des POMs existiert. + +

+ Es liegen außerdem Problemberichte über nebenläufige Maven-Prozesse vor, die versuchen, + dasselbe lokale Repository zu verwenden. + +

+ Wenn diese Option angewählt ist, startet Jenkins Maven mit $WORKSPACE/.repository + als lokalem Maven-Repository. Dadurch verwendet jeder Job ein eigenes, isoliertes Maven-Repository. + Dies löst die oben angesprochenen Probleme auf Kosten eines höheren Speicherplatzbedarfs auf der Festplatte. + +

+ Wenn Sie diese Option verwenden, ziehen Sie die Installation eines Maven-Artefakt-Managers + in Betracht: Dadurch vermeiden Sie zu häufige Zugriffe auf entfernte Maven-Repositories. + +

+ Möchten Sie diese Option in allen Maven-Jobs aktivieren, die über Jenkins ausgeführt + werden, folgen Sie den Anweisungen hier. +

diff --git a/work/plugins/maven-plugin/private-repository_fr.html b/work/plugins/maven-plugin/private-repository_fr.html new file mode 100644 index 0000000..20e09a8 --- /dev/null +++ b/work/plugins/maven-plugin/private-repository_fr.html @@ -0,0 +1,33 @@ +
+ Normalement, Jenkins utilise le repository Maven local que Maven détermine lui-même — + le process exact ne semble pas documenté mais ce répertoire est généralement ~/.m2/repository. + Il peut être modifié par le paramêtre <localRepository> dans le fichier ~/.m2/settings.xml + (voir la référence pour plus de détails.) + +

+ Cela signifie que, normalement, tous les jobs qui sont exécutés sur le même noeud (même machine) partagent + un repository Maven unique. L'avantage, c'est que vous économisez de l'espace disque. Par contre, il + peut aussi arriver que ces builds interfèrent les uns avec les autres. Par exemple, vous pouvez finir + par avoir des builds qui s'achèvent avec succès incorrectement, simplement parce que toutes les + dépendances sont déjà dans votre repository local, alors que les repositories spécifiés dans le POM + ne les contiennent pas. + +

+ Il semble aussi y avoir des problèmes quand des process Maven concurrents tendent d'accéder au même + repository local. + +

+ Quand cette option est sélectionnée, Jenkins demandera à Maven d'utiliser $WORKSPACE/.repository + comme répertoire local Maven. + Du coup, chaque job aura son propre repository Maven parfaitement isolé. Cela règle les problèmes + cités ci-dessus, en échange de plus d'espace disque. + +

+ Si vous utilisez cette option, pensez à mettre en place un gestionnaire d'artefacts Maven. Ainsi, + vous ne serez pas forcés d'accéder aux repositories Maven distants trop fréquemment. + +

+ Si vous préférez activer ce mode pour tous les jobs Maven exécutés par Jenkins, référez-vous à la + technique décrite + ici. +

diff --git a/work/plugins/maven-plugin/private-repository_ja.html b/work/plugins/maven-plugin/private-repository_ja.html new file mode 100644 index 0000000..cc54599 --- /dev/null +++ b/work/plugins/maven-plugin/private-repository_ja.html @@ -0,0 +1,27 @@ +
+ 通常ã€?Jenkinsã?¯Mavenã?Œæ±ºã‚?ã?Ÿãƒ­ãƒ¼ã‚«ãƒ«ã?®ãƒªãƒ?ジトリを使用ã?—ã?¾ã?™ã€‚— 正確ã?ªãƒ«ãƒ¼ãƒ«ã?¯æ–‡æ›¸åŒ–ã?•ã‚Œã?¦ã?„ã?ªã?„よã?†ã?§ã?™ã?Œã€? + ã??ã‚Œã?¯~/.m2/repositoryã?§ã€?~/.m2/settings.xmlã?®<localRepository>ã?§è¨­å®šã‚’変更ã?§ã??ã?¾ã?™ã€‚ + (詳細ã?¯ã€?リファレンスをå?‚ç…§) + +

+ ã?“ã‚Œã?¯ã€?通常å?Œä¸€ã?®ãƒŽãƒ¼ãƒ‰ã?§å®Ÿè¡Œã?•ã‚Œã‚‹ã‚¸ãƒ§ãƒ–ã?¯ã?™ã?¹ã?¦1ã?¤ã?®ãƒªãƒ?ジトリを共有ã?™ã‚‹ã?“ã?¨ã‚’æ„?味ã?—ã?¾ã?™ã€‚ + ディスク容é‡?を節約ã?§ã??る利点ã?Œã?‚ã‚Šã?¾ã?™ã?Œã€?ビルドå?Œå£«ã?Œå¹²æ¸‰ã?—ã?‚ã?†å ´å?ˆã‚‚ã?‚ã‚‹ã?¨ã?„ã?†æ¬ ç‚¹ã‚‚ã?‚ã‚Šã?¾ã?™ã€‚ + 例ã?ˆã?°ã€?POMã?«è¨˜è¿°ã?•ã‚Œã?Ÿã?©ã?®ãƒªãƒ?ジトリã?«ã‚‚ä¾?存ライブラリã?¯ã?ªã?„ã?«ã‚‚ã?‹ã?‹ã‚?らã?šã€?ローカルã?®ãƒªãƒ?ジトリã?«ã?¯ã?‚ã‚‹ã?¨ã?„ã?†ã? ã?‘ã?§ã€? + 誤ã?£ã?¦ãƒ“ルドã?Œæˆ?功ã?—ã?¦ã?—ã?¾ã?†ã?“ã?¨ã?Œã?‚ã‚Šã?¾ã?™ã€‚ + +

+ Mavenã?®ãƒ—ロセスã?Œä¸¦è¡Œã?—ã?¦å?Œä¸€ã?®ãƒ­ãƒ¼ã‚«ãƒ«ãƒªãƒ?ジトリを使用ã?™ã‚‹ã?“ã?¨ã?«ã?¯ã€?ã?„ã??ã?¤ã?‹ã?®å•?é¡Œã?Œå ±å‘Šã?•ã‚Œã?¦ã?„ã?¾ã?™ã€‚ + + +

+ ã?“ã?®ã‚ªãƒ—ションをãƒ?ェックã?™ã‚‹ã?¨ã€?Jenkinsã?¯ãƒ­ãƒ¼ã‚«ãƒ«ã?ªãƒªãƒ?ジトリã?¨ã?—ã?¦$WORKSPACE/.repository を使ã?†ã‚ˆã?†ã?«Mavenã?«æŒ‡ç¤ºã?—ã?¾ã?™ã€‚ + ã?¤ã?¾ã‚Šã€?ã?©ã?®ã‚¸ãƒ§ãƒ–も専用ã?®ç‹¬ç«‹ã?—ã?Ÿãƒªãƒ?ジトリを使用ã?—ã?¾ã?™ã€‚ディスクã?®ä½¿ç”¨é‡?ã?®å¢—大ã?¨å¼•ã??替ã?ˆã?«ã€?上記ã?®å•?題を解決ã?—ã?¾ã?™ã€‚ + +

+ ã?“ã?®ã‚ªãƒ—ションを使用ã?™ã‚‹å ´å?ˆã?¯ã€?リモートã?®ãƒªãƒ?ジトリã?«é »ç¹?ã?«ã‚¢ã‚¯ã‚»ã‚¹ã?—ã?ªã?„よã?†ã?«Mavenを設定ã?—ã?¦ã??ã? ã?•ã?„。 + +

+ Jenkinsã?§å®Ÿè¡Œã?™ã‚‹ã?™ã?¹ã?¦ã?®Mavenプロジェクトã?®ãƒ“ルドã?§ã€?ã?“ã?®ãƒ¢ãƒ¼ãƒ‰ã‚’有効ã?«ã?—ã?Ÿã?„ã?®ã?ªã‚‰ã€? + ã?“ã?“ã?§èª¬æ˜Žã?•ã‚Œã?¦ã?„ã‚‹ + テクニックをå?‚考ã?«ã?—ã?¦ã??ã? ã?•ã?„。 +

diff --git a/work/plugins/maven-plugin/private-repository_tr.html b/work/plugins/maven-plugin/private-repository_tr.html new file mode 100644 index 0000000..1eb5162 --- /dev/null +++ b/work/plugins/maven-plugin/private-repository_tr.html @@ -0,0 +1,30 @@ +
+ Normally, Jenkins uses the local Maven repository as determined by Maven — the exact process + seems to be undocumented, but it's ~/.m2/repository and can be overridden by + <localRepository> in ~/.m2/settings.xml (see the reference for more details.) + +

+ This normally means that all the jobs that are executed on the same node shares a single Maven repository. + The upside of this is that you can save the disk space, but the downside of this is that sometimes those + builds could interfere with each other. For example, you might end up having builds incorrectly succeed, + just because your have all the dependencies in your local repository, despite that fact that none of the + repositories in POM might have them. + +

+ There are also some reported problems regarding having concurrent Maven processes trying to use the same local + repository. + + +

+ When this option is checked, Jenkins will tell Maven to use $WORKSPACE/.repository as the local Maven repository. + This means each job will get its own isolated Maven repository just for itself. It fixes the above problems, + at the expense of additional disk space consumption. + +

+ When using this option, consider setting up a Maven artifact manager so that you don't have to hit + remote Maven repositories too often. + +

+ If you'd prefer to activate this mode in all the Maven jobs executed on Jenkins, refer to the technique described + here. +

diff --git a/work/plugins/maven-plugin/root-pom.html b/work/plugins/maven-plugin/root-pom.html new file mode 100644 index 0000000..2dd9ee2 --- /dev/null +++ b/work/plugins/maven-plugin/root-pom.html @@ -0,0 +1,7 @@ +
+ If your workspace has the top-level pom.xml in somewhere other + than the module root directory, specify the path (relative to + the module root) here, such as parent/pom.xml. +
+ If left empty, defaults to pom.xml +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/root-pom_de.html b/work/plugins/maven-plugin/root-pom_de.html new file mode 100644 index 0000000..130ef5e --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_de.html @@ -0,0 +1,9 @@ +
+ + Wenn in Ihrem Arbeitsbereich die oberste pom.xml-Datei nicht direkt + im Stammverzeichnis des Arbeitsbereiches liegt, geben Sie + hier den Pfad (relativ zum Stammverzeichnis des Arbeitsbereiches) an, + z.B. parent/pom.xml. +
+ Wenn das Feld leer bleibt, wird als Vorgabewert pom.xml verwendet. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/root-pom_fr.html b/work/plugins/maven-plugin/root-pom_fr.html new file mode 100644 index 0000000..c0f8dd7 --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_fr.html @@ -0,0 +1,9 @@ +
+ + Si votre pom.xml du plus haut niveau se trouve dans un répertoire + différent du répertoire racine du workspace, spécifiez ici + le chemin (de façon relative à la racine du répertoire de travail), + par exemple parent/pom.xml. +
+ Si ce champ est vide, la valeur par défaut est pom.xml. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/root-pom_ja.html b/work/plugins/maven-plugin/root-pom_ja.html new file mode 100644 index 0000000..959ffbe --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_ja.html @@ -0,0 +1,6 @@ +
+ モジュール�ルートディレクトリ以外������トップレベル�pom.xml��る�ら� + ���(モジュール�ルート�ら�相対)パスを指定���(例 parent/pom.xml)。 +
+ 空欄�����る��pom.xml��り��。 +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/root-pom_pt_BR.html b/work/plugins/maven-plugin/root-pom_pt_BR.html new file mode 100644 index 0000000..f7af4c9 --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_pt_BR.html @@ -0,0 +1,8 @@ +
+ + Se seu workspace tem um pom.xml de alto-nível em algum outro lugar + que não seja o diretório raíz do workspace, especifique o caminho (relativo à + raíz do workspace) aqui, tal como pai/pom.xml. +
+ Se deixado em branco, o padrão é pom.xml +
diff --git a/work/plugins/maven-plugin/root-pom_ru.html b/work/plugins/maven-plugin/root-pom_ru.html new file mode 100644 index 0000000..326c37d --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_ru.html @@ -0,0 +1,8 @@ +
+ + ЕÑ?ли в вашей Ñ?борочной директории еÑ?Ñ‚ÑŒ корневой pom.xml, но находÑ?щийÑ?Ñ? + не непоÑ?редÑ?твенно Ñ?борочной директории, укажите путь к нему (отноÑ?ительно + Ñ?борочной директории), например, parent/pom.xml. +
+ ЕÑ?ли значение пуÑ?тое, по-умолчанию будет иÑ?пользоватьÑ?Ñ? pom.xml. +
\ No newline at end of file diff --git a/work/plugins/maven-plugin/root-pom_tr.html b/work/plugins/maven-plugin/root-pom_tr.html new file mode 100644 index 0000000..713f369 --- /dev/null +++ b/work/plugins/maven-plugin/root-pom_tr.html @@ -0,0 +1,8 @@ +
+ + Eğer çalışma ortamında, kök dizinin dışında, üst-seviye bir pom.xml + varsa, yolunu parent/pom.xml gibi (çalışma alanı kök dizinine bağlı olarak) + belirlemeniz gerekir. +
+ Eğer boş bırakılırsa, varsayılan değer olan pom.xml kullanılır. +
\ No newline at end of file diff --git a/work/plugins/ssh-slaves.hpi b/work/plugins/ssh-slaves.hpi new file mode 100644 index 0000000..e1692c8 --- /dev/null +++ b/work/plugins/ssh-slaves.hpi Binary files differ diff --git a/work/plugins/ssh-slaves/.timestamp b/work/plugins/ssh-slaves/.timestamp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/ssh-slaves/.timestamp diff --git a/work/plugins/ssh-slaves/META-INF/MANIFEST.MF b/work/plugins/ssh-slaves/META-INF/MANIFEST.MF new file mode 100644 index 0000000..96e4cdd --- /dev/null +++ b/work/plugins/ssh-slaves/META-INF/MANIFEST.MF @@ -0,0 +1,18 @@ +Manifest-Version: 1.0 +Archiver-Version: Plexus Archiver +Created-By: Apache Maven +Built-By: olamy +Build-Jdk: 1.6.0_21 +Extension-Name: ssh-slaves +Implementation-Title: ssh-slaves +Implementation-Version: 0.15 +Plugin-Class: hudson.plugins.sshslaves.PluginImpl +Group-Id: org.jenkins-ci.plugins +Short-Name: ssh-slaves +Long-Name: Jenkins SSH Slaves plugin +Url: http://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin +Plugin-Version: 0.15 +Hudson-Version: 1.403 +Jenkins-Version: 1.403 +Plugin-Developers: Kohsuke Kawaguchi:kohsuke:,Olivier Lamy:olamy: + diff --git a/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties new file mode 100644 index 0000000..7de47e5 --- /dev/null +++ b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Sat Mar 26 23:37:35 CET 2011 +version=0.15 +groupId=org.jenkins-ci.plugins +artifactId=ssh-slaves diff --git a/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml new file mode 100644 index 0000000..b9e73af --- /dev/null +++ b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml @@ -0,0 +1,43 @@ + + 4.0.0 + + + org.jenkins-ci.plugins + plugin + 1.403 + + + ssh-slaves + hpi + 0.15 + Jenkins SSH Slaves plugin + http://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin + + + scm:git:git://github.com/jenkinsci/ssh-slaves-plugin.git + scm:git:git@github.com:jenkinsci/ssh-slaves-plugin.git + https://github.com/jenkinsci/ssh-slaves-plugin + + + + + kohsuke + Kohsuke Kawaguchi + + + olamy + Olivier Lamy + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.8 + + + + + diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension new file mode 100644 index 0000000..72d98cd --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin new file mode 100644 index 0000000..41d330c --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin @@ -0,0 +1 @@ +hudson.plugins.sshslaves.PluginImpl \ No newline at end of file diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class new file mode 100644 index 0000000..c6f421f --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class new file mode 100644 index 0000000..1a2ac31 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties new file mode 100644 index 0000000..b88c669 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties @@ -0,0 +1,28 @@ +SSHLauncher.StartingSFTPClient={0} [SSH] Starting sftp client. +SSHLauncher.RemoteFSDoesNotExist={0} [SSH] Remote file system root {1} does not exist. Will try to create it... +SSHLauncher.RemoteFSIsAFile=Remote file system root {0} is a file not a directory or a symlink. +SSHLauncher.CopyingSlaveJar={0} [SSH] Copying latest slave.jar... +SSHLauncher.CopiedXXXBytes={0} [SSH] Copied {1} bytes. +SSHLauncher.ErrorCopyingSlaveJar=Could not copy slave.jar to slave +SSHLauncher.ErrorCopyingSlaveJarTo=Could not copy slave.jar to ''{0}'' on slave +SSHLauncher.CheckingDefaultJava={0} [SSH] Checking java version of {1} +SSHLauncher.ConnectionClosed={0} [SSH] Connection closed. +SSHLauncher.ErrorWhileClosingConnection=Exception thrown while closing connection. +SSHLauncher.AbortedDuringConnectionOpen=Slave start aborted. +SSHLauncher.FailedToDetectEnvironment=Failed to detect the environment for automatic JDK installation. Please report this to jenkinsci-users@googlegroups.com: {0} +SSHLauncher.NoJavaFound=Java version {0} was found but 1.5 or later is needed. +SSHLauncher.JavaVersionResult={0} [SSH] {1} -version returned {2}. +SSHLauncher.OpeningSSHConnection={0} [SSH] Opening SSH connection to {1}. +SSHLauncher.AuthenticatingPublicKey={0} [SSH] Authenticating as {1} with {2}. +SSHLauncher.AuthenticatingUserPass={0} [SSH] Authenticating as {1}/{2}. +SSHLauncher.AuthenticationSuccessful={0} [SSH] Authentication successful. +SSHLauncher.AuthenticationFailed={0} [SSH] Authentication failed. +SSHLauncher.AuthenticationFailedException=Authentication failed. +SSHLauncher.ErrorDeletingFile={0} [SSH] Error deleting file. +SSHLauncher.DescriptorDisplayName=Launch slave agents on Unix machines via SSH +SSHLauncher.SSHHeeaderJunkDetected=SSH connection reports a garbage before a command execution.\nCheck your .bashrc, .profile, and so on to make sure it is quiet.\nThe received junk text is as follows: +SSHLauncher.UknownJavaVersion=Couldn''t figure out the Java version of {0} +SSHLauncher.UnexpectedError=Unexpected error in launching a slave. This is probably a bug in Jenkins. +SSHLauncher.StartingSlaveProcess={0} [SSH] Starting slave process: {1} +SSHLauncher.RemoteUserEnvironment={0} [SSH] The remote user's environment is: +SSHLauncher.StartingSCPClient={0} [SSH] SFTP failed. Copying via SCP. \ No newline at end of file diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties new file mode 100644 index 0000000..cb60e39 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties @@ -0,0 +1,79 @@ +# 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. + +# {0} [SSH] Remote file system root {1} does not exist. Will try to create it... +SSHLauncher.RemoteFSDoesNotExist={0} [SSH] Directorio raiz en el sistema remoto ({1}) no existe. Intentando crearlo ... +# {0} [SSH] Authentication successful. +SSHLauncher.AuthenticationSuccessful={0} [SSH] Autenticación válida +# Could not copy slave.jar to slave +SSHLauncher.ErrorCopyingSlaveJar=No se pudo copiar "slave.jar" al nodo remoto +# {0} [SSH] Copied {1} bytes. +SSHLauncher.CopiedXXXBytes={0} [SSH] Se copiaron {1} bytes. +# Exception thrown while closing connection. +SSHLauncher.ErrorWhileClosingConnection=Se produjo una excepción al cerrar la conexión +# {0} [SSH] Copying latest slave.jar... +SSHLauncher.CopyingSlaveJar={0} [SSH] Copiando el último slave.jar... +# SSH connection reports a garbage before a command execution.\nCheck your .bashrc, .profile, and so on to make sure it is quiet.\nThe received junk text is as follows: +SSHLauncher.SSHHeeaderJunkDetected=La conexión ha recibido texto antes de ejecutar el comando.\n\ + Comprueba tus ficheros ".bashrc" o ".profile" para comprobar que no escriben nada al hacer 'login'.\n\ + El texto recibido es: +# {0} [SSH] Authentication failed. +SSHLauncher.AuthenticationFailed={0} [SSH] Fallo en la autenticación. +# {0} [SSH] Connection closed. +SSHLauncher.ConnectionClosed={0} [SSH] Cerrada la conexión. +# Failed to detect the environment for automatic JDK installation. Please report this to jenkinsci-users@googlegroups.com: {0} +SSHLauncher.FailedToDetectEnvironment=Se ha detectado un fallo al intentar detectar el entorno para instalar java (JDK). \ + Por favor envía un correo con el error a jenkinsci-users@googlegroups.com: {0} +# {0} [SSH] Error deleting file. +SSHLauncher.ErrorDeletingFile={0} [SSH] Error al borrar el fichero. +# {0} [SSH] The remote user's environment is: +SSHLauncher.RemoteUserEnvironment={0} [SSH] The entorno remoto del usuario es: +# Couldn''t figure out the Java version of {0} +SSHLauncher.UknownJavaVersion=Imposible de averiguar la versión de Java en {0} +# Slave start aborted. +SSHLauncher.AbortedDuringConnectionOpen=El inicio del nodo remoto ha sido abortado +# {0} [SSH] Starting slave process: {1} +SSHLauncher.StartingSlaveProcess={0} [SSH] Arrancando proceso en el nodo remoto: {1} +# {0} [SSH] {1} -version returned {2}. +SSHLauncher.JavaVersionResult={0} [SSH] {1} -version ha retornado {2}. +# Unexpected error in launching a slave. This is probably a bug in Jenkins. +SSHLauncher.UnexpectedError=Error inesperado al lanzar un nodo. Esto puede ser posiblemente un error (bug) de Jenkins +# Authentication failed. +SSHLauncher.AuthenticationFailedException=Autenticación fallida +# Java version {0} was found but 1.5 or later is needed. +SSHLauncher.NoJavaFound=Se encontró la versión de Java {0}, sin embargo se necesita la versión 1.5 o posterior +# {0} [SSH] Starting sftp client. +SSHLauncher.StartingSFTPClient={0} [SSH] Arrancando cliente de "sftp" +# Remote file system root {0} is a file not a directory or a symlink. +SSHLauncher.RemoteFSIsAFile=El systema de archivos remoto {0} es un fichero, no un directorio ni un link simbólico +# Launch slave agents on Unix machines via SSH +SSHLauncher.DescriptorDisplayName=Arrancar agentes remotos en máquinas Unix vía SSH +# {0} [SSH] Authenticating as {1}/{2}. +SSHLauncher.AuthenticatingUserPass={0} [SSH] Autenticándose como {1}/{2}. +# {0} [SSH] Checking java version of {1} +SSHLauncher.CheckingDefaultJava={0} [SSH] Comprobando la versión de java en {1} +# {0} [SSH] Authenticating as {1} with {2}. +SSHLauncher.AuthenticatingPublicKey={0} [SSH] Authenticándose como {1} con {2}. +# {0} [SSH] Opening SSH connection to {1}. +SSHLauncher.OpeningSSHConnection={0} [SSH] abriendo una conexión SSH sobre {1}. +# Could not copy slave.jar to ''{0}'' on slave +SSHLauncher.ErrorCopyingSlaveJarTo=Fué imposible copiar el archivo ''slave.jar'' a ''{0}'' en el nodo diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties new file mode 100644 index 0000000..b2d2398 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties @@ -0,0 +1,28 @@ +SSHLauncher.StartingSFTPClient={0} [SSH] sftp\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306e\u958b\u59cb +SSHLauncher.RemoteFSDoesNotExist={0} [SSH] \u30ea\u30e2\u30fc\u30c8FS\u30eb\u30fc\u30c8 {1} \u304c\u5b58\u5728\u3057\u306a\u3044\u306e\u3067\u3001\u4f5c\u6210\u3057\u307e\u3059... +SSHLauncher.RemoteFSIsAFile=\u30ea\u30e2\u30fc\u30c8FS\u30eb\u30fc\u30c8 {1} \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3084\u30ea\u30f3\u30af\u3067\u306f\u306a\u304f\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002 +SSHLauncher.CopyingSlaveJar={0} [SSH] \u6700\u65b0\u306eslave.jar\u3092\u30b3\u30d4\u30fc\u4e2d... +SSHLauncher.CopiedXXXBytes={0} [SSH] {1} \u30d0\u30a4\u30c8\u30b3\u30d4\u30fc. +SSHLauncher.ErrorCopyingSlaveJar=slave.jar\u3092\u30b9\u30ec\u30fc\u30d6\u306b\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +SSHLauncher.ErrorCopyingSlaveJarTo=slave.jar\u3092\u30b9\u30ec\u30fc\u30d6\u306e ''{0}'' \u306b\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +SSHLauncher.CheckingDefaultJava={0} [SSH] {1}\u306eJava\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c1\u30a7\u30c3\u30af +SSHLauncher.ConnectionClosed={0} [SSH] \u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u7d42\u4e86 +SSHLauncher.ErrorWhileClosingConnection=\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u7d42\u4e86\u4e2d\u306b\u4f8b\u5916\u304c\u767a\u751f +SSHLauncher.AbortedDuringConnectionOpen=\u30b9\u30ec\u30fc\u30d6\u306e\u958b\u59cb\u3092\u4e2d\u6b62 +SSHLauncher.FailedToDetectEnvironment=JDK\u81ea\u52d5\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u74b0\u5883\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002jenkinsci-users@googlegroups.com\u306b\u30ec\u30dd\u30fc\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\u3002: {0} +SSHLauncher.NoJavaFound=Java\u306e\u30d0\u30fc\u30b8\u30e7\u30f3 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u30011.5\u4ee5\u964d\u304c\u5fc5\u8981\u3067\u3059\u3002 +SSHLauncher.JavaVersionResult={0} [SSH] {1} -version returned {2}. +SSHLauncher.OpeningSSHConnection={0} [SSH] {1}\u3068\u306eSSH\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u3092\u30aa\u30fc\u30d7\u30f3 +SSHLauncher.AuthenticatingPublicKey={0} [SSH] {2}\u3092\u4f7f\u7528\u3057\u3066\u3001{1}\u3092\u8a8d\u8a3c +SSHLauncher.AuthenticatingUserPass={0} [SSH] {1}/{2}\u3092\u8a8d\u8a3c +SSHLauncher.AuthenticationSuccessful={0} [SSH] \u8a8d\u8a3c\u6210\u529f +SSHLauncher.AuthenticationFailed={0} [SSH] \u8a8d\u8a3c\u5931\u6557 +SSHLauncher.AuthenticationFailedException=\u8a8d\u8a3c\u5931\u6557 +SSHLauncher.ErrorDeletingFile={0} [SSH] \u30d5\u30a1\u30a4\u30eb\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +SSHLauncher.DescriptorDisplayName=SSH\u7d4c\u7531\u3067Unix\u30de\u30b7\u30f3\u306e\u30b9\u30ec\u30fc\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092\u8d77\u52d5 +SSHLauncher.SSHHeeaderJunkDetected=\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u524d\u306b\u3001SSH\u306e\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u306b\u4e0d\u8981\u306a\u30c7\u30fc\u30bf\u304c\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f\u3002\n.bashrc, .profile\u306a\u3069\u3092\u78ba\u8a8d\u3057\u3066\u3001\u9001\u3089\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u53d7\u4fe1\u3057\u305f\u4e0d\u8981\u306a\u30c7\u30fc\u30bf\u306f\u6b21\u306e\u901a\u308a\u3067\u3059\u3002: +SSHLauncher.UknownJavaVersion={0} \u306eJava\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4e0d\u660e\u3067\u3059\u3002 +SSHLauncher.UnexpectedError=\u30b9\u30ec\u30fc\u30d6\u306e\u8d77\u52d5\u6642\u306b\u4e0d\u660e\u306a\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u305f\u3076\u3093\u3001Jenkins\u306e\u30d0\u30b0\u3067\u3059\u3002 +SSHLauncher.StartingSlaveProcess={0} [SSH] \u30b9\u30ec\u30fc\u30d6\u306e\u30d7\u30ed\u30bb\u30b9\u3092\u958b\u59cb: {1} +SSHLauncher.RemoteUserEnvironment={0} [SSH] \u30ea\u30e2\u30fc\u30c8\u30e6\u30fc\u30b6\u30fc\u306e\u74b0\u5883: +SSHLauncher.StartingSCPClient={0} [SSH] SFTP\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002SCP\u3067\u30b3\u30d4\u30fc\u3057\u307e\u3059\u3002 \ No newline at end of file diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class new file mode 100644 index 0000000..306baac --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class new file mode 100644 index 0000000..6aace30 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class new file mode 100644 index 0000000..62bc214 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class new file mode 100644 index 0000000..0be87b2 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class new file mode 100644 index 0000000..3350a01 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class new file mode 100644 index 0000000..f3aa1ee --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class new file mode 100644 index 0000000..1beb11b --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class new file mode 100644 index 0000000..cc4ce50 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class new file mode 100644 index 0000000..4fbc576 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler new file mode 100644 index 0000000..117ca2e --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler @@ -0,0 +1,2 @@ +#Sat Mar 26 23:36:20 CET 2011 +constructor=port,username,password,privatekey,jvmOptions,javaPath diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly new file mode 100644 index 0000000..d4e45bc --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties new file mode 100644 index 0000000..86fd8cf --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties @@ -0,0 +1,28 @@ +# 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. + +Password=Contraseña +JVM\ Options=Opciones para java +Private\ Key\ File=Fichero con la clave privada +Username=Usuario +Port=Puerto +Host=Nombre de máquina diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties new file mode 100644 index 0000000..a81d585 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties @@ -0,0 +1,25 @@ +# 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. + +JVM\ Options=Options de la JVM +Password=Mot de passe +Username=Utilisateur diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties new file mode 100644 index 0000000..60d3688 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties @@ -0,0 +1,28 @@ +# 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. + +Host=\u30db\u30b9\u30c8 +Username=\u30e6\u30fc\u30b6\u30fc\u540d +Password=\u30d1\u30b9\u30ef\u30fc\u30c9 +Private\ Key\ File=\u79d8\u5bc6\u9375 +Port=\u30dd\u30fc\u30c8 +JVM\ Options=JVM\u30aa\u30d7\u30b7\u30e7\u30f3 diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties new file mode 100644 index 0000000..dd6c0fe --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties @@ -0,0 +1,28 @@ +# 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. + +Host=V\u00E4rd +JVM\ Options=JVM alternativ +Password=L\u00F6senord +Port=Port +Private\ Key\ File=Privatnyckelfil +Username=Anv\u00E4ndarnamn diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html new file mode 100644 index 0000000..8ff1883 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html @@ -0,0 +1,5 @@ +
+

This java Path will be used to start the jvm. (/mycustomjdkpath/bin/java ) + If empty Jenkins will search java command in the slave +

+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html new file mode 100644 index 0000000..2702681 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html @@ -0,0 +1,6 @@ +
+

This password will be used for both Public/Private Key authentication + and Username/Password authentication. If the SSH Private Key does not + require a password, this field will be ignored (i.e. it is not an error + to specify a password when none is needed).

+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html new file mode 100644 index 0000000..d355374 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html @@ -0,0 +1,5 @@ +
+

ã?“ã?®ãƒ‘スワードã?¯ã€?公開é?µ/秘密é?µèª?証やユーザーå??/パスワードèª?証ã?®ä¸¡æ–¹ã?«ä½¿ç”¨ã?•ã‚Œã?¾ã?™ã€‚ + 秘密é?µã?Œãƒ‘スワードを必è¦?ã?¨ã?—ã?ªã?„ã?®ã?§ã?‚ã‚Œã?°ã€? + ã?“ã?®é …ç›®ã?¯ç„¡è¦–ã?•ã‚Œã?¾ã?™(å¿…è¦?ã?§ã?ªã?‘ã‚Œã?°ã€?パスワードを指定ã?—ã?¦ã‚‚エラーã?«ã?¯ã?ªã‚Šã?¾ã?›ã‚“)。

+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html new file mode 100644 index 0000000..0851dbb --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html @@ -0,0 +1,8 @@ +
+

This specifies the absolute path on the master to the SSH private key file + (e.g. id_dsa or id_rsa) to use for + "password-less" Public/Private Key authentication.

+ +

If this field is blank or if the Public/Private key authentication + fails, the plugin will attempt username/password authentication.

+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html new file mode 100644 index 0000000..7d5c9f5 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html @@ -0,0 +1,5 @@ +
+

"パスワード����"公開�/秘密��証�使用�る� + SSH�秘密��ファイル(id_dsaやid_rsa)��絶対パスを指定���。

+

空欄ã?®å ´å?ˆã‚„ã€?公開é?µ/秘密é?µèª?証ã?«å¤±æ•—ã?—ã?Ÿå ´å?ˆã€?ユーザーå??/パスワードèª?証を試ã?—ã?¾ã?™ã€‚

+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html new file mode 100644 index 0000000..e5dcb6c --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html @@ -0,0 +1,4 @@ +
+ Specify the user name to be used for logging in to the remote host. If unspecified, + the user name that's running the Jenkins master will be used as a default. +
\ No newline at end of file diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html new file mode 100644 index 0000000..b1d7503 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html @@ -0,0 +1,4 @@ +
+ リモートホストã?«ãƒ­ã‚°ã‚¤ãƒ³ã?™ã‚‹ãƒ¦ãƒ¼ã‚¶ãƒ¼å??を指定ã?—ã?¾ã?™ã€‚ + 指定ã?—ã?ªã?„ã?¨ã€?デフォルトã?¨ã?—ã?¦ã€?Jenkinsã?®ãƒžã‚¹ã‚¿ãƒ¼ã?Œå‹•ä½œã?—ã?¦ã?„るユーザーå??を使用ã?—ã?¾ã?™ã€‚ +
\ No newline at end of file diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class new file mode 100644 index 0000000..f38f4b5 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class new file mode 100644 index 0000000..d262d40 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class new file mode 100644 index 0000000..f34c8d7 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class new file mode 100644 index 0000000..585e78a --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class Binary files differ diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler new file mode 100644 index 0000000..073c1ea --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler @@ -0,0 +1,2 @@ +#Sat Mar 26 23:36:20 CET 2011 +constructor=host,port,username,password,privatekey,jvmOptions,javaPath diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly new file mode 100644 index 0000000..d956a4b --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly @@ -0,0 +1,8 @@ + + + + + + + diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties new file mode 100644 index 0000000..86fd8cf --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties @@ -0,0 +1,28 @@ +# 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. + +Password=Contraseña +JVM\ Options=Opciones para java +Private\ Key\ File=Fichero con la clave privada +Username=Usuario +Port=Puerto +Host=Nombre de máquina diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties new file mode 100644 index 0000000..a81d585 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties @@ -0,0 +1,25 @@ +# 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. + +JVM\ Options=Options de la JVM +Password=Mot de passe +Username=Utilisateur diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties new file mode 100644 index 0000000..60d3688 --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties @@ -0,0 +1,28 @@ +# 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. + +Host=\u30db\u30b9\u30c8 +Username=\u30e6\u30fc\u30b6\u30fc\u540d +Password=\u30d1\u30b9\u30ef\u30fc\u30c9 +Private\ Key\ File=\u79d8\u5bc6\u9375 +Port=\u30dd\u30fc\u30c8 +JVM\ Options=JVM\u30aa\u30d7\u30b7\u30e7\u30f3 diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties new file mode 100644 index 0000000..dd6c0fe --- /dev/null +++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties @@ -0,0 +1,28 @@ +# 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. + +Host=V\u00E4rd +JVM\ Options=JVM alternativ +Password=L\u00F6senord +Port=Port +Private\ Key\ File=Privatnyckelfil +Username=Anv\u00E4ndarnamn diff --git a/work/plugins/subversion.hpl b/work/plugins/subversion.hpl new file mode 100644 index 0000000..4f17971 --- /dev/null +++ b/work/plugins/subversion.hpl @@ -0,0 +1,139 @@ +Manifest-Version: 1.0 +Group-Id: org.jenkins-ci.plugins +Short-Name: subversion +Long-Name: Jenkins Subversion Plug-in +Url: http://wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin +Plugin-Version: 1.43 +Hudson-Version: 1.405 +Jenkins-Version: 1.405 +Plugin-Dependencies: ui-samples-plugin:1.405,maven-plugin:1.405 +Plugin-Developers: Many:kohsuke abayer dodok1 dty huybrechts mindless + pgweiss stephenconnolly rseguy kutzi etc: +Libraries: C:\TA\WS\subversion-plugin\target\classes,C:\Users\klaus.az + esberger\.m2\repository\org\jenkins-ci\svnkit\svnkit\1.7.4-jenkins-3\ + svnkit-1.7.4-jenkins-3.jar,C:\Users\klaus.azesberger\.m2\repository\o + rg\tmatesoft\sqljet\sqljet\1.1.0\sqljet-1.1.0.jar,C:\Users\klaus.azes + berger\.m2\repository\org\antlr\antlr-runtime\3.4\antlr-runtime-3.4.j + ar,C:\Users\klaus.azesberger\.m2\repository\de\regnis\q\sequence\sequ + ence-library\1.0.1\sequence-library-1.0.1.jar,C:\Users\klaus.azesberg + er\.m2\repository\org\mockito\mockito-core\1.8.5\mockito-core-1.8.5.j + ar,C:\Users\klaus.azesberger\.m2\repository\org\hamcrest\hamcrest-cor + e\1.1\hamcrest-core-1.1.jar,C:\Users\klaus.azesberger\.m2\repository\ + org\objenesis\objenesis\1.0\objenesis-1.0.jar,C:\Users\klaus.azesberg + er\.m2\repository\org\jenkins-ci\main\jenkins-test-harness\1.405\jenk + ins-test-harness-1.405.jar,C:\Users\klaus.azesberger\.m2\repository\o + rg\jenkins-ci\main\jenkins-war\1.405\jenkins-war-1.405-war-for-test.j + ar,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\modules\in + stance-identity\1.1\instance-identity-1.1.jar,C:\Users\klaus.azesberg + er\.m2\repository\bouncycastle\bcprov-jdk15\140\bcprov-jdk15-140.jar, + C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main\maven-pl + ugin\1.405\maven-plugin-1.405.jar,C:\Users\klaus.azesberger\.m2\repos + itory\org\jenkins-ci\main\maven\maven-agent\1.1\maven-agent-1.1.jar,C + :\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main\maven\mav + en-interceptor\1.1\maven-interceptor-1.1.jar,C:\Users\klaus.azesberge + r\.m2\repository\org\jvnet\hudson\maven2.1-interceptor\1.2\maven2.1-i + nterceptor-1.2.jar,C:\Users\klaus.azesberger\.m2\repository\org\jenki + ns-ci\main\maven\maven3-agent\1.1\maven3-agent-1.1.jar,C:\Users\klaus + .azesberger\.m2\repository\org\jenkins-ci\main\maven\maven3-intercept + or\1.1\maven3-interceptor-1.1.jar,C:\Users\klaus.azesberger\.m2\repos + itory\org\apache\maven\maven-core\3.0.3\maven-core-3.0.3.jar,C:\Users + \klaus.azesberger\.m2\repository\org\apache\maven\maven-model\3.0.3\m + aven-model-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\org\apa + che\maven\maven-settings\3.0.3\maven-settings-3.0.3.jar,C:\Users\klau + s.azesberger\.m2\repository\org\apache\maven\maven-settings-builder\3 + .0.3\maven-settings-builder-3.0.3.jar,C:\Users\klaus.azesberger\.m2\r + epository\org\apache\maven\maven-repository-metadata\3.0.3\maven-repo + sitory-metadata-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\or + g\apache\maven\maven-artifact\3.0.3\maven-artifact-3.0.3.jar,C:\Users + \klaus.azesberger\.m2\repository\org\apache\maven\maven-plugin-api\3. + 0.3\maven-plugin-api-3.0.3.jar,C:\Users\klaus.azesberger\.m2\reposito + ry\org\apache\maven\maven-model-builder\3.0.3\maven-model-builder-3.0 + .3.jar,C:\Users\klaus.azesberger\.m2\repository\org\codehaus\plexus\p + lexus-interpolation\1.14\plexus-interpolation-1.14.jar,C:\Users\klaus + .azesberger\.m2\repository\org\codehaus\plexus\plexus-utils\2.0.6\ple + xus-utils-2.0.6.jar,C:\Users\klaus.azesberger\.m2\repository\org\code + haus\plexus\plexus-component-annotations\1.5.5\plexus-component-annot + ations-1.5.5.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatyp + e\plexus\plexus-sec-dispatcher\1.3\plexus-sec-dispatcher-1.3.jar,C:\U + sers\klaus.azesberger\.m2\repository\org\apache\maven\maven-compat\3. + 0.3\maven-compat-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\o + rg\apache\maven\maven-aether-provider\3.0.3\maven-aether-provider-3.0 + .3.jar,C:\Users\klaus.azesberger\.m2\repository\org\apache\maven\mave + n-embedder\3.0.3\maven-embedder-3.0.3.jar,C:\Users\klaus.azesberger\. + m2\repository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4 + .jar,C:\Users\klaus.azesberger\.m2\repository\commons-cli\commons-cli + \1.2\commons-cli-1.2.jar,C:\Users\klaus.azesberger\.m2\repository\org + \sonatype\aether\aether-api\1.11\aether-api-1.11.jar,C:\Users\klaus.a + zesberger\.m2\repository\org\sonatype\aether\aether-impl\1.11\aether- + impl-1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\a + ether\aether-spi\1.11\aether-spi-1.11.jar,C:\Users\klaus.azesberger\. + m2\repository\org\sonatype\aether\aether-util\1.11\aether-util-1.11.j + ar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\aether\aethe + r-connector-wagon\1.11\aether-connector-wagon-1.11.jar,C:\Users\klaus + .azesberger\.m2\repository\org\sonatype\sisu\sisu-inject-plexus\1.4.3 + .1\sisu-inject-plexus-1.4.3.1.jar,C:\Users\klaus.azesberger\.m2\repos + itory\org\sonatype\sisu\sisu-inject-bean\1.4.3.1\sisu-inject-bean-1.4 + .3.1.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\sisu\s + isu-guice\2.9.1\sisu-guice-2.9.1-noaop.jar,C:\Users\klaus.azesberger\ + .m2\repository\org\apache\maven\wagon\wagon-http-lightweight\1.0-beta + -7\wagon-http-lightweight-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m + 2\repository\org\apache\maven\wagon\wagon-http-shared\1.0-beta-7\wago + n-http-shared-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository + \org\apache\maven\wagon\wagon-file\1.0-beta-7\wagon-file-1.0-beta-7.j + ar,C:\Users\klaus.azesberger\.m2\repository\org\apache\maven\wagon\wa + gon-ftp\1.0-beta-7\wagon-ftp-1.0-beta-7.jar,C:\Users\klaus.azesberger + \.m2\repository\commons-net\commons-net\2.0\commons-net-2.0.jar,C:\Us + ers\klaus.azesberger\.m2\repository\org\apache\maven\wagon\wagon-ssh\ + 1.0-beta-7\wagon-ssh-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\rep + ository\com\jcraft\jsch\0.1.38\jsch-0.1.38.jar,C:\Users\klaus.azesber + ger\.m2\repository\org\apache\maven\wagon\wagon-ssh-common\1.0-beta-7 + \wagon-ssh-common-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\reposi + tory\org\codehaus\plexus\plexus-interactivity-api\1.0-alpha-6\plexus- + interactivity-api-1.0-alpha-6.jar,C:\Users\klaus.azesberger\.m2\repos + itory\org\apache\maven\wagon\wagon-ssh-external\1.0-beta-7\wagon-ssh- + external-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository\org\ + apache\maven\wagon\wagon-provider-api\1.0-beta-7\wagon-provider-api-1 + .0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository\org\apache\mav + en\reporting\maven-reporting-api\3.0\maven-reporting-api-3.0.jar,C:\U + sers\klaus.azesberger\.m2\repository\org\apache\maven\doxia\doxia-sin + k-api\1.0\doxia-sink-api-1.0.jar,C:\Users\klaus.azesberger\.m2\reposi + tory\org\codehaus\plexus\plexus-classworlds\2.3\plexus-classworlds-2. + 3.jar,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\lib\lib + -jenkins-maven-artifact-manager\1.1\lib-jenkins-maven-artifact-manage + r-1.1.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet\hudson\h + udson-maven-embedder\3.2\hudson-maven-embedder-3.2.jar,C:\Users\klaus + .azesberger\.m2\repository\org\jvnet\hudson\wagon-webdav\1.0-beta-2-h + udson-1\wagon-webdav-1.0-beta-2-hudson-1.jar,C:\Users\klaus.azesberge + r\.m2\repository\slide\slide-webdavlib\2.1\slide-webdavlib-2.1.jar,C: + \Users\klaus.azesberger\.m2\repository\de\zeigermann\xml\xml-im-expor + ter\1.1\xml-im-exporter-1.1.jar,C:\Users\klaus.azesberger\.m2\reposit + ory\net\sourceforge\nekohtml\nekohtml\1.9.13\nekohtml-1.9.13.jar,C:\U + sers\klaus.azesberger\.m2\repository\org\mortbay\jetty\jetty\6.1.11\j + etty-6.1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\mortbay\ + jetty\jetty-util\6.1.11\jetty-util-6.1.11.jar,C:\Users\klaus.azesberg + er\.m2\repository\org\mortbay\jetty\servlet-api-2.5\6.1.11\servlet-ap + i-2.5-6.1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet\h + udson\test-annotations\1.0\test-annotations-1.0.jar,C:\Users\klaus.az + esberger\.m2\repository\org\jvnet\mock-javamail\mock-javamail\1.7\moc + k-javamail-1.7.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet + \hudson\htmlunit\2.6-hudson-2\htmlunit-2.6-hudson-2.jar,C:\Users\klau + s.azesberger\.m2\repository\xalan\xalan\2.7.1\xalan-2.7.1.jar,C:\User + s\klaus.azesberger\.m2\repository\xalan\serializer\2.7.1\serializer-2 + .7.1.jar,C:\Users\klaus.azesberger\.m2\repository\commons-httpclient\ + commons-httpclient\3.1\commons-httpclient-3.1.jar,C:\Users\klaus.azes + berger\.m2\repository\org\jvnet\hudson\htmlunit-core-js\2.6-hudson-1\ + htmlunit-core-js-2.6-hudson-1.jar,C:\Users\klaus.azesberger\.m2\repos + itory\xerces\xercesImpl\2.9.1\xercesImpl-2.9.1.jar,C:\Users\klaus.aze + sberger\.m2\repository\net\sourceforge\cssparser\cssparser\0.9.5\cssp + arser-0.9.5.jar,C:\Users\klaus.azesberger\.m2\repository\org\w3c\css\ + sac\1.3\sac-1.3.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvne + t\hudson\embedded-rhino-debugger\1.2\embedded-rhino-debugger-1.2.jar, + C:\Users\klaus.azesberger\.m2\repository\org\jvnet\hudson\netx\0.5-hu + dson-2\netx-0.5-hudson-2.jar,C:\Users\klaus.azesberger\.m2\repository + \org\easymock\easymock\2.4\easymock-2.4.jar,C:\Users\klaus.azesberger + \.m2\repository\junit\junit\4.9\junit-4.9.jar,C:\Users\klaus.azesberg + er\.m2\repository\org\jenkins-ci\main\jenkins-war\1.405\jenkins-war-1 + .405.war,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main + \ui-samples-plugin\1.405\ui-samples-plugin-1.405.jar +Resource-Path: C:\TA\WS\subversion-plugin\src\main\webapp + diff --git a/work/plugins/ui-samples-plugin.hpi b/work/plugins/ui-samples-plugin.hpi new file mode 100644 index 0000000..2b8112e --- /dev/null +++ b/work/plugins/ui-samples-plugin.hpi Binary files differ diff --git a/work/plugins/ui-samples-plugin.hpi.pinned b/work/plugins/ui-samples-plugin.hpi.pinned new file mode 100644 index 0000000..e5df6ce --- /dev/null +++ b/work/plugins/ui-samples-plugin.hpi.pinned @@ -0,0 +1 @@ +pinned \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/.timestamp b/work/plugins/ui-samples-plugin/.timestamp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/ui-samples-plugin/.timestamp diff --git a/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF b/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF new file mode 100644 index 0000000..cb0b015 --- /dev/null +++ b/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF @@ -0,0 +1,18 @@ +Manifest-Version: 1.0 +Archiver-Version: Plexus Archiver +Created-By: Apache Maven +Built-By: kohsuke +Build-Jdk: 1.6.0_24 +Extension-Name: ui-samples-plugin +Specification-Title: The module that constitutes the main jenkins.war +Implementation-Title: ui-samples-plugin +Implementation-Version: 1.405 +Group-Id: org.jenkins-ci.main +Short-Name: ui-samples-plugin +Long-Name: Jenkins UI sample plugin +Url: http://jenkins-ci.org/pom/ui-samples-plugin/ +Plugin-Version: 1.405 +Hudson-Version: 1.405 +Jenkins-Version: 1.405 +Plugin-Developers: + diff --git a/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties new file mode 100644 index 0000000..b07de4a --- /dev/null +++ b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Mon Apr 04 09:47:48 PDT 2011 +version=1.405 +groupId=org.jenkins-ci.main +artifactId=ui-samples-plugin diff --git a/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml new file mode 100644 index 0000000..905827d --- /dev/null +++ b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml @@ -0,0 +1,116 @@ + + + + 4.0.0 + + org.jenkins-ci.main + pom + 1.405 + + + ui-samples-plugin + hpi + Jenkins UI sample plugin + + + + org.jenkins-ci.main + jenkins-core + ${project.version} + provided + + + + org.jenkins-ci.main + jenkins-test-harness + ${project.version} + test + + + org.jenkins-ci.main + jenkins-war + war + ${project.version} + test + + + javax.servlet + servlet-api + 2.4 + provided + + + + + + ${project.artifactId} + package + + + src/main/resources + + + src/main/java + + + + + org.jenkins-ci.tools + maven-hpi-plugin + + true + + true + + + + org.kohsuke.stapler + maven-stapler-plugin + 1.15 + true + + + org.jvnet.localizer + maven-localizer-plugin + 1.8 + + + + generate + + + Messages.properties + target/generated-sources/localizer + + + + + + + diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension new file mode 100644 index 0000000..eedbaea --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class new file mode 100644 index 0000000..d086ce4 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class new file mode 100644 index 0000000..d42783e --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java new file mode 100644 index 0000000..adeab08 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java @@ -0,0 +1,113 @@ +/* + * The MIT License + * + * Copyright (c) 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.plugins.ui_samples; + +import hudson.Extension; +import hudson.model.AutoCompletionCandidates; +import org.kohsuke.stapler.QueryParameter; + +/** + * Adding auto-completion to the text box. + * + * @author Kohsuke Kawaguchi + */ +@Extension +public class AutoCompleteTextBox extends UISample { + @Override + public String getDescription() { + return "Provide auto-completion to the text box"; + } + + @Extension + public static final class DescriptorImpl extends UISampleDescriptor { + /** + * This method provides auto-completion items for the 'state' field. + * Stapler finds this method via the naming convention. + * + * @param value + * The text that the user entered. + */ + public AutoCompletionCandidates doAutoCompleteState(@QueryParameter String value) { + AutoCompletionCandidates c = new AutoCompletionCandidates(); + for (String state : STATES) + if (state.toLowerCase().startsWith(value.toLowerCase())) + c.add(state); + return c; + } + } + + private static final String[] STATES = new String[]{ + "Alabama", + "Alaska", + "Arizona", + "Arkansas", + "California", + "Colorado", + "Connecticut", + "Delaware", + "Florida", + "Georgia", + "Hawaii", + "Idaho", + "Illinois", + "Indiana", + "Iowa", + "Kansas", + "Kentucky", + "Louisiana", + "Maine", + "Maryland", + "Massachusetts", + "Michigan", + "Minnesota", + "Mississippi", + "Missouri", + "Montana", + "Nebraska", + "Nevada", + "New Hampshire", + "New Jersey", + "New Mexico", + "New York", + "North Carolina", + "North Dakota", + "Ohio", + "Oklahoma", + "Oregon", + "Pennsylvania", + "Rhode Island", + "South Carolina", + "South Dakota", + "Tennessee", + "Texas", + "Utah", + "Vermont", + "Virginia", + "Washington", + "West Virginia", + "Wisconsin", + "Wyoming" + }; +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler new file mode 100644 index 0000000..2890eea --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler @@ -0,0 +1 @@ +value \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly new file mode 100644 index 0000000..45381e7 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly @@ -0,0 +1,36 @@ + + + + +
+ + + + +
+
+
+
+ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class new file mode 100644 index 0000000..23fd3cb --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class new file mode 100644 index 0000000..e33051a --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class new file mode 100644 index 0000000..ddcdb6d --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class new file mode 100644 index 0000000..b22a169 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class new file mode 100644 index 0000000..96f4db8 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class new file mode 100644 index 0000000..9aaf431 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class new file mode 100644 index 0000000..2539ca6 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java new file mode 100644 index 0000000..82c82ba --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java @@ -0,0 +1,92 @@ +package hudson.plugins.ui_samples; + +import hudson.DescriptorExtensionList; +import hudson.Extension; +import hudson.ExtensionPoint; +import hudson.model.Describable; +import hudson.model.Descriptor; +import hudson.model.Hudson; +import hudson.util.XStream2; +import java.io.IOException; +import java.util.List; +import javax.servlet.ServletException; +import org.kohsuke.stapler.DataBoundConstructor; +import org.kohsuke.stapler.StaplerRequest; +import org.kohsuke.stapler.StaplerResponse; + +/** + * @author Alan.Harder@oracle.com + */ +@Extension +public class DropdownList extends UISample { + + @Override + public String getDescription() { + return "Show different form elements based on choice in a <select> control"; + } + + public Fruit getFruit() { + // Could return currently configured/saved item here to initialized form with this data + return null; + } + + public DescriptorExtensionList> getFruitDescriptors() { + return Hudson.getInstance().>getDescriptorList(Fruit.class); + } + + // Process form data and show it as serialized XML + public void doSubmit(StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException { + // stapler-class in form data tells Stapler which Fruit subclass to use + Fruit fruit = req.bindJSON(Fruit.class, req.getSubmittedForm().getJSONObject("fruit")); + rsp.setContentType("text/plain"); + new XStream2().toXML(fruit, rsp.getWriter()); + } + + @Override + public List getSourceFiles() { + List list = new java.util.ArrayList(super.getSourceFiles()); + list.add(new SourceFile("Apple/config.jelly")); + list.add(new SourceFile("Banana/config.jelly")); + return list; + } + + @Extension + public static final class DescriptorImpl extends UISampleDescriptor { + } + + public static class Fruit implements ExtensionPoint, Describable { + protected String name; + private Fruit(String name) { this.name = name; } + + public Descriptor getDescriptor() { + return Hudson.getInstance().getDescriptor(getClass()); + } + } + + public static class FruitDescriptor extends Descriptor { + public FruitDescriptor(Class clazz) { + super(clazz); + } + public String getDisplayName() { + return clazz.getSimpleName(); + } + } + + public static class Apple extends Fruit { + private int seeds; + @DataBoundConstructor public Apple(int seeds) { + super("Apple"); + this.seeds = seeds; + } + @Extension public static final FruitDescriptor D = new FruitDescriptor(Apple.class); + } + + public static class Banana extends Fruit { + private boolean yellow; + @DataBoundConstructor public Banana(boolean yellow) { + super("Banana"); + this.yellow = yellow; + } + @Extension public static final FruitDescriptor D = new FruitDescriptor(Banana.class); + } +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler new file mode 100644 index 0000000..e601138 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler @@ -0,0 +1,2 @@ +#Mon Apr 04 09:47:45 PDT 2011 +constructor=seeds diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly new file mode 100644 index 0000000..932613b --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly @@ -0,0 +1,29 @@ + + + + + + + diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler new file mode 100644 index 0000000..b12ff30 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler @@ -0,0 +1,2 @@ +#Mon Apr 04 09:47:45 PDT 2011 +constructor=yellow diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly new file mode 100644 index 0000000..8079626 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly @@ -0,0 +1,29 @@ + + + + + + + diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly new file mode 100644 index 0000000..c2f6b05 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly @@ -0,0 +1,50 @@ + + + + +
+ + + + + + + + + + + + + + + + + + +
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class new file mode 100644 index 0000000..2c31a0f --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class new file mode 100644 index 0000000..854a4f2 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java new file mode 100644 index 0000000..c806eda --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java @@ -0,0 +1,64 @@ +package hudson.plugins.ui_samples; + +import hudson.Extension; +import hudson.util.ComboBoxModel; +import hudson.util.ListBoxModel; +import org.kohsuke.stapler.QueryParameter; + +/** + * Combo box that changes the contents based on the values of other controls. + * + * @author Kohsuke Kawaguchi + */ +@Extension +public class DynamicComboBox extends UISample { + + @Override + public String getDescription() { + return "Updates the contents of a combo box control dynamically based on selections of other controls"; + } + + // these getter methods should return the current value, which form the initial selection. + + public String getAlbum() { + return "3"; + } + + public String getTitle() { + return "Rocker"; + } + + @Extension + public static final class DescriptorImpl extends UISampleDescriptor { + /** + * This method determines the values of the album drop-down list box. + */ + public ListBoxModel doFillAlbumItems() { + ListBoxModel m = new ListBoxModel(); + m.add("Yellow Submarine","1"); + m.add("Abbey Road","2"); + m.add("Let It Be","3"); + return m; + } + + /** + * This method determines the values of the song title combo box. + * Note that it takes the album information as a parameter, so the contents + * of the combo box changes depending on the currently selected album. + */ + public ComboBoxModel doFillTitleItems(@QueryParameter int album) { + switch (album) { + case 1: + return new ComboBoxModel("Yellow Submarine","Only a Northern Song","All You Need Is Love"); + case 2: + return new ComboBoxModel("Come Together","Something","I Want You"); + case 3: + return new ComboBoxModel("The One After 909","Rocker","Get Back"); + default: + // if no value is selected in the album, we'll get 0 + return new ComboBoxModel(); + } + } + + } +} \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler new file mode 100644 index 0000000..0b136ba --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler @@ -0,0 +1 @@ +album \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly new file mode 100644 index 0000000..0d66eed --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly @@ -0,0 +1,38 @@ + + + + +
+ + + + + + + +
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class new file mode 100644 index 0000000..25d765d --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class new file mode 100644 index 0000000..edabc49 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java new file mode 100644 index 0000000..d6c66fa --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java @@ -0,0 +1,54 @@ +package hudson.plugins.ui_samples; + +import hudson.Extension; +import hudson.util.ListBoxModel; +import org.kohsuke.stapler.QueryParameter; + +import static java.util.Arrays.asList; + +/** + * Example of a dynamic drop-down list box that changes the contents dynamically based on the values of other controls. + * + * @author Kohsuke Kawaguchi + */ +@Extension +public class DynamicDropDownListBox extends UISample { + + @Override + public String getDescription() { + return "Updates the contents of a <select> control dynamically based on selections of other controls"; + } + + // these getter methods should return the current value, which form the initial selection. + + public String getCountry() { + return "USA"; + } + + public String getState() { + return "USA:B"; + } + + public String getCity() { + return "USA:B:Z"; + } + + @Extension + public static final class DescriptorImpl extends UISampleDescriptor { + public ListBoxModel doFillStateItems(@QueryParameter String country) { + ListBoxModel m = new ListBoxModel(); + for (String s : asList("A","B","C")) + m.add(String.format("State %s in %s", s, country), + country+':'+s); + return m; + } + + public ListBoxModel doFillCityItems(@QueryParameter String country, @QueryParameter String state) { + ListBoxModel m = new ListBoxModel(); + for (String s : asList("X","Y","Z")) + m.add(String.format("City %s in %s %s", s, state, country), + state+':'+s); + return m; + } + } +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler new file mode 100644 index 0000000..317ee67 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler @@ -0,0 +1 @@ +country,state \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler new file mode 100644 index 0000000..d6cef85 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler @@ -0,0 +1 @@ +country \ No newline at end of file diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly new file mode 100644 index 0000000..7366121 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly @@ -0,0 +1,41 @@ + + + + +
+ + + + + + + + + + +
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class new file mode 100644 index 0000000..e1a7d1a --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class new file mode 100644 index 0000000..e0a99e7 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java new file mode 100644 index 0000000..33a90f6 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java @@ -0,0 +1,32 @@ +package hudson.plugins.ui_samples; + +import hudson.Extension; +import org.kohsuke.stapler.bind.JavaScriptMethod; + +/** + * "Export" Java objects to JavaScript in the browser as a proxy object, so that + * you can make ajax-calls to the server later. + * + * @author Kohsuke Kawaguchi + */ +@Extension +public class JavaScriptProxy extends UISample { + private int i; + + @Override + public String getDescription() { + return "Use JavaScript proxy objects to access server-side Java objects from inside the browser."; + } + + /** + * The annotation exposes this method to JavaScript proxy. + */ + @JavaScriptMethod + public int increment(int n) { + return i+=n; + } + + @Extension + public static final class DescriptorImpl extends UISampleDescriptor { + } +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly new file mode 100644 index 0000000..7192bbc --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly @@ -0,0 +1,45 @@ + + + + +

+ In Jenkins, you can export arbitrary server-side Java object to JavaScript via a proxy, + then invoke their methods from JavaScript. See the Wiki for more details. + In this sample, we call a method on the server to increment a counter. This object is a singleton, + so you'll see the same counter value across all the browsers. +

+ + + +
+ + + diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class new file mode 100644 index 0000000..28e5638 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java new file mode 100644 index 0000000..ebe927e --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java @@ -0,0 +1,37 @@ +package hudson.plugins.ui_samples; + +import hudson.Extension; +import hudson.model.RootAction; + +import java.util.List; + +/** + * Entry point to all the UI samples. + * + * @author Kohsuke Kawaguchi + */ +@Extension +public class Root implements RootAction { + public String getIconFileName() { + return "gear.gif"; + } + + public String getDisplayName() { + return "UI Samples"; + } + + public String getUrlName() { + return "ui-samples"; + } + + public UISample getDynamic(String name) { + for (UISample ui : getAll()) + if (ui.getUrlName().equals(name)) + return ui; + return null; + } + + public List getAll() { + return UISample.all(); + } +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly new file mode 100644 index 0000000..77b85d5 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly @@ -0,0 +1,43 @@ + + + + + +

UI Samples

+ + + + + +
+ +
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample$SourceFile.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample$SourceFile.class new file mode 100644 index 0000000..7d3178b --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample$SourceFile.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.class new file mode 100644 index 0000000..3e32d1e --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.java new file mode 100644 index 0000000..8736ddc --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISample.java @@ -0,0 +1,99 @@ +package hudson.plugins.ui_samples; + +import hudson.ExtensionList; +import hudson.ExtensionPoint; +import hudson.model.Action; +import hudson.model.Describable; +import hudson.model.Hudson; +import org.kohsuke.stapler.StaplerRequest; +import org.kohsuke.stapler.StaplerResponse; + +import java.io.IOException; +import java.net.URL; +import java.util.Arrays; +import java.util.List; + +import static org.apache.commons.io.IOUtils.copy; + +/** + * @author Kohsuke Kawaguchi + */ +public abstract class UISample implements ExtensionPoint, Action, Describable { + public String getIconFileName() { + return "gear.gif"; + } + + public String getUrlName() { + return getClass().getSimpleName(); + } + + /** + * Default display name. + */ + public String getDisplayName() { + return getClass().getSimpleName(); + } + + /** + * Source files associated with this sample. + */ + public List getSourceFiles() { + return Arrays.asList(new SourceFile(getClass().getSimpleName()+".java"), + new SourceFile("index.jelly")); + } + + /** + * Binds {@link SourceFile}s into URL. + */ + public void doSourceFile(StaplerRequest req, StaplerResponse rsp) throws IOException { + String name = req.getRestOfPath().substring(1); // Remove leading / + for (SourceFile sf : getSourceFiles()) + if (sf.name.equals(name)) { + sf.doIndex(rsp); + return; + } + rsp.sendError(rsp.SC_NOT_FOUND); + } + + /** + * Returns a paragraph of natural text that describes this sample. + * Interpreted as HTML. + */ + public abstract String getDescription(); + + public UISampleDescriptor getDescriptor() { + return (UISampleDescriptor)Hudson.getInstance().getDescriptorOrDie(getClass()); + } + + /** + * Returns all the registered {@link UISample}s. + */ + public static ExtensionList all() { + return Hudson.getInstance().getExtensionList(UISample.class); + } + + /** + * @author Kohsuke Kawaguchi + */ + public class SourceFile { + public final String name; + + public SourceFile(String name) { + this.name = name; + } + + public URL resolve() { + return UISample.this.getClass().getResource( + name.endsWith(".jelly") ? UISample.this.getClass().getSimpleName()+"/"+name : name); + } + + /** + * Serves this source file. + */ + public void doIndex(StaplerResponse rsp) throws IOException { + rsp.setContentType("text/plain;charset=UTF-8"); + copy(resolve().openStream(),rsp.getOutputStream()); + } + } + +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.class new file mode 100644 index 0000000..a2bad88 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.class Binary files differ diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.java new file mode 100644 index 0000000..415e4a1 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/UISampleDescriptor.java @@ -0,0 +1,13 @@ +package hudson.plugins.ui_samples; + +import hudson.model.Descriptor; + +/** + * @author Kohsuke Kawaguchi + */ +public abstract class UISampleDescriptor extends Descriptor { + @Override + public String getDisplayName() { + return clazz.getSimpleName(); + } +} diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/sample.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/sample.jelly new file mode 100644 index 0000000..3d9078e --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/sample.jelly @@ -0,0 +1,50 @@ + + + + + Page layout for UI samples and variable bindings that emulate the form environment. + + Page title + + + + + + +

${title}

+

+ +

+

Source Files

+ +

Sample

+ +
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/taglib b/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/taglib new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/lib/samples/taglib diff --git a/work/queue.xml.bak b/work/queue.xml.bak new file mode 100644 index 0000000..2b0ec83 --- /dev/null +++ b/work/queue.xml.bak @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/work/secret.key b/work/secret.key new file mode 100644 index 0000000..676d18a --- /dev/null +++ b/work/secret.key @@ -0,0 +1 @@ +8cee3c7ecd7a825629d523c08809c793e1daf535b6c7b854fb2d4eecd3272709 \ No newline at end of file diff --git a/work/updates/default.json b/work/updates/default.json new file mode 100644 index 0000000..ab621b7 --- /dev/null +++ b/work/updates/default.json @@ -0,0 +1 @@ +{"connectionCheckUrl": "http://www.google.com/", "core": {"buildDate": "Dec 09, 2012", "name": "core", "sha1": "IsrvkVXNaRaiCAnhNLJXsmGUNCo=", "url": "http://updates.jenkins-ci.org/download/war/1.493/jenkins.war", "version": "1.493"}, "id": "default", "plugins": {"AdaptivePlugin": {"buildDate": "Mar 03, 2011", "dependencies": [], "developers": [{"developerId": "magnayn", "email": "nigel.magnay@gmail.com", "name": "Nigel Magnay"}], "excerpt": "This (experimental) plug-in exposes the jenkins build extension points (SCM, Build, Publish) to a groovy scripting environment that has some DSL-style extensions for ease of development.", "gav": "jenkins:AdaptivePlugin:0.1", "labels": ["misc", "buildwrapper"], "name": "AdaptivePlugin", "releaseTimestamp": "2011-03-03T16:49:24.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "il8z91iDnqVMu78Ghj8q2swCpdk=", "title": "Jenkins Adaptive Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/AdaptivePlugin/0.1/AdaptivePlugin.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Adaptive+Plugin"}, "AnchorChain": {"buildDate": "Mar 11, 2012", "dependencies": [], "developers": [{"developerId": "direvius", "email": "direvius@gmail.com", "name": "Alexey Lavrenuke"}], "excerpt": "This plugin allows you to add some links from a text file to the sidebar at every build. ", "gav": "org.jenkins-ci.plugins:AnchorChain:1.0", "labels": ["report"], "name": "AnchorChain", "releaseTimestamp": "2012-03-11T21:59:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "rY1W96ad9TJI1F3phFG8X4LE26Q=", "title": "AnchorChain plugin", "url": "http://updates.jenkins-ci.org/download/plugins/AnchorChain/1.0/AnchorChain.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AnchorChain+plugin"}, "BlameSubversion": {"buildDate": "Nov 01, 2010", "dependencies": [], "developers": [{"developerId": "tangjinou", "email": "tangjinou@gmail.com", "name": "Developer Guy"}], "excerpt": "This plug-in provides utilities for getting svn info from upstream job to downstream job", "gav": "org.jvnet.hudson.plugins:BlameSubversion:1.25", "labels": ["scm"], "name": "BlameSubversion", "previousTimestamp": "2010-11-01T22:58:56.00Z", "previousVersion": "1.24", "releaseTimestamp": "2010-11-02T00:15:06.00Z", "requiredCore": "1.355", "scm": "svn.dev.java.net", "sha1": "+KfZDf4mOrJBZIbSjTEjVSxnGnM=", "title": "BlameSubversion", "url": "http://updates.jenkins-ci.org/download/plugins/BlameSubversion/1.25/BlameSubversion.hpi", "version": "1.25", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BlameSubversion"}, "BlazeMeterJenkinsPlugin": {"buildDate": "Oct 30, 2012", "dependencies": [], "developers": [{"developerId": "doron-bloch", "name": "Doron Bloch"}], "excerpt": "This plugin allows you to load test your site using BlazeMeter. Jenkins will show a report generated by the test. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage, and response time.", "gav": "com.blazemeter.plugins:BlazeMeterJenkinsPlugin:1.02-beta-3", "labels": ["post-build"], "name": "BlazeMeterJenkinsPlugin", "previousTimestamp": "2012-10-16T21:10:04.00Z", "previousVersion": "1.01-beta-2", "releaseTimestamp": "2012-10-30T15:27:40.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "JAuWkRs53ZmU/PZTOGrXzjIq1z4=", "title": "BlazeMeter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/BlazeMeterJenkinsPlugin/1.02-beta-3/BlazeMeterJenkinsPlugin.hpi", "version": "1.02-beta-3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BlazeMeter+Plugin"}, "Exclusion": {"buildDate": "Nov 08, 2012", "dependencies": [], "developers": [{"developerId": "anthonyRoux", "email": "m.roux.a@gmail.com", "name": "Anthony Roux"}], "excerpt": "This plugin manages exclusion between jobs. ", "gav": "org.jenkins-ci.plugins:Exclusion:0.8", "labels": ["builder"], "name": "Exclusion", "previousTimestamp": "2012-07-07T23:26:36.00Z", "previousVersion": "0.7", "releaseTimestamp": "2012-11-08T06:08:50.00Z", "requiredCore": "1.489", "scm": "github.com", "sha1": "yaw61kkbvMqaYk/LymokK75LZf4=", "title": "Exclusion-Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/Exclusion/0.8/Exclusion.hpi", "version": "0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclusion-Plugin"}, "LavaLampNotifier": {"buildDate": "Nov 13, 2010", "dependencies": [], "developers": [{"developerId": "edrandall", "name": "Ed Randall"}], "excerpt": "Indicate Job status using a Lava Lamp", "gav": "org.jvnet.hudson.plugins.lavalamp:LavaLampNotifier:1.4", "labels": ["notifier"], "name": "LavaLampNotifier", "previousTimestamp": "2010-11-13T17:40:26.00Z", "previousVersion": "1.3", "releaseTimestamp": "2010-11-14T02:04:48.00Z", "requiredCore": "1.355", "scm": "svn.dev.java.net", "sha1": "gvAVSXpI34jKS8l9229JA/CR9/g=", "title": "Lava Lamp Notifier", "url": "http://updates.jenkins-ci.org/download/plugins/LavaLampNotifier/1.4/LavaLampNotifier.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lava+Lamp+Notifier"}, "Matrix-sorter-plugin": {"buildDate": "May 31, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plugin enable sorting the matrix configurations ", "gav": "org.jenkins-ci.plugins:Matrix-sorter-plugin:1.1", "labels": [], "name": "Matrix-sorter-plugin", "previousTimestamp": "2012-04-12T11:27:22.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-05-31T19:52:34.00Z", "requiredCore": "1.439", "scm": "github.com", "sha1": "dArbofexSr5aGpw2Ojq7N6Psblc=", "title": "Matrix configuration sorter plugin", "url": "http://updates.jenkins-ci.org/download/plugins/Matrix-sorter-plugin/1.1/Matrix-sorter-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+configuration+sorter+plugin"}, "PrioritySorter": {"buildDate": "May 24, 2011", "dependencies": [], "developers": [{"developerId": "bklarson", "email": "bklarson@gmail.com", "name": "Brad Larson"}], "excerpt": "This plugin allows for the build queue to be sorted based on pre-assigned priorities for each job.", "gav": "hudson.queueSorter:PrioritySorter:1.3", "labels": ["misc", "listview-column"], "name": "PrioritySorter", "previousTimestamp": "2011-02-05T21:48:26.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-05-25T02:58:28.00Z", "requiredCore": "1.343", "scm": "github.com", "sha1": "OrRqNLQvKOlxhhCowddAxxDOIVQ=", "title": "Priority Sorter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/PrioritySorter/1.3/PrioritySorter.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin"}, "SCTMExecutor": {"buildDate": "Mar 06, 2010", "dependencies": [], "developers": [{"developerId": "tofuAtjava", "email": "tfuerer.javanet@googlemail.com", "name": "Thomas Fuerer"}], "excerpt": "This plugin will let users use Borland's SilkCentral Test Manager 2008 R2 or later.", "gav": "hudson.plugins.sctmexecutor:SCTMExecutor:1.5.1", "labels": ["builder"], "name": "SCTMExecutor", "previousTimestamp": "2010-03-02T04:15:34.00Z", "previousVersion": "1.5", "releaseTimestamp": "2010-03-07T01:47:22.00Z", "requiredCore": "1.345", "scm": "svn.dev.java.net", "sha1": "AGNsn4d8rgDz5CgMkVLpdNpdQRo=", "title": "SCTMExecutor", "url": "http://updates.jenkins-ci.org/download/plugins/SCTMExecutor/1.5.1/SCTMExecutor.hpi", "version": "1.5.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCTMExecutor"}, "SSSCM": {"buildDate": "Sep 08, 2011", "dependencies": [], "developers": [{"developerId": "richscze"}], "excerpt": "", "gav": "ssscm:SSSCM:1.0", "name": "SSSCM", "releaseTimestamp": "2011-09-08T20:30:30.00Z", "requiredCore": "1.323", "scm": "github.com", "sha1": "2AFol0miyOne08ZFgYzjRkz1ktw=", "title": "SSSCM", "url": "http://updates.jenkins-ci.org/download/plugins/SSSCM/1.0/SSSCM.hpi", "version": "1.0"}, "Schmant": {"buildDate": "Dec 15, 2009", "dependencies": [], "developers": [{"developerId": "kalle"}], "excerpt": "The Schmant plugin enables Hudson to run Schmant build scripts.", "gav": "org.schmant.hudson:Schmant:1.1.4", "labels": ["builder"], "name": "Schmant", "previousTimestamp": "2009-04-01T15:28:56.00Z", "previousVersion": "1.0", "releaseTimestamp": "2009-12-15T16:01:08.00Z", "requiredCore": "1.337", "scm": "svn.dev.java.net", "sha1": "WGFojc2aUe6CNQQGIWlKC+lbW4o=", "title": "Schmant Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/Schmant/1.1.4/Schmant.hpi", "version": "1.1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Schmant+Plugin"}, "Surround-SCM-plugin": {"buildDate": "Oct 26, 2011", "dependencies": [], "developers": [{"email": "klimad@seapine.com", "name": "Dan Klima"}], "excerpt": "This plugin integrates with Seapine Software's Surround SCM. ", "gav": "org.jvnet.hudson.plugins:Surround-SCM-plugin:1.1", "labels": ["scm"], "name": "Surround-SCM-plugin", "previousTimestamp": "2011-06-07T15:50:06.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-10-26T19:57:06.00Z", "requiredCore": "1.377", "scm": "github.com", "sha1": "olohjjuefWCDLF+Lv/89wBC/l4c=", "title": "Surround SCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/Surround-SCM-plugin/1.1/Surround-SCM-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Surround+SCM+Plugin"}, "TwilioNotifier": {"buildDate": "Dec 27, 2011", "dependencies": [], "developers": [{"developerId": "christer", "email": "christer.fahlgren@gmail.com", "name": "Christer Fahlgren"}], "excerpt": "The Twilio Notifier Plugin is a plugin that can send build status notifications as Text messages and phone calls using Twilio. ", "gav": "com.twilio.jenkins:TwilioNotifier:0.2.1", "labels": [], "name": "TwilioNotifier", "previousTimestamp": "2011-12-27T15:57:30.00Z", "previousVersion": "0.2.0", "releaseTimestamp": "2011-12-27T16:01:44.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "H1vq0/9tFtMVw8+kUlL2W8TkSjE=", "title": "Twilio Notifier Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/TwilioNotifier/0.2.1/TwilioNotifier.hpi", "version": "0.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Twilio+Notifier+Plugin"}, "URLSCM": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "mdonohue", "name": "Michael Donohue"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin allows the use of URLs as an SCM.", "gav": "org.jvnet.hudson.plugins:URLSCM:1.6", "labels": ["scm"], "name": "URLSCM", "previousTimestamp": "2010-01-27T14:48:14.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-11-02T14:15:14.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "aglxMDptHgY5Xk31EXgB8NafzKU=", "title": "URL SCM", "url": "http://updates.jenkins-ci.org/download/plugins/URLSCM/1.6/URLSCM.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/URL+SCM"}, "WebSVN2": {"buildDate": "Sep 23, 2010", "dependencies": [{"name": "subversion", "optional": false, "version": "1.11"}], "developers": [{"name": "Andreas Mandel"}], "excerpt": "This plugin integrates WebSVN Version 2 browser interface for Subversion with Hudson.", "gav": "org.jvnet.hudson.plugins:WebSVN2:0.9", "labels": [], "name": "WebSVN2", "releaseTimestamp": "2010-09-23T10:08:16.00Z", "requiredCore": "1.376", "scm": "svn.dev.java.net", "sha1": "X/gdcrPYhTMObY3tJ6kRRQpO0vk=", "title": "WebSVN2 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/WebSVN2/0.9/WebSVN2.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebSVN2+Plugin"}, "accurev": {"buildDate": "Aug 19, 2011", "dependencies": [], "developers": [{"developerId": "statler", "name": "Scott Tatum"}, {"developerId": "helterscelter", "name": "Clint Martin"}], "excerpt": "This plugin allows you to use AccuRev as a SCM.", "gav": "org.jvnet.hudson.plugins:accurev:0.6.18", "labels": ["scm"], "name": "accurev", "previousTimestamp": "2011-08-19T15:50:38.00Z", "previousVersion": "0.6.17", "releaseTimestamp": "2011-08-19T16:36:10.00Z", "requiredCore": "1.345", "scm": "github.com", "sha1": "uW5HHPyxF/XfUW0RDoFk2NDVx/A=", "title": "Accurev Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/accurev/0.6.18/accurev.hpi", "version": "0.6.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Accurev+Plugin"}, "active-directory": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "With this plugin, you can configure Jenkins to authenticate the username and the password through Active Directory.", "gav": "org.jenkins-ci.plugins:active-directory:1.30", "labels": ["user"], "name": "active-directory", "previousTimestamp": "2012-06-06T22:52:54.00Z", "previousVersion": "1.29", "releaseTimestamp": "2012-11-06T14:38:54.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "m5fljiln7rWMSG2fOYgEZVrwh2M=", "title": "Active Directory plugin", "url": "http://updates.jenkins-ci.org/download/plugins/active-directory/1.30/active-directory.hpi", "version": "1.30", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Active+Directory+plugin"}, "additional-identities-plugin": {"buildDate": "Sep 27, 2012", "dependencies": [], "developers": [{"developerId": "nicolas"}], "excerpt": "", "gav": "com.cloudbees.jenkins.plugins:additional-identities-plugin:1.0", "name": "additional-identities-plugin", "releaseTimestamp": "2012-09-27T19:51:54.00Z", "requiredCore": "1.480", "scm": "github.com", "sha1": "BVh9AQHpW+BU5fPRaOvpB6pnh00=", "title": "additional-identities-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/additional-identities-plugin/1.0/additional-identities-plugin.hpi", "version": "1.0"}, "all-changes": {"buildDate": "Sep 18, 2011", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.4"}, {"name": "parameterized-trigger", "optional": true, "version": "2.10"}, {"name": "email-ext", "optional": true, "version": "2.14"}, {"name": "maven-plugin", "optional": false, "version": "1.417"}, {"name": "git", "optional": true, "version": "1.1.11"}, {"name": "subversion", "optional": true, "version": "1.31"}], "developers": [{"developerId": "wolfs", "name": "Stefan Wolf"}], "excerpt": "Shows all changes which influenced the builds of a project.", "gav": "org.jenkins-ci.plugins:all-changes:1.3", "labels": ["ui", "report"], "name": "all-changes", "previousTimestamp": "2011-08-31T02:22:42.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-09-18T22:15:30.00Z", "requiredCore": "1.417", "scm": "github.com", "sha1": "vMtuVcwKCzI9FTuYX2zrW60m2dI=", "title": "All Changes Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/all-changes/1.3/all-changes.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/All+Changes+Plugin"}, "analysis-collector": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "tasks", "optional": true, "version": "4.33"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "dry", "optional": true, "version": "2.31"}, {"name": "checkstyle", "optional": true, "version": "3.30"}, {"name": "warnings", "optional": true, "version": "4.15"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "pmd", "optional": true, "version": "3.31"}, {"name": "findbugs", "optional": true, "version": "4.43"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plug-in is an add-on for the plug-ins Checkstyle, Dry, FindBugs, PMD, Task Scanner, and Warnings: the plug-in collects the different analysis results and shows the results in a combined trend graph. Additionally, the plug-in provides health reporting and build stability based on these combined results. ", "gav": "org.jvnet.hudson.plugins:analysis-collector:1.34", "labels": ["maven", "report"], "name": "analysis-collector", "previousTimestamp": "2012-09-10T23:02:18.00Z", "previousVersion": "1.33", "releaseTimestamp": "2012-10-05T16:13:42.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "GlfzWsS93EsrHKywcepSk+wHccQ=", "title": "Analysis Collector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/analysis-collector/1.34/analysis-collector.hpi", "version": "1.34", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Analysis+Collector+Plugin"}, "analysis-core": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plug-in provides utilities for the static code analysis plug-ins.", "gav": "org.jvnet.hudson.plugins:analysis-core:1.48", "labels": ["maven", "report"], "name": "analysis-core", "previousTimestamp": "2012-09-10T22:54:40.00Z", "previousVersion": "1.47", "releaseTimestamp": "2012-10-05T15:42:42.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "YcAMz4Dr+s6d1OIlRguLwJtZPBk=", "title": "Static Code Analysis Plug-ins", "url": "http://updates.jenkins-ci.org/download/plugins/analysis-core/1.48/analysis-core.hpi", "version": "1.48", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Static+Code+Analysis+Plug-ins"}, "android-emulator": {"buildDate": "Nov 29, 2012", "dependencies": [{"name": "port-allocator", "optional": false, "version": "1.5"}], "developers": [{"developerId": "orrc", "email": "chris@orr.me.uk", "name": "Christopher Orr"}], "excerpt": "Lets you automatically generate, launch and interact with an Android emulator during a build, with the emulator logs being captured as artifacts. ", "gav": "org.jvnet.hudson.plugins:android-emulator:2.7.1", "labels": ["buildwrapper", "android"], "name": "android-emulator", "previousTimestamp": "2012-11-27T02:31:42.00Z", "previousVersion": "2.7", "releaseTimestamp": "2012-11-29T06:24:06.00Z", "requiredCore": "1.377", "scm": "github.com", "sha1": "yLCL6sRrqqyQI9oUh5wuClQc3tE=", "title": "Android Emulator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/android-emulator/2.7.1/android-emulator.hpi", "version": "2.7.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Android+Emulator+Plugin"}, "android-lint": {"buildDate": "Nov 14, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.409"}, {"name": "token-macro", "optional": true, "version": "1.1"}, {"name": "analysis-core", "optional": false, "version": "1.43"}, {"name": "dashboard-view", "optional": true, "version": "1.8.1"}], "developers": [{"developerId": "orrc", "email": "chris@orr.me.uk", "name": "Christopher Orr"}], "excerpt": "Parses output from the Android lint tool and displays the results for analysis.", "gav": "org.jvnet.hudson.plugins:android-lint:2.0.1", "labels": ["report", "android"], "name": "android-lint", "previousTimestamp": "2012-11-13T06:39:16.00Z", "previousVersion": "2.0", "releaseTimestamp": "2012-11-14T05:33:38.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "ipo0m46VFggofYFfALdUq3vl8ig=", "title": "Android Lint Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/android-lint/2.0.1/android-lint.hpi", "version": "2.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Android+Lint+Plugin"}, "ansicolor": {"buildDate": "Jun 07, 2012", "dependencies": [], "developers": [{"developerId": "dblock", "email": "dblock@dblock.org", "name": "Daniel Doubrovkine"}], "excerpt": "This plugin adds support for ANSI escape sequences, including color, to Console Output.", "gav": "org.jvnet.hudson.plugins:ansicolor:0.3.1", "labels": ["misc"], "name": "ansicolor", "previousTimestamp": "2012-06-05T00:44:00.00Z", "previousVersion": "0.3.0", "releaseTimestamp": "2012-06-07T15:06:24.00Z", "requiredCore": "1.374", "scm": "github.com", "sha1": "Jy6C6rKHdLexkR1WGLhr28jsQvY=", "title": "AnsiColor Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ansicolor/0.3.1/ansicolor.hpi", "version": "0.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AnsiColor+Plugin"}, "ant": {"buildDate": "Sep 19, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin adds Apache Ant support to Jenkins.", "gav": "org.jenkins-ci.plugins:ant:1.1", "labels": ["builder"], "name": "ant", "previousTimestamp": "2011-09-19T13:40:12.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-09-19T16:52:24.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "VZ8Zs0wp22C/HbhU0ZWEvA9RgCw=", "title": "Ant Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ant/1.1/ant.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ant+Plugin"}, "antexec": {"buildDate": "Aug 28, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "svasek", "email": "svasek@gmail.com", "name": "Milos Svasek"}], "excerpt": "This plugin makes it possible to run Apache Ant code directly from Jenkins-CI. ", "gav": "org.jenkins-ci.plugins:antexec:1.6", "labels": [], "name": "antexec", "previousTimestamp": "2012-06-21T13:04:44.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-08-28T20:59:38.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "cIl0WIHedkip9awfovx4k6Y5YPQ=", "title": "AntExec plugin", "url": "http://updates.jenkins-ci.org/download/plugins/antexec/1.6/antexec.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AntExec+plugin"}, "any-buildstep": {"buildDate": "Nov 14, 2011", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.4"}, {"name": "run-condition", "optional": false, "version": "0.5"}, {"name": "conditional-buildstep", "optional": false, "version": "0.2"}, {"name": "flexible-publish", "optional": false, "version": "0.7"}], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Use publishers as builders and builders as publishers. Adds builders to the actions available in the [Flexible Publish Plugin] and publishers to the list of builders available in the [Conditional BuildStep Plugin]. ", "gav": "org.jenkins-ci.plugins:any-buildstep:0.1", "labels": ["builder", "post-build"], "name": "any-buildstep", "releaseTimestamp": "2011-11-14T23:43:44.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "46R/wmiCUngBl8Zrt4cRwvGbJuI=", "title": "Any Build Step Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/any-buildstep/0.1/any-buildstep.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Any+Build+Step+Plugin"}, "anything-goes-formatter": {"buildDate": "Mar 14, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:anything-goes-formatter:1.0", "name": "anything-goes-formatter", "releaseTimestamp": "2012-03-14T15:50:52.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "P+91IIgNJvsFUhaxCZLaZPG0VI0=", "title": "anything-goes-formatter", "url": "http://updates.jenkins-ci.org/download/plugins/anything-goes-formatter/1.0/anything-goes-formatter.hpi", "version": "1.0"}, "appaloosa-plugin": {"buildDate": "Aug 01, 2012", "dependencies": [{"name": "promoted-builds", "optional": true, "version": "2.4"}, {"name": "maven-plugin", "optional": false, "version": "1.399"}], "developers": [{"developerId": "aheritier", "email": "aheritier@apache.org", "name": "Arnaud Heritier"}, {"developerId": "joel1di1", "email": "joel1di1@gmail.com", "name": "Benoit Lafontaine"}], "excerpt": "Publish your mobile applications (Android, iOS, ...) to the appaloosa-store.com platform.", "gav": "org.jenkins-ci.plugins:appaloosa-plugin:1.3.1", "labels": ["upload", "ios", "android"], "name": "appaloosa-plugin", "previousTimestamp": "2012-05-05T23:56:14.00Z", "previousVersion": "1.3.0", "releaseTimestamp": "2012-08-01T17:55:32.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "CFNh6itZKYm47esb9BloMyltpRo=", "title": "Appaloosa Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/appaloosa-plugin/1.3.1/appaloosa-plugin.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Appaloosa+Plugin"}, "application-director-plugin": {"buildDate": "Nov 25, 2012", "dependencies": [], "developers": [{"developerId": "jfullam", "email": "jonathanfullam@gmail.com", "name": "Jonathan Fullam"}], "excerpt": "Integrates Jenkins to vFabric Application Director", "gav": "org.jenkins-ci.plugins:application-director-plugin:1.3", "labels": ["buildwrapper"], "name": "application-director-plugin", "previousTimestamp": "2012-11-25T00:48:32.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-11-25T23:15:18.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "RnI/LBtk2Inxndos34t6fY4I+mE=", "title": "vFabric Application Director Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/application-director-plugin/1.3/application-director-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/vFabric+Application+Director+Plugin"}, "artifact-diff-plugin": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "olivergondza", "name": "Oliver Gondža"}], "excerpt": "Plugin can compare content of an artifact identified by its relative path among different builds. ", "gav": "org.jenkins-ci.plugins:artifact-diff-plugin:1.1", "labels": [], "name": "artifact-diff-plugin", "previousTimestamp": "2012-09-10T17:16:56.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-11-06T18:51:56.00Z", "requiredCore": "1.461", "scm": "github.com", "sha1": "e7dRUwgfc/oqzgrkVu/LslKQrpU=", "title": "Artifact Diff Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/artifact-diff-plugin/1.1/artifact-diff-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Artifact+Diff+Plugin"}, "artifactdeployer": {"buildDate": "Nov 04, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to copy artifacts to remote locations.", "gav": "org.jenkins-ci.plugins:artifactdeployer:0.25", "labels": ["upload"], "name": "artifactdeployer", "previousTimestamp": "2012-10-09T02:46:58.00Z", "previousVersion": "0.24", "releaseTimestamp": "2012-11-04T04:53:00.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "sdgFIigEBR8KFNi4JqgQhzzsdhg=", "title": "ArtifactDeployer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/artifactdeployer/0.25/artifactdeployer.hpi", "version": "0.25", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ArtifactDeployer+Plugin"}, "artifactory": {"buildDate": "Oct 15, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.428"}, {"name": "jira", "optional": true, "version": "1.29"}, {"name": "subversion", "optional": false, "version": "1.37"}, {"name": "git", "optional": true, "version": "1.1.14"}, {"name": "ivy", "optional": true, "version": "1.17"}, {"name": "perforce", "optional": true, "version": "1.3.7"}, {"name": "gradle", "optional": true, "version": "1.15"}], "developers": [{"developerId": "yossis", "email": "yossis@jfrog.org", "name": "Yossi Shaul"}], "excerpt": "This plugin allows deploying Maven 2, Maven 3, Ivy and Gradle artifacts and build info to the Artifactory artifacts manager.", "gav": "org.jenkins-ci.plugins:artifactory:2.1.3", "labels": ["upload", "report", "buildwrapper"], "name": "artifactory", "previousTimestamp": "2012-08-08T11:26:10.00Z", "previousVersion": "2.1.2", "releaseTimestamp": "2012-10-15T23:38:30.00Z", "requiredCore": "1.428", "scm": "github.com", "sha1": "iyHLJMtt3AgT+Ut9BDlfzcP3Nhk=", "title": "Artifactory Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/artifactory/2.1.3/artifactory.hpi", "version": "2.1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Artifactory+Plugin"}, "asakusa-satellite-plugin": {"buildDate": "Oct 23, 2012", "dependencies": [], "developers": [{"developerId": "suer", "email": "suetsugu.r@gmail.com", "name": "Ryo SUETSUGU"}], "excerpt": "This plugin notifies AsakusaSatellite of build results. ", "gav": "org.codefirst.jenkins.asakusasatellite:asakusa-satellite-plugin:0.1.1", "labels": ["notifier"], "name": "asakusa-satellite-plugin", "previousTimestamp": "2012-10-23T04:22:24.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-10-23T20:35:50.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "UQMnOOD1ObzOU2XNOoTAExRKx3U=", "title": "AsakusaSatellite Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/asakusa-satellite-plugin/0.1.1/asakusa-satellite-plugin.hpi", "version": "0.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AsakusaSatellite+Plugin"}, "assembla": {"buildDate": "Oct 07, 2011", "dependencies": [], "developers": [{"developerId": "droidev82", "email": "simon@lmitsoftware.com", "name": "Simone Ardissone"}], "excerpt": "This plugin integrates Assembla to Jenkins.", "gav": "org.jenkins-ci.plugins:assembla:1.2", "labels": ["external"], "name": "assembla", "releaseTimestamp": "2011-10-07T21:02:02.00Z", "requiredCore": "1.427", "scm": "github.com", "sha1": "ewKkpcS8nXxQaAVQ/nRuYvr0oTs=", "title": "Assembla plugin", "url": "http://updates.jenkins-ci.org/download/plugins/assembla/1.2/assembla.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Assembla+plugin"}, "assembla-auth": {"buildDate": "Nov 22, 2012", "compatibleSinceVersion": "0.3", "dependencies": [], "developers": [{"developerId": "www.assembla.com", "name": "Assembla"}, {"developerId": "damir_assembla", "name": "Damir Milovic"}, {"developerId": "titas", "name": "Titas Norkunas"}, {"developerId": "mpchlets", "name": "Michael Chletsos"}], "excerpt": "A Jenkins authentication plugin that delegates to Assembla oAuth", "gav": "org.jenkins-ci.plugins:assembla-auth:1.03", "labels": ["external", "user"], "name": "assembla-auth", "previousTimestamp": "2012-11-19T11:04:56.00Z", "previousVersion": "1.02", "releaseTimestamp": "2012-11-22T16:10:18.00Z", "requiredCore": "1.431", "scm": "git.assembla.com", "sha1": "MAJwcTAVXdFnXMkTy82gG6WVM4c=", "title": "Assembla Auth Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/assembla-auth/1.03/assembla-auth.hpi", "version": "1.03", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Assembla+Auth+Plugin"}, "associated-files": {"buildDate": "Aug 27, 2012", "dependencies": [], "developers": [], "excerpt": "This plugin allows for marking files or directories outside of Jenkins as related to a build.", "gav": "org.jenkinsci.plugins:associated-files:0.2.1", "labels": ["post-build"], "name": "associated-files", "previousTimestamp": "2012-03-23T17:51:00.00Z", "previousVersion": "0.2.0", "releaseTimestamp": "2012-08-27T12:36:20.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "TXHl3auAG4wvX6g1vuwpxX6rtu8=", "title": "Associated Files Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/associated-files/0.2.1/associated-files.hpi", "version": "0.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Associated+Files+Plugin"}, "async-http-client": {"buildDate": "May 11, 2012", "dependencies": [], "developers": [{"developerId": "stephenc", "name": "Stephen Connolly"}], "excerpt": "This plugin provides a shared dependency on the ning.com async-http-client library so that other plugins can co-operate when using this library. ", "gav": "org.jenkins-ci.plugins:async-http-client:1.7.4-1", "labels": ["library"], "name": "async-http-client", "previousTimestamp": "2012-05-01T23:15:40.00Z", "previousVersion": "1.7.4", "releaseTimestamp": "2012-05-11T16:04:24.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Xvay0oImvIYY1/IDmGAxu952jFg=", "title": "Async Http Client Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/async-http-client/1.7.4-1/async-http-client.hpi", "version": "1.7.4-1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Async+Http+Client+Plugin"}, "async-job": {"buildDate": "Nov 21, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "Library plugin for custom job types that model external asynchronous processes", "gav": "org.jenkins-ci.plugins:async-job:1.3", "labels": [], "name": "async-job", "previousTimestamp": "2012-11-21T16:09:58.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-11-21T16:33:36.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "WaHABPk+pZbS91vn/A9MxuA4CwU=", "title": "Async Job Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/async-job/1.3/async-job.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Async+Job+Plugin"}, "audit-trail": {"buildDate": "Aug 03, 2011", "dependencies": [], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "Keep a log of who performed particular Jenkins operations, such as configuring jobs.", "gav": "org.jenkins-ci.plugins:audit-trail:1.7", "labels": ["user"], "name": "audit-trail", "previousTimestamp": "2011-02-24T23:32:28.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-08-03T12:01:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "HppBhEA8cfWIFnPtMA0iJrwwO28=", "title": "Audit Trail Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/audit-trail/1.7/audit-trail.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Audit+Trail+Plugin"}, "avatar": {"buildDate": "May 24, 2012", "dependencies": [], "developers": [{"developerId": "oxcafebabe", "email": "edward@hurst-frost.net", "name": "Edward Hurst-Frost"}], "excerpt": "This plugin allows avatar images to be uploaded and associated with Jenkins users.", "gav": "net.hurstfrost.jenkins:avatar:1.1", "labels": ["user"], "name": "avatar", "previousTimestamp": "2011-08-07T21:10:34.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-05-24T16:22:40.00Z", "requiredCore": "1.434", "scm": "svn.jenkins-ci.org", "sha1": "o56/TYEopv5tUQQNZRN4muuvxKo=", "title": "Avatar Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/avatar/1.1/avatar.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Avatar+Plugin"}, "backlog": {"buildDate": "Sep 06, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.11"}, {"name": "git", "optional": true, "version": "1.1.22"}], "developers": [{"developerId": "dragon3", "name": "Ryuzo Yamamoto"}, {"developerId": "ikikko", "name": "Tomonari Nakamura"}], "excerpt": "This plugin integrates Backlog to Jenkins.", "gav": "org.jenkins-ci.plugins:backlog:1.8", "labels": ["notifier", "external", "user", "upload"], "name": "backlog", "previousTimestamp": "2012-03-09T05:04:36.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-09-06T04:05:00.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Exu7kLnh8YpWULrAPmIZf4n5bV0=", "title": "Backlog Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/backlog/1.8/backlog.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Backlog+Plugin"}, "backup": {"buildDate": "Aug 04, 2011", "dependencies": [], "developers": [{"developerId": "vsellier", "name": "Vincent Sellier"}, {"developerId": "rseguy", "name": "Romain Seguy"}], "excerpt": "Backup plugin allows archiving and restoring your Jenkins (and Hudson) home directory.", "gav": "org.jvnet.hudson.plugins:backup:1.6.1", "labels": ["misc"], "name": "backup", "previousTimestamp": "2010-12-10T20:48:50.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-08-04T15:53:04.00Z", "requiredCore": "1.375", "scm": "svn.jenkins-ci.org", "sha1": "qoj8AeHUNaQvgISsEiJ5SkIPX70=", "title": "Backup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/backup/1.6.1/backup.hpi", "version": "1.6.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Backup+Plugin"}, "bamboo-notifier": {"buildDate": "Apr 22, 2010", "dependencies": [], "developers": [{"developerId": "asgeirn", "email": "asgeir@twingine.no", "name": "Asgeir Storesund Nilsen"}], "excerpt": "Trigger a Bamboo build upon successful completion of a Hudson job.", "gav": "hudson.plugins.bamboo:bamboo-notifier:1.1", "labels": ["notifier"], "name": "bamboo-notifier", "previousTimestamp": "2009-12-30T21:05:20.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-04-23T03:49:02.00Z", "requiredCore": "1.355", "scm": "svn.dev.java.net", "sha1": "6B/9qHkLC0818IeGfLOo+TAo3I0=", "title": "Bamboo Notifier", "url": "http://updates.jenkins-ci.org/download/plugins/bamboo-notifier/1.1/bamboo-notifier.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bamboo+Notifier"}, "batch-task": {"buildDate": "May 01, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "This plugin adds batch tasks that are not regularly executed to projects, such as releases, integration, archiving, etc.", "gav": "org.jenkins-ci.plugins:batch-task:1.16", "labels": ["post-build", "builder"], "name": "batch-task", "previousTimestamp": "2012-04-06T01:06:12.00Z", "previousVersion": "1.15", "releaseTimestamp": "2012-05-01T23:10:38.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "/oqANM4r4lIsmZ4QJ94MhE5WmhE=", "title": "Batch Task Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/batch-task/1.16/batch-task.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Batch+Task+Plugin"}, "bazaar": {"buildDate": "Oct 12, 2012", "dependencies": [], "developers": [{"developerId": "stewart", "email": "stewart@flamingspork.com", "name": "Stewart Smith"}], "excerpt": "This plugin integrates Bazaar version control system to Jenkins. The plugin requires the Bazaar binary (bzr) to be installed on the target machine.", "gav": "org.jenkins-ci.plugins:bazaar:1.21", "labels": ["scm"], "name": "bazaar", "previousTimestamp": "2012-08-27T16:26:30.00Z", "previousVersion": "1.20", "releaseTimestamp": "2012-10-12T22:34:24.00Z", "requiredCore": "1.413", "scm": "github.com", "sha1": "RAHlxZYARNBQ/VUr/zVFTrJiIeI=", "title": "Bazaar Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/bazaar/1.21/bazaar.hpi", "version": "1.21", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bazaar+Plugin"}, "beer": {"buildDate": "Mar 21, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "We all need beer from time to time", "gav": "org.jenkins-ci.plugins:beer:1.2", "labels": [], "name": "beer", "previousTimestamp": "2012-01-04T14:43:28.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-03-21T13:59:58.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "FLwF/QynS4lSxqG3eBrGBSkiYxw=", "title": "Beer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/beer/1.2/beer.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Beer+Plugin"}, "bitkeeper": {"buildDate": "Oct 11, 2011", "dependencies": [], "developers": [{"developerId": "mdonohue", "email": "michael.donohue@gmail.com", "name": "Michael Donohue"}], "excerpt": "Add BitKeeper support to Jenkins", "gav": "org.jenkins-ci.plugins:bitkeeper:1.7", "labels": ["scm"], "name": "bitkeeper", "previousTimestamp": "2011-10-09T20:17:14.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-10-11T06:26:58.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "08+AUEZVP8/7EgiNj5zTH1jQJHI=", "title": "BitKeeper Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/bitkeeper/1.7/bitkeeper.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BitKeeper+Plugin"}, "blame-upstream-commiters": {"buildDate": "Sep 15, 2010", "dependencies": [], "developers": [{"developerId": "taksan", "email": "g.takeuchi@gmail.com", "name": "Gabriel Takeuchi"}, {"developerId": "willemv", "name": "Willem Verstraeten"}], "excerpt": "This is a simple plugin that adds a post build action to mail upstream committers when a build fails.", "gav": "hudson.plugins:blame-upstream-commiters:1.2", "labels": ["notifier"], "name": "blame-upstream-commiters", "previousTimestamp": "2010-01-21T17:26:24.00Z", "previousVersion": "1.1", "releaseTimestamp": "2010-09-16T01:37:02.00Z", "requiredCore": "1.375", "scm": "svn.dev.java.net", "sha1": "kZeGWhk47OJBs9OJWnGBmnF23yE=", "title": "Blame Upstream Committers Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/blame-upstream-commiters/1.2/blame-upstream-commiters.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blame+Upstream+Committers+Plugin"}, "blitz_io-jenkins": {"buildDate": "Jun 05, 2012", "dependencies": [], "developers": [{"developerId": "jeffli", "email": "jeff.li@spirent.com", "name": "Jeff Li"}], "excerpt": "This plugin allows you to run web load tests from the cloud using Blitz.io.  ", "gav": "io.blitz:blitz_io-jenkins:1.04", "labels": ["external"], "name": "blitz_io-jenkins", "previousTimestamp": "2012-06-04T17:08:32.00Z", "previousVersion": "1.03", "releaseTimestamp": "2012-06-05T17:33:34.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "N6OPL25lUyGUWNHcBbf0FebR2Ao=", "title": "Blitz_io", "url": "http://updates.jenkins-ci.org/download/plugins/blitz_io-jenkins/1.04/blitz_io-jenkins.hpi", "version": "1.04", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Blitz_io"}, "brakeman": {"buildDate": "Mar 21, 2012", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.38"}, {"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "presidentbeef", "name": "Justin Collins"}], "excerpt": "This plugin reads output from Brakeman, a static analysis security vulnerability scanner for Ruby on Rails. ", "gav": "org.jenkins-ci.plugins:brakeman:0.7", "labels": ["report", "ruby"], "name": "brakeman", "previousTimestamp": "2011-10-20T19:47:38.00Z", "previousVersion": "0.5", "releaseTimestamp": "2012-03-21T21:45:02.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "SiRIW5mFnaSzEEFmNL76bsbC5hg=", "title": "Brakeman Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/brakeman/0.7/brakeman.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Brakeman+Plugin"}, "browser-axis-plugin": {"buildDate": "Apr 02, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plugin add browser axis to matrix job ", "gav": "org.jenkins-ci.plugins:browser-axis-plugin:1.0", "labels": [], "name": "browser-axis-plugin", "releaseTimestamp": "2012-04-02T17:33:00.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "JQIsqTmj+FpviQ315kyNHWhtuUg=", "title": "Browser axis plugin", "url": "http://updates.jenkins-ci.org/download/plugins/browser-axis-plugin/1.0/browser-axis-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Browser+axis+plugin"}, "bruceschneier": {"buildDate": "Oct 15, 2009", "dependencies": [], "developers": [{"developerId": "dinomite", "email": "dstephens@genius.com", "name": "Drew Stephens"}], "excerpt": "Displays a picture of Bruce Schneier (instead of Jenkins the butler) and a random Bruce Schneier fact on each build page. ", "gav": "org.jvnet.hudson.plugins:bruceschneier:0.1", "labels": ["ui"], "name": "bruceschneier", "releaseTimestamp": "2009-10-15T20:24:54.00Z", "requiredCore": "1.328", "scm": "svn.dev.java.net", "sha1": "8bQawVNxgl+tjz3BCkELvxZpFuc=", "title": "BruceSchneier Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/bruceschneier/0.1/bruceschneier.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BruceSchneier+Plugin"}, "buckminster": {"buildDate": "Apr 01, 2011", "dependencies": [], "developers": [{"developerId": "jutzig", "email": "mail@jutzig.de", "name": "Johannes Utzig"}], "excerpt": "This PlugIn integrates Eclipse Buckminster as a new build step into hudson.", "gav": "org.jvnet.hudson.plugins:buckminster:1.1.0", "labels": ["builder"], "name": "buckminster", "previousTimestamp": "2011-01-15T05:59:02.00Z", "previousVersion": "1.0.8", "releaseTimestamp": "2011-04-01T04:30:56.00Z", "requiredCore": "1.391", "scm": "svn.jenkins-ci.org", "sha1": "cQkGNBqaDceKiVpP1udlH0ubzMk=", "title": "Buckminster PlugIn", "url": "http://updates.jenkins-ci.org/download/plugins/buckminster/1.1.0/buckminster.hpi", "version": "1.1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Buckminster+PlugIn"}, "buddycloud": {"buildDate": "Aug 04, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}, {"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "lloyd"}], "excerpt": "Sends build notifications to a buddycloud instance.", "gav": "org.jenkins-ci.ruby-plugins:buddycloud:0.2.3", "labels": ["notifier"], "name": "buddycloud", "previousTimestamp": "2012-08-04T16:29:44.00Z", "previousVersion": "0.2.2", "releaseTimestamp": "2012-08-04T16:48:12.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "ySjScOdtVhNyxVBUTjdXtRvR1o4=", "title": "Buddycloud Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/buddycloud/0.2.3/buddycloud.hpi", "version": "0.2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Buddycloud+Plugin"}, "bugzilla": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"name": "New Maintainer Needed"}, {"developerId": "mdonohue", "name": "mdonohue"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin integrates Bugzilla into Hudson.", "gav": "org.jvnet.hudson.plugins:bugzilla:1.5", "labels": ["external"], "name": "bugzilla", "previousTimestamp": "2010-01-30T22:33:34.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-11-04T15:27:08.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "I4ZhiTbY4Qm0Vfxb3I23I7ZVHyM=", "title": "Bugzilla Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/bugzilla/1.5/bugzilla.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bugzilla+Plugin"}, "build-blocker-plugin": {"buildDate": "Jun 25, 2012", "dependencies": [], "developers": [{"developerId": "ffromm", "email": "frederik.fromm@gmail.com", "name": "Frederik Fromm"}], "excerpt": "This plugin keeps the actual job in the queue if at least one name of currently running jobs is matching with one of the given regular expressions.", "gav": "org.jenkins-ci.plugins:build-blocker-plugin:1.2", "labels": ["misc"], "name": "build-blocker-plugin", "previousTimestamp": "2012-06-25T01:36:10.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-06-25T17:34:08.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "EYsOQkHe/oRz0Jwa6eoqG298bfs=", "title": "Build Blocker Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-blocker-plugin/1.2/build-blocker-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Blocker+Plugin"}, "build-cause-run-condition": {"buildDate": "Jul 25, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "run-condition", "optional": false, "version": "0.10"}], "developers": [{"developerId": "cjo9900", "email": "cjo.johnson@gmail.com", "name": "Chris Johnson"}], "excerpt": "Build Cause Run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin]. ", "gav": "org.jenkins-ci.plugins:build-cause-run-condition:0.1", "labels": ["runcondition"], "name": "build-cause-run-condition", "releaseTimestamp": "2012-07-25T21:43:24.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "my5PF28k9N0wVDymOp7LwHbeDQM=", "title": "Build Cause Run Condition", "url": "http://updates.jenkins-ci.org/download/plugins/build-cause-run-condition/0.1/build-cause-run-condition.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Cause+Run+Condition"}, "build-failure-analyzer": {"buildDate": "Dec 06, 2012", "dependencies": [{"name": "gerrit-trigger", "optional": true, "version": "2.7.0"}, {"name": "git", "optional": false, "version": "1.1.10"}], "developers": [{"developerId": "rsandell", "email": "robert.sandell@sonymobile.com", "name": "Robert Sandell"}, {"developerId": "t_westling", "email": "tomas.westling@sonymobile.com", "name": "Tomas Westling"}], "excerpt": "This plugin analyzes the causes of failed builds and presents the causes on the build page. It does this by using a knowledge base of build failure causes that is built up from scratch. Saving statistics about failure causes is also possible. ", "gav": "com.sonyericsson.jenkins.plugins.bfa:build-failure-analyzer:1.3.0", "labels": ["post-build", "report"], "name": "build-failure-analyzer", "previousTimestamp": "2012-11-22T21:22:04.00Z", "previousVersion": "1.2.0", "releaseTimestamp": "2012-12-06T17:47:40.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "m0VjdEwVPB8jHZwXs/wkJIfqWSw=", "title": "Build Failure Analyzer", "url": "http://updates.jenkins-ci.org/download/plugins/build-failure-analyzer/1.3.0/build-failure-analyzer.hpi", "version": "1.3.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Failure+Analyzer"}, "build-flow-plugin": {"buildDate": "Nov 24, 2012", "dependencies": [], "developers": [{"developerId": "ndeloof", "name": "Nicolas De Loof"}, {"developerId": "henryju", "name": "Julien Henry"}, {"developerId": "mathieuancelin", "name": "Mathieu Ancelin"}], "excerpt": "This plugin allows managing Jenkins jobs orchestration using a dedicated DSL, extracting the flow logic from jobs. ", "gav": "com.cloudbees.plugins:build-flow-plugin:0.6", "labels": ["misc", "trigger"], "name": "build-flow-plugin", "previousTimestamp": "2012-09-03T16:14:56.00Z", "previousVersion": "0.5", "releaseTimestamp": "2012-11-24T16:44:52.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "ob/TMcG9ZgkS0v6JuilFmKgnpXI=", "title": "Build Flow Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-flow-plugin/0.6/build-flow-plugin.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin"}, "build-keeper-plugin": {"buildDate": "Apr 16, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "run-condition", "optional": false, "version": "0.8"}], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Select a policy for automatically marking builds as \"keep forever\" to enable long term analysis trending when discarding old builds - or use to protect logs and artifacts from certain builds ", "gav": "org.jenkins-ci.plugins:build-keeper-plugin:1.3", "labels": ["buildwrapper"], "name": "build-keeper-plugin", "previousTimestamp": "2012-01-12T04:07:56.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-04-17T03:10:06.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "OqMzcGSJtV6erzuvU28ebESw114=", "title": "Build Keeper Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-keeper-plugin/1.3/build-keeper-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Keeper+Plugin"}, "build-metrics": {"buildDate": "Feb 17, 2012", "dependencies": [{"name": "global-build-stats", "optional": false, "version": "1.2"}], "developers": [{"developerId": "javamllama", "email": "madeline.goss@gmail.com", "name": "Maddy Goss"}], "excerpt": "This plugin uses the results from the Global Build Stats Plugin to generate some basic build metrics.  It is really useful in combination with the sidebar links plugin. ", "gav": "org.jenkins-ci.plugins:build-metrics:1.0", "labels": ["report"], "name": "build-metrics", "releaseTimestamp": "2012-02-17T18:56:44.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "dZBa2mOxEpW+IQgaG+g5holrW3k=", "title": "build-metrics-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-metrics/1.0/build-metrics.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/build-metrics-plugin"}, "build-name-setter": {"buildDate": "Aug 02, 2011", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.0"}], "developers": [{"developerId": "kohsuke", "email": "kkawaguchi@cloudbees.com", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin sets the display name of a build to something other than #1, #2, #3, ...", "gav": "org.jenkins-ci.plugins:build-name-setter:1.3", "labels": ["buildwrapper"], "name": "build-name-setter", "previousTimestamp": "2011-05-23T17:41:42.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-08-02T21:46:14.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "yXpAu0/uO8qZJG6prT/DUy0DKl0=", "title": "Build Name Setter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-name-setter/1.3/build-name-setter.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin"}, "build-node-column": {"buildDate": "Nov 26, 2011", "dependencies": [], "developers": [{"developerId": "wadatka", "name": "Takahisa Wada"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:build-node-column:0.1", "labels": ["listview-column"], "name": "build-node-column", "releaseTimestamp": "2011-11-26T07:39:56.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "WHf29XsvkD/YKxLQt2CYG+4fmL4=", "title": "Build Node Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-node-column/0.1/build-node-column.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Node+Column+Plugin"}, "build-pipeline-plugin": {"buildDate": "Jul 13, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.457"}], "developers": [{"developerId": "centrum", "email": "plugins@centrumsystems.com.au", "name": "Centrum Systems"}], "excerpt": "This plugin provides build pipeline functionality to Hudson and Jenkins. This allows a chain of jobs to be visualised in a new view. Manual jobs in the pipeline can be triggered by a user with the appropriate permissions manually confirming.", "gav": "org.jenkins-ci.plugins:build-pipeline-plugin:1.3.3", "name": "build-pipeline-plugin", "previousTimestamp": "2012-07-13T14:04:38.00Z", "previousVersion": "1.3.2", "releaseTimestamp": "2012-07-13T15:36:10.00Z", "requiredCore": "1.457", "scm": "build-pipeline-plugin.googlecode.com", "sha1": "ztqNXLLRO3CdiFzWW9YC8zPszOw=", "title": "Build Pipeline Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-pipeline-plugin/1.3.3/build-pipeline-plugin.hpi", "version": "1.3.3"}, "build-publisher": {"buildDate": "Sep 05, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin allows records from one Jenkins to be published on another Jenkins.", "gav": "org.jenkins-ci.plugins:build-publisher:1.13", "labels": ["upload"], "name": "build-publisher", "previousTimestamp": "2012-03-28T14:54:48.00Z", "previousVersion": "1.12", "releaseTimestamp": "2012-09-06T03:04:36.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "qZ9xH2rI+RA4B2K6YQWQLa5YSts=", "title": "Build Publisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-publisher/1.13/build-publisher.hpi", "version": "1.13", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Publisher+Plugin"}, "build-timeout": {"buildDate": "Oct 28, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin allows you to automatically abort a build if it's taking too long.", "gav": "org.jenkins-ci.plugins:build-timeout:1.11", "labels": ["buildwrapper"], "name": "build-timeout", "previousTimestamp": "2012-06-17T16:01:42.00Z", "previousVersion": "1.10", "releaseTimestamp": "2012-10-28T20:24:46.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "HQQhUtzuI7j9kIKgs9Wb+nIUdDE=", "title": "Build-timeout Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-timeout/1.11/build-timeout.hpi", "version": "1.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin"}, "build-user-vars-plugin": {"buildDate": "Feb 18, 2012", "dependencies": [], "developers": [{"developerId": "gkonovalenko", "email": "gkonovalenko@gmail.com", "name": "Gavriil Konovalenko"}], "excerpt": "This plugin is used to set user build variables. ", "gav": "org.jenkins-ci.plugins:build-user-vars-plugin:1.1", "labels": ["buildwrapper"], "name": "build-user-vars-plugin", "previousTimestamp": "2012-02-16T07:57:44.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-02-19T01:21:18.00Z", "requiredCore": "1.450", "scm": "github.com", "sha1": "aMQEGn+BqNScvCv7B98MQSZ4ROw=", "title": "Build User Vars Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/build-user-vars-plugin/1.1/build-user-vars-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin"}, "buildcoin-plugin": {"buildDate": "Sep 05, 2012", "dependencies": [], "developers": [{"developerId": "webandtech", "email": "asevers@gmail.com", "name": "Aaron Severs"}], "excerpt": "Sends build info to Buildcoin, a CI game that rewards users for committing often, keeping the build stable, and using pull requests for code reviews.", "gav": "com.buildcoin.plugins.jenkins:buildcoin-plugin:1.4", "labels": ["notifier", "external", "misc"], "name": "buildcoin-plugin", "previousTimestamp": "2012-05-24T12:24:06.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-09-06T00:21:18.00Z", "requiredCore": "1.428", "scm": "github.com", "sha1": "nkkwtFaAUM7r1XRpXTNBhb1PkGA=", "title": "Buildcoin Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/buildcoin-plugin/1.4/buildcoin-plugin.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Buildcoin+Plugin"}, "buildcontext-capture": {"buildDate": "Aug 15, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to capture the build context to ensure traceability and auditability.", "gav": "org.jenkins-ci.plugins:buildcontext-capture:0.6", "labels": ["misc"], "name": "buildcontext-capture", "previousTimestamp": "2012-05-01T03:06:58.00Z", "previousVersion": "0.5", "releaseTimestamp": "2012-08-15T16:34:40.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "WyAqcNQbOPchin307zamdFGjx48=", "title": "BuildContextCapture Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/buildcontext-capture/0.6/buildcontext-capture.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BuildContextCapture+Plugin"}, "buildresult-trigger": {"buildDate": "Aug 06, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "BuildResultTrigger makes it possible to monitor the build results of other jobs. ", "gav": "org.jenkins-ci.plugins:buildresult-trigger:0.9", "labels": ["trigger"], "name": "buildresult-trigger", "previousTimestamp": "2012-06-22T04:18:56.00Z", "previousVersion": "0.8", "releaseTimestamp": "2012-08-07T01:54:42.00Z", "requiredCore": "1.461", "scm": "github.com", "sha1": "o4l6mF2EvrB+4YhWBWMbHGT7GWU=", "title": "BuildResultTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/buildresult-trigger/0.9/buildresult-trigger.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/BuildResultTrigger+Plugin"}, "buildtriggerbadge": {"buildDate": "Oct 16, 2012", "dependencies": [], "developers": [{"developerId": "mpapo", "email": "mpapo.dev@gmail.com", "name": "Michael Pailloncy"}, {"developerId": "batmat", "email": "batmat@batmat.net", "name": "Baptiste Mathus"}], "excerpt": "This plugin displays icon(s) representing the cause(s) of a build directly in the build history. It lets you quickly know which cause triggered a build. ", "gav": "org.jenkins-ci.plugins:buildtriggerbadge:0.9", "labels": ["ui"], "name": "buildtriggerbadge", "previousTimestamp": "2012-09-27T01:29:22.00Z", "previousVersion": "0.8", "releaseTimestamp": "2012-10-16T11:29:08.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "G+L/F2a6qp+MKhEN8bDG9RwOxIM=", "title": "Build Trigger Badge Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/buildtriggerbadge/0.9/buildtriggerbadge.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Trigger+Badge+Plugin"}, "built-on-column": {"buildDate": "Jul 26, 2011", "dependencies": [], "developers": [{"developerId": "voorth", "email": "voorth@xs4all.nl", "name": "Henk van Voorthuijsen"}], "excerpt": "Adds a column that shows the actual node the last build was run on. ", "gav": "org.jenkins-ci.plugins:built-on-column:1.1", "labels": ["listview-column"], "name": "built-on-column", "previousTimestamp": "2011-05-01T20:10:02.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-07-26T14:53:14.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "qmhau75igj9lfUb/Qf205PJL/3c=", "title": "Built-on Column", "url": "http://updates.jenkins-ci.org/download/plugins/built-on-column/1.1/built-on-column.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Built-on+Column"}, "bulk-builder": {"buildDate": "Mar 04, 2012", "dependencies": [], "developers": [{"developerId": "swestcott", "email": "swestcott@gmail.com", "name": "Simon Westcott"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse farinacci"}], "excerpt": "Trigger multiple builds with ease. Designed for users with many jobs.", "gav": "org.jvnet.hudson.plugins:bulk-builder:1.5", "labels": ["builder", "misc"], "name": "bulk-builder", "previousTimestamp": "2011-11-13T17:56:38.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-03-05T03:15:32.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "oxuygc8GHIZWT3EG/OUvZhApg3A=", "title": "Bulk Builder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/bulk-builder/1.5/bulk-builder.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Bulk+Builder+Plugin"}, "caliper-ci": {"buildDate": "Nov 09, 2012", "dependencies": [], "developers": [{"developerId": "brianfromoregon", "email": "brianfromoregon@gmail.com", "name": "Brian Harris"}], "excerpt": "", "gav": "com.brianfromoregon:caliper-ci:2.3", "name": "caliper-ci", "previousTimestamp": "2012-04-01T01:33:56.00Z", "previousVersion": "2.2", "releaseTimestamp": "2012-11-09T16:46:10.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "UEeRgDZYzJr3/UbkJSDyzKrP+kU=", "title": "Caliper CI Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/caliper-ci/2.3/caliper-ci.hpi", "version": "2.3"}, "campfire": {"buildDate": "Dec 01, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "jenslukowski", "email": "jens.lukowski@softwareschneiderei.de", "name": "Jens Lukowski"}, {"developerId": "thickpaddy", "name": "Mark Woods"}, {"developerId": "jkrall", "name": "Joshua Krall"}, {"developerId": "bgreenlee", "name": "Brad Greenlee"}, {"developerId": "hpoydar", "name": "Henry Poydar"}, {"developerId": "mortice", "name": "Tom Stuart"}, {"developerId": "dbriones", "name": "Dante Briones"}], "excerpt": "This plugin allows your team to setup build notifications to be sent to Campfire rooms.", "gav": "org.jenkins-ci.plugins:campfire:2.6", "labels": ["notifier"], "name": "campfire", "previousTimestamp": "2010-06-30T18:41:34.00Z", "previousVersion": "2.1", "releaseTimestamp": "2012-12-02T03:28:14.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "9vgRW9ecP0yH8Rm5XxOhSV02824=", "title": "Campfire Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/campfire/2.6/campfire.hpi", "version": "2.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Campfire+Plugin"}, "caroline": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Interfaces with Project Caroline.", "gav": "org.jvnet.hudson.plugins:caroline:1.0", "labels": [], "name": "caroline", "releaseTimestamp": "2011-11-02T23:47:16.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "upVunUBtgb5H5g74tsO1EdIPiRk=", "title": "Caroline Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/caroline/1.0/caroline.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Caroline+Plugin"}, "cas-plugin": {"buildDate": "Nov 10, 2012", "dependencies": [], "developers": [{"developerId": "fcrespel", "email": "fabien@crespel.net", "name": "Fabien Crespel"}], "excerpt": "This plugin enables use of Jasig CAS as an authentication source, for single sign-on and single sign-out support.", "gav": "org.jenkins-ci.plugins:cas-plugin:1.1.1", "labels": ["user"], "name": "cas-plugin", "previousTimestamp": "2012-09-07T05:09:28.00Z", "previousVersion": "1.1.0", "releaseTimestamp": "2012-11-10T06:09:34.00Z", "requiredCore": "1.470", "scm": "github.com", "sha1": "669qS+eHM/zlJsrOQu4avVD1aR0=", "title": "CAS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cas-plugin/1.1.1/cas-plugin.hpi", "version": "1.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CAS+Plugin"}, "cas1": {"buildDate": "Mar 09, 2010", "dependencies": [], "developers": [{"developerId": "david_beutel", "email": "jbeutel@hawaii.edu", "name": "J. David Beutel"}], "excerpt": "This plugin lets Hudson authenticate users via your organization's Central Authentication Service (CAS), for single-sign-on. ", "gav": "org.jvnet.hudson.plugins:cas1:1.0.1", "labels": ["user"], "name": "cas1", "previousTimestamp": "2010-03-05T17:23:56.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-03-09T14:55:46.00Z", "requiredCore": "1.349", "scm": "svn.dev.java.net", "sha1": "4HqufRisxkuZQLp7fjix5jMNmgk=", "title": "CAS1 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cas1/1.0.1/cas1.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CAS1+Plugin"}, "cccc": {"buildDate": "Nov 24, 2011", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin generates the trend report for CCCC (C and C+\\+ Code Counter).", "gav": "com.thalesgroup.jenkins-ci.plugins:cccc:0.6", "labels": ["report"], "name": "cccc", "previousTimestamp": "2011-08-14T03:57:30.00Z", "previousVersion": "0.5", "releaseTimestamp": "2011-11-25T04:29:22.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "dkJsiKHW6rmqQ0VAEUqlB8kwFls=", "title": "CCCC Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cccc/0.6/cccc.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CCCC+Plugin"}, "ccm": {"buildDate": "Apr 06, 2012", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.38"}, {"name": "token-macro", "optional": true, "version": "1.1"}, {"name": "dashboard-view", "optional": true, "version": "1.8.1"}, {"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}, {"developerId": "cesar1983", "email": "cesar.fa@gmail.com", "name": "Cesar Fernandes de Almeida"}], "excerpt": "This plug-in generates reports on cyclomatic complexity for .NET code. ", "gav": "org.jvnet.hudson.plugins:ccm:3.0", "labels": ["report", "maven"], "name": "ccm", "previousTimestamp": "2011-03-12T04:33:58.00Z", "previousVersion": "2.6.1", "releaseTimestamp": "2012-04-06T08:45:34.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "Vu27BHx+0u5DW/jIHSW+gaxQ2J8=", "title": "CCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ccm/3.0/ccm.hpi", "version": "3.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CCM+Plugin"}, "changelog-history": {"buildDate": "Mar 29, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.23"}], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "This plugin copies change log data to a later build when a build is deleted.", "gav": "org.jenkins-ci.plugins:changelog-history:1.3", "labels": ["misc"], "name": "changelog-history", "previousTimestamp": "2011-01-17T13:40:12.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-03-30T03:09:10.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "CTD4Qebxb82/kxZ1w5ksSQBZ40s=", "title": "Change Log History Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/changelog-history/1.3/changelog-history.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Change+Log+History+Plugin"}, "changes-since-last-success": {"buildDate": "Jul 04, 2012", "dependencies": [], "developers": [{"developerId": "ndeloof", "name": "Nicolas De Loof"}], "excerpt": "generate changelog for a range of builds", "gav": "org.jenkins-ci.plugins:changes-since-last-success:0.3", "labels": [], "name": "changes-since-last-success", "previousTimestamp": "2012-06-29T16:03:20.00Z", "previousVersion": "0.2", "releaseTimestamp": "2012-07-04T16:41:58.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "+eNLN76x4awD9aChl71tmYkFj8E=", "title": "Changes Since Last Success Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/changes-since-last-success/0.3/changes-since-last-success.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Changes+Since+Last+Success+Plugin"}, "checkstyle": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "dashboard-view", "optional": true, "version": "2.2"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin generates the trend report for Checkstyle, an open source static code analysis program.  ", "gav": "org.jvnet.hudson.plugins:checkstyle:3.32", "labels": ["maven", "report"], "name": "checkstyle", "previousTimestamp": "2012-09-04T14:41:10.00Z", "previousVersion": "3.31", "releaseTimestamp": "2012-10-05T15:49:06.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "pXcn/yt6Wlc14FV/OhgrpF/tJTU=", "title": "Checkstyle Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/checkstyle/3.32/checkstyle.hpi", "version": "3.32", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Checkstyle+Plugin"}, "chrome-frame-plugin": {"buildDate": "Sep 23, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides Google Chrome Frame request for all pages.", "gav": "org.jenkins-ci.plugins:chrome-frame-plugin:1.1", "labels": ["page-decorator"], "name": "chrome-frame-plugin", "previousTimestamp": "2011-09-22T20:38:12.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-09-23T19:48:58.00Z", "requiredCore": "1.429", "scm": "github.com", "sha1": "cU9qJp/rTvNJ3onkEN9RmHBniqQ=", "title": "Chrome Frame Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/chrome-frame-plugin/1.1/chrome-frame-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Chrome+Frame+Plugin"}, "chromedriver": {"buildDate": "Dec 21, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin auto-installs ChromeDriver to every slave.", "gav": "org.jenkins-ci.plugins:chromedriver:1.0", "labels": [], "name": "chromedriver", "releaseTimestamp": "2011-12-21T19:21:00.00Z", "requiredCore": "1.433", "scm": "github.com", "sha1": "ltZBEi1nMA5WkPTXoXut6QmNVCM=", "title": "ChromeDriver plugin", "url": "http://updates.jenkins-ci.org/download/plugins/chromedriver/1.0/chromedriver.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ChromeDriver+plugin"}, "chucknorris": {"buildDate": "Jan 21, 2010", "dependencies": [], "developers": [{"developerId": "cliffano"}], "excerpt": "Displays a picture of Chuck Norris (instead of Jenkins the butler) and a random Chuck Norris 'The Programmer' fact on each build page.", "gav": "org.jvnet.hudson.plugins:chucknorris:0.4", "labels": ["ui"], "name": "chucknorris", "previousTimestamp": "2009-12-31T19:59:00.00Z", "previousVersion": "0.3", "releaseTimestamp": "2010-01-22T03:36:38.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "AL8IQTlgtNuHdIa/y2nSlQJOoy4=", "title": "ChuckNorris Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/chucknorris/0.4/chucknorris.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ChuckNorris+Plugin"}, "ci-game": {"buildDate": "Sep 17, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.395"}, {"name": "checkstyle", "optional": true, "version": "3.1"}, {"name": "findbugs", "optional": true, "version": "4.0"}, {"name": "violations", "optional": true, "version": "0.5.4"}, {"name": "tasks", "optional": true, "version": "4.0"}, {"name": "pmd", "optional": true, "version": "3.1"}, {"name": "warnings", "optional": true, "version": "3.0"}, {"name": "analysis-core", "optional": false, "version": "1.0"}], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}, {"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}], "excerpt": "This plugin introduces a game where users gets point on improving the builds.", "gav": "org.jvnet.hudson.plugins:ci-game:1.19", "labels": ["misc", "maven"], "name": "ci-game", "previousTimestamp": "2011-02-18T04:10:04.00Z", "previousVersion": "1.18", "releaseTimestamp": "2012-09-17T14:20:18.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "JllQaoS6IxXdyfkm9xEv8+0juBQ=", "title": "The Continuous Integration Game plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ci-game/1.19/ci-game.hpi", "version": "1.19", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/The+Continuous+Integration+Game+plugin"}, "claim": {"buildDate": "May 04, 2010", "dependencies": [], "developers": [{"developerId": "AWPYV"}], "excerpt": "This plugin allows users to claim failed builds", "gav": "org.jvnet.hudson.plugins:claim:1.7", "labels": ["misc"], "name": "claim", "previousTimestamp": "2009-11-29T03:34:58.00Z", "previousVersion": "1.6", "releaseTimestamp": "2010-05-04T12:32:14.00Z", "requiredCore": "1.347", "scm": "svn.dev.java.net", "sha1": "dtq8TgVz2r+hTSELtwpZ0YtOPKs=", "title": "Claim plugin", "url": "http://updates.jenkins-ci.org/download/plugins/claim/1.7/claim.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Claim+plugin"}, "clamav": {"buildDate": "Sep 06, 2012", "dependencies": [], "developers": [{"developerId": "ssogabe", "name": "Seiji Sogabe"}], "excerpt": "This plugin allows you to check the artifacts with ClamAV, which is an open source (GPL) antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats. ", "gav": "org.jenkins-ci.plugins:clamav:0.2.1", "labels": ["external"], "name": "clamav", "previousTimestamp": "2011-10-17T03:48:48.00Z", "previousVersion": "0.2", "releaseTimestamp": "2012-09-07T00:43:34.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "cKPlJQcxk9cMtCRMfnBimFtztGs=", "title": "ClamAV Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clamav/0.2.1/clamav.hpi", "version": "0.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClamAV+Plugin"}, "clang-scanbuild-plugin": {"buildDate": "Feb 11, 2012", "dependencies": [], "developers": [{"developerId": "jkennedy1980", "email": "josh@thosekennedys.com", "name": "Joshua Kennedy"}], "excerpt": "This plugin allows you to execute Clang scan-build against Mac or iPhone XCode projects. ", "gav": "jenkins.plugins.clangscanbuild:clang-scanbuild-plugin:1.3.1", "labels": ["report", "ios"], "name": "clang-scanbuild-plugin", "previousTimestamp": "2012-02-11T07:07:16.00Z", "previousVersion": "1.3.0", "releaseTimestamp": "2012-02-11T18:00:58.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "/M0djdCDKqkcLYYbuFezPrkj4Kw=", "title": "Clang Scan-Build Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clang-scanbuild-plugin/1.3.1/clang-scanbuild-plugin.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clang+Scan-Build+Plugin"}, "clearcase": {"buildDate": "Oct 23, 2012", "compatibleSinceVersion": "1.0", "dependencies": [], "developers": [{"developerId": "vlatombe", "email": "vincent.latombe@gmail.com", "name": "Vincent Latombe"}], "excerpt": "Integrates Jenkins with ClearCase.", "gav": "org.jvnet.hudson.plugins:clearcase:1.3.11", "labels": ["scm"], "name": "clearcase", "previousTimestamp": "2012-09-17T19:10:18.00Z", "previousVersion": "1.3.10.1", "releaseTimestamp": "2012-10-23T14:01:52.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "pFXGHFRLU7YpMRWH1U9xs3In8rE=", "title": "ClearCase Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clearcase/1.3.11/clearcase.hpi", "version": "1.3.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Plugin"}, "clearcase-release": {"buildDate": "Feb 17, 2011", "dependencies": [{"name": "clearcase", "optional": false, "version": "1.3.5"}], "developers": [{"developerId": "gbois", "email": "gbois@dev.java.net", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to promote composite baselines or latest baselines to RELEASED promotion level for Clearcase UCM. ", "gav": "org.jvnet.hudson.plugins:clearcase-release:0.3", "labels": ["buildwrapper"], "name": "clearcase-release", "previousTimestamp": "2009-12-07T05:39:28.00Z", "previousVersion": "0.1", "releaseTimestamp": "2011-02-17T18:36:32.00Z", "requiredCore": "1.358", "scm": "svn.jenkins-ci.org", "sha1": "wJ5JCXLgN+2LYyJM83A+dfmsIUk=", "title": "ClearCase Release Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-release/0.3/clearcase-release.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+Release+Plugin"}, "clearcase-ucm-baseline": {"buildDate": "Sep 19, 2011", "dependencies": [{"name": "clearcase", "optional": false, "version": "1.3"}], "developers": [{"developerId": "rseguy", "email": "romain.seguy@gmail.com", "name": "Romain Seguy"}], "excerpt": "Allows using ClearCase UCM baselines as the input of builds: When using this SCM, users will be asked at build-time to select the baseline on which the job has to work.", "gav": "org.jvnet.hudson.plugins:clearcase-ucm-baseline:1.7.4", "labels": ["scm"], "name": "clearcase-ucm-baseline", "previousTimestamp": "2011-02-21T03:35:22.00Z", "previousVersion": "1.7.3", "releaseTimestamp": "2011-09-19T22:59:28.00Z", "requiredCore": "1.375", "scm": "svn.jenkins-ci.org", "sha1": "M096rg4dK3BO7jdZAvungMCIqhs=", "title": "ClearCase UCM Baseline Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-baseline/1.7.4/clearcase-ucm-baseline.hpi", "version": "1.7.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Baseline+Plugin"}, "clearcase-ucm-plugin": {"buildDate": "Dec 12, 2012", "dependencies": [], "developers": [{"developerId": "jes-struck", "name": "Jes Struck"}, {"developerId": "wolfgarnet", "name": "Christian Wolfgang"}, {"developerId": "les-praqma", "name": "Leif Soerensen"}, {"developerId": "lak-praqma", "email": "support@praqma.net", "name": "Lars Kruse"}], "excerpt": "A Praqmatic integration to ClearCase UCM, simplifying continuous integration with Jenkins. ", "gav": "org.jenkins-ci.plugins:clearcase-ucm-plugin:1.3.1", "labels": ["scm"], "name": "clearcase-ucm-plugin", "previousTimestamp": "2012-12-03T15:49:32.00Z", "previousVersion": "1.3.0", "releaseTimestamp": "2012-12-12T13:54:06.00Z", "requiredCore": "1.456", "scm": "github.com", "sha1": "c/tRCv3O0/2zzGJR1lhM/ELzmV4=", "title": "ClearCase UCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clearcase-ucm-plugin/1.3.1/clearcase-ucm-plugin.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ClearCase+UCM+Plugin"}, "clone-workspace-scm": {"buildDate": "Aug 17, 2012", "dependencies": [], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}], "excerpt": "This plugin makes it possible to archive the workspace from builds of one project and reuse them as the SCM source for another project.", "gav": "org.jenkins-ci.plugins:clone-workspace-scm:0.5", "labels": ["scm"], "name": "clone-workspace-scm", "previousTimestamp": "2012-02-03T18:05:26.00Z", "previousVersion": "0.4", "releaseTimestamp": "2012-08-17T14:42:58.00Z", "requiredCore": "1.463", "scm": "github.com", "sha1": "dnoWGl79y5CQKBYaom02inxJJTU=", "title": "Clone Workspace SCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clone-workspace-scm/0.5/clone-workspace-scm.hpi", "version": "0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clone+Workspace+SCM+Plugin"}, "cloudbees-deployer-plugin": {"buildDate": "Feb 27, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "Automatically deploys your application to CloudBees RUN@Cloud at the end of your build.", "gav": "org.jenkins-ci.plugins:cloudbees-deployer-plugin:1.7", "labels": ["maven", "external"], "name": "cloudbees-deployer-plugin", "previousTimestamp": "2011-08-25T04:43:40.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-02-27T18:09:48.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "cCeEIiSkWv7ER6kHfYk1RvI/6dQ=", "title": "Cloudbees Deployer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-deployer-plugin/1.7/cloudbees-deployer-plugin.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cloudbees+Deployer+Plugin"}, "cloudbees-plugin-gateway": {"buildDate": "Jul 18, 2012", "dependencies": [{"name": "async-http-client", "optional": false, "version": "1.7.2-1"}, {"name": "credentials", "optional": false, "version": "1.3"}], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin installs free enterprise plugins from CloudBees. The following plugins are automatically installed: * *Folders:* easily organize your jobs * *Backup to Cloud:* backup your Jenkins into CloudBees cloud * *Wasted Minutes:* find out if you are short of slaves and need to add capacity to speed up builds * *CloudBees Status:* find out how much of the free CloudBees Jenkins capacity in the cloud is available for your use *Note:* You will be asked to register for a free CloudBees account to use these plugins (This plugin was formerly known as the CloudBees Plugin Gateway plugin) ", "gav": "org.jenkins-ci.plugins:cloudbees-plugin-gateway:1.10", "labels": ["misc"], "name": "cloudbees-plugin-gateway", "previousTimestamp": "2012-07-16T16:56:42.00Z", "previousVersion": "1.9", "releaseTimestamp": "2012-07-18T13:20:30.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "+EMel1ej+vgtxaGy5kb/VlGAr6k=", "title": "CloudBees Free Enterprise Plugins", "url": "http://updates.jenkins-ci.org/download/plugins/cloudbees-plugin-gateway/1.10/cloudbees-plugin-gateway.hpi", "version": "1.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Free+Enterprise+Plugins"}, "clover": {"buildDate": "May 13, 2012", "dependencies": [], "developers": [{"developerId": "npellow", "name": "Nick Pellow"}, {"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "This plugin allows you to capture code coverage reports from Clover. Hudson will generate and track code coverage across time. This plugin can be used without the need to modify your build.xml. ", "gav": "org.jenkins-ci.plugins:clover:4.0.6", "labels": ["report"], "name": "clover", "previousTimestamp": "2012-01-19T02:56:58.00Z", "previousVersion": "4.0.5", "releaseTimestamp": "2012-05-13T04:29:48.00Z", "requiredCore": "1.412", "scm": "github.com", "sha1": "2P1RWOzhjulyRm9BU0GAxCUEIF8=", "title": "Clover Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/clover/4.0.6/clover.hpi", "version": "4.0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clover+Plugin"}, "cloverphp": {"buildDate": "Oct 21, 2011", "dependencies": [], "developers": [{"developerId": "ssogabe", "name": "Seiji Sogabe"}], "excerpt": "This plugin allows you to capture code coverage reports from *PHPUnit*. For more information on how to set up PHP projects with Jenkins have a look at the Template for Jenkins Jobs for PHP Projects. ", "gav": "org.jenkins-ci.plugins:cloverphp:0.3.2", "labels": ["report"], "name": "cloverphp", "previousTimestamp": "2011-07-29T01:12:48.00Z", "previousVersion": "0.3.1", "releaseTimestamp": "2011-10-22T01:53:46.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "m9x+Aop7tK6oA8cdnsRpepTZE8s=", "title": "Clover PHP Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cloverphp/0.3.2/cloverphp.hpi", "version": "0.3.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Clover+PHP+Plugin"}, "cmakebuilder": {"buildDate": "Apr 17, 2011", "dependencies": [], "developers": [{"developerId": "vvk"}], "excerpt": "This plugin can be used to build cmake based projects within Hudson.", "gav": "hudson.plugins.cmake:cmakebuilder:1.9", "labels": ["builder"], "name": "cmakebuilder", "previousTimestamp": "2011-04-16T21:23:58.00Z", "previousVersion": "1.8.1", "releaseTimestamp": "2011-04-17T16:50:34.00Z", "requiredCore": "1.343", "scm": "svn.jenkins-ci.org", "sha1": "YdlZ3Z0nIP5nSVr0l+uorqH5fVA=", "title": "cmakebuilder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cmakebuilder/1.9/cmakebuilder.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/cmakebuilder+Plugin"}, "cmvc": {"buildDate": "Aug 27, 2011", "dependencies": [], "developers": [{"developerId": "gawab", "email": "fuechi@ciandt.com", "name": "Fábio Franco Uechi"}], "excerpt": "This plugin integrates CMVC to Hudson. ", "gav": "org.jenkins-ci.plugins:cmvc:0.4", "labels": ["scm"], "name": "cmvc", "previousTimestamp": "2009-12-29T20:19:14.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-08-27T13:08:28.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "IwFWF5TxVmre5/uPpUsJ4wR9xks=", "title": "CMVC Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cmvc/0.4/cmvc.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CMVC+Plugin"}, "cobertura": {"buildDate": "Oct 17, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}, {"name": "dashboard-view", "optional": true, "version": "2.2"}], "developers": [{"developerId": "stephenconnolly", "email": "stephenconnolly@dev.java.net", "name": "Stephen Connolly"}, {"developerId": "manuel_carrasco", "email": "manolo@apache", "name": "Manuel Carrasco Monino"}, {"developerId": "ssogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin allows you to capture code coverage report from Cobertura. Jenkins will generate the trend report of coverage. ", "gav": "org.jenkins-ci.plugins:cobertura:1.7.1", "labels": ["maven", "report"], "name": "cobertura", "previousTimestamp": "2012-10-11T18:25:22.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-10-17T13:36:12.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "XGxMh2vj5PrXQiucL2nLucOD8/E=", "title": "Cobertura Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cobertura/1.7.1/cobertura.hpi", "version": "1.7.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin"}, "cocoapods-integration": {"buildDate": "Nov 16, 2012", "dependencies": [], "developers": [{"developerId": "ljanzik", "email": "leif.janzik@gmail.com", "name": "Leif Janzik"}], "excerpt": "A plugin for the Jenkins Continous Integration Server to excecute CocoaPods goals during a build", "gav": "com.thoughtsonmobile:cocoapods-integration:0.2.0", "name": "cocoapods-integration", "previousTimestamp": "2012-11-09T00:00:44.00Z", "previousVersion": "0.1.1", "releaseTimestamp": "2012-11-16T17:04:32.00Z", "requiredCore": "1.480", "scm": "github.com", "sha1": "GzH3wqVWk+Sceu7aaJCjCmd5G5k=", "title": "CocoaPods Jenkins Integration", "url": "http://updates.jenkins-ci.org/download/plugins/cocoapods-integration/0.2.0/cocoapods-integration.hpi", "version": "0.2.0"}, "codecover": {"buildDate": "Nov 04, 2011", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.1"}, {"name": "maven-plugin", "optional": false, "version": "1.400"}], "developers": [{"developerId": "kbonnette", "email": "kane.bonnette@paperhost.com", "name": "Kane Bonnette"}], "excerpt": "This plugin allows you to capture code coverage report from CodeCover. Jenkins will generate the trend report of coverage. ", "gav": "org.jenkins-ci.plugins:codecover:1.1", "labels": ["report"], "name": "codecover", "releaseTimestamp": "2011-11-04T15:32:48.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "a4YmbqXIiaEQtD2oQvQB1AsP21E=", "title": "CodeCover Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/codecover/1.1/codecover.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeCover+Plugin"}, "codescanner": {"buildDate": "Jan 03, 2011", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.10"}, {"name": "maven-plugin", "optional": false, "version": "1.357"}], "developers": [{"developerId": "lkz633", "name": "Maximilian Odendahl"}], "excerpt": "This plugin generates the trend report for Codescanner, a tool which uses static analysis to look for bugs, hints and other useful information in Symbian C++ source code. ", "gav": "org.jvnet.hudson.plugins:codescanner:0.11", "labels": ["report"], "name": "codescanner", "previousTimestamp": "2010-03-18T21:26:20.00Z", "previousVersion": "0.10", "releaseTimestamp": "2011-01-03T16:15:00.00Z", "requiredCore": "1.357", "scm": "svn.java.net", "sha1": "NGNsgXJAt3bJzHTeT/UZRtXVffs=", "title": "CodeScanner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/codescanner/0.11/codescanner.hpi", "version": "0.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CodeScanner+Plugin"}, "collabnet": {"buildDate": "Mar 12, 2011", "dependencies": [{"name": "promoted-builds", "optional": false, "version": "1.11"}, {"name": "maven-plugin", "optional": false, "version": "1.363"}, {"name": "subversion", "optional": false, "version": "1.23"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "The CollabNet Plugin is an integration with CollabNet TeamForge.", "gav": "org.jenkins-ci.plugins:collabnet:1.1.6", "labels": ["external"], "name": "collabnet", "previousTimestamp": "2010-04-22T13:23:52.00Z", "previousVersion": "1.1.5", "releaseTimestamp": "2011-03-12T14:43:40.00Z", "requiredCore": "1.397", "scm": "github.com", "sha1": "hHH49XM2bW5GG6W6OqbIrkD2KM8=", "title": "CollabNet Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/collabnet/1.1.6/collabnet.hpi", "version": "1.1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CollabNet+Plugin"}, "collapsing-console-sections": {"buildDate": "Nov 11, 2010", "dependencies": [], "developers": [{"developerId": "dty", "name": "Dean Yu"}], "excerpt": "This plugin allows the creation of sections in build consoles.", "gav": "org.jvnet.hudson.plugins:collapsing-console-sections:1.3", "labels": ["ui"], "name": "collapsing-console-sections", "previousTimestamp": "2010-11-05T05:33:20.00Z", "previousVersion": "1.2", "releaseTimestamp": "2010-11-12T04:38:22.00Z", "requiredCore": "1.381", "scm": "svn.dev.java.net", "sha1": "mWd2RIBwl4VIVwJ+JX+thbwv7TM=", "title": "Collapsing Console Sections Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/collapsing-console-sections/1.3/collapsing-console-sections.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Collapsing+Console+Sections+Plugin"}, "compact-columns": {"buildDate": "Sep 17, 2011", "dependencies": [], "developers": [{"developerId": "jacob_robertson", "email": "jacob.robertson.work@gmail.com", "name": "Jacob Robertson"}], "excerpt": "More compact columns for showing last success and failure. Easier to understand, and takes less room in your view. ", "gav": "org.jvnet.hudson.plugins:compact-columns:1.9", "labels": ["ui", "listview-column"], "name": "compact-columns", "previousTimestamp": "2011-08-06T18:40:32.00Z", "previousVersion": "1.8", "releaseTimestamp": "2011-09-18T00:30:30.00Z", "requiredCore": "1.349", "scm": "svn.jenkins-ci.org", "sha1": "ZahBoJCogVQYxrcuAnfGhVzTxfc=", "title": "Compact Columns", "url": "http://updates.jenkins-ci.org/download/plugins/compact-columns/1.9/compact-columns.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Compact+Columns"}, "computer-queue-plugin": {"buildDate": "Sep 20, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plug-in display the queue for given computer in it's page ", "gav": "jenkins.ci.plugins.computerqueue:computer-queue-plugin:1.3", "labels": [], "name": "computer-queue-plugin", "previousTimestamp": "2012-08-20T18:30:20.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-09-20T16:52:06.00Z", "requiredCore": "1.437", "scm": "github.com", "sha1": "t00aW+6JqVnfjYtQTKvNfUPS3x0=", "title": "Computer queue plugin", "url": "http://updates.jenkins-ci.org/download/plugins/computer-queue-plugin/1.3/computer-queue-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Computer+queue+plugin"}, "concordionpresenter": {"buildDate": "Aug 13, 2011", "dependencies": [], "developers": [{"developerId": "rjohnst", "email": "rob@rjohnst.com", "name": "Rob Johnston"}], "excerpt": "This plugin publishes Concordion test reports for each build", "gav": "org.jenkins-ci.plugins:concordionpresenter:0.7", "labels": ["report"], "name": "concordionpresenter", "previousTimestamp": "2010-07-07T02:45:38.00Z", "previousVersion": "0.6", "releaseTimestamp": "2011-08-13T12:22:30.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "PIqeFs0L9RLWPIRYRc8xzbVJoNA=", "title": "Concordion Presenter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/concordionpresenter/0.7/concordionpresenter.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Concordion+Presenter+Plugin"}, "conditional-buildstep": {"buildDate": "Nov 01, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "run-condition", "optional": false, "version": "0.10"}], "developers": [{"developerId": "imod", "name": "Dominik Bartholdi"}, {"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "A buildstep wrapping any number of other buildsteps, controlling there execution based on a defined condition. ", "gav": "org.jenkins-ci.plugins:conditional-buildstep:1.2.1", "labels": ["builder"], "name": "conditional-buildstep", "previousTimestamp": "2012-10-11T23:31:38.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-11-01T17:54:18.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "gixu91mUWEHKBLtxaFjrHMqfvek=", "title": "Conditional BuildStep Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/conditional-buildstep/1.2.1/conditional-buildstep.hpi", "version": "1.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin"}, "config-autorefresh-plugin": {"buildDate": "Jun 23, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provide a way to configure the auto-refresh rate from the Jenkins UI.", "gav": "org.jenkins-ci.plugins:config-autorefresh-plugin:1.0", "labels": ["misc"], "name": "config-autorefresh-plugin", "releaseTimestamp": "2011-06-23T13:29:04.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "B3XzainxaQsI5zqnsBCanQSFxW8=", "title": "Config AutoRefresh Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/config-autorefresh-plugin/1.0/config-autorefresh-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+AutoRefresh+Plugin"}, "config-file-provider": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "olamy", "name": "Olivier Lamy"}, {"developerId": "imod", "name": "Dominik Bartholdi"}], "excerpt": "Ability to provide configuration files (e.g. settings.xml for maven, XML, groovy, custom files,...) loaded trough the UI which will be copy to the job workspace", "gav": "org.jenkins-ci.plugins:config-file-provider:2.3", "labels": ["maven", "external", "groovy-related"], "name": "config-file-provider", "previousTimestamp": "2012-04-28T01:33:56.00Z", "previousVersion": "2.2.1", "releaseTimestamp": "2012-11-20T00:28:42.00Z", "requiredCore": "1.491", "scm": "github.com", "sha1": "tQ3YobNsXx4Ncj2egYLr5DNqHJ8=", "title": "Config File Provider Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/config-file-provider/2.3/config-file-provider.hpi", "version": "2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+File+Provider+Plugin"}, "config-rotator": {"buildDate": "Jul 18, 2012", "dependencies": [], "developers": [{"developerId": "wolfgarnet", "email": "support@praqma.net", "name": "Christian Wolfgang"}, {"developerId": "buep", "email": "support@praqma.net", "name": "Bue Petersen"}, {"developerId": "MadsNielsen", "email": "support@praqma.net", "name": "Mads Nielsen"}], "excerpt": "Automatic try-out of possible configurations. Monitors the SCM for newer versions of components and tests if compliant. Only available using ClearCaseUCM as SCM", "gav": "net.praqma:config-rotator:1.0.1", "labels": [], "name": "config-rotator", "previousTimestamp": "2012-06-01T03:01:22.00Z", "previousVersion": "1.0.0", "releaseTimestamp": "2012-07-18T15:57:02.00Z", "requiredCore": "1.456", "scm": "github.com", "sha1": "ugKHMxD7RKKGKPxerUpvNiZ4NrE=", "title": "Config Rotator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/config-rotator/1.0.1/config-rotator.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Config+Rotator+Plugin"}, "configurationslicing": {"buildDate": "Oct 28, 2012", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "1.395"}, {"name": "ant", "optional": true, "version": "1.1"}, {"name": "groovy", "optional": true, "version": "1.9"}, {"name": "email-ext", "optional": true, "version": "2.7"}, {"name": "build-timeout", "optional": true, "version": "1.6"}, {"name": "PrioritySorter", "optional": true, "version": "1.3"}, {"name": "timestamper", "optional": true, "version": "1.2.2"}, {"name": "jython", "optional": true, "version": "1.9"}, {"name": "python", "optional": true, "version": "1.2"}, {"name": "gradle", "optional": true, "version": "1.12"}, {"name": "ws-cleanup", "optional": true, "version": "0.10"}], "developers": [{"developerId": "jacob_robertson", "email": "jacob.robertson.work@gmail.com", "name": "Jacob Robertson"}], "excerpt": "Perform mass configuration of select project properties, including email, timer, discard old builds, and Maven configuration. ", "gav": "org.jvnet.hudson.plugins:configurationslicing:1.36", "labels": ["misc", "builder"], "name": "configurationslicing", "previousTimestamp": "2012-10-27T12:06:50.00Z", "previousVersion": "1.35", "releaseTimestamp": "2012-10-28T12:33:58.00Z", "requiredCore": "1.398", "scm": "svn.jenkins-ci.org", "sha1": "aiVonFh41txd21kiQSkhktEs49M=", "title": "Configuration Slicing Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/configurationslicing/1.36/configurationslicing.hpi", "version": "1.36", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin"}, "configure-job-column-plugin": {"buildDate": "May 30, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provide a fast-path configure job link available for views.", "gav": "org.jenkins-ci.plugins:configure-job-column-plugin:1.0", "labels": ["listview-column", "ui", "misc"], "name": "configure-job-column-plugin", "releaseTimestamp": "2012-05-31T02:36:24.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "p8yOFqsuzF0mA9Qu5fGYtl1EfXo=", "title": "Configure Job Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/configure-job-column-plugin/1.0/configure-job-column-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Configure+Job+Column+Plugin"}, "confluence-publisher": {"buildDate": "Jun 25, 2012", "dependencies": [], "developers": [{"developerId": "jhansche", "email": "jhansche@myyearbook.com", "name": "Joe Hansche"}], "excerpt": "This plugin allows you to publish build artifacts as attachments to an Atlassian Confluence wiki page. ", "gav": "org.jenkins-ci.plugins:confluence-publisher:1.7.1", "labels": ["upload", "external"], "name": "confluence-publisher", "previousTimestamp": "2012-05-29T18:29:34.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-06-25T16:57:18.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "FWUL+NS8LS2IDlMOjlKne1kj7N0=", "title": "Confluence Publisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/confluence-publisher/1.7.1/confluence-publisher.hpi", "version": "1.7.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Confluence+Publisher+Plugin"}, "console-column-plugin": {"buildDate": "Oct 15, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provide a fast-path console link available for views.", "gav": "org.jenkins-ci.plugins:console-column-plugin:1.5", "labels": ["listview-column", "ui"], "name": "console-column-plugin", "previousTimestamp": "2011-10-12T11:56:20.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-10-15T18:52:30.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "mtd/5cTNMwFDXjDLSl3GeRdwyZY=", "title": "Console Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/console-column-plugin/1.5/console-column-plugin.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Console+Column+Plugin"}, "copy-data-to-workspace-plugin": {"buildDate": "Feb 24, 2011", "dependencies": [], "developers": [{"developerId": "nzhelyakov", "email": "nzhelyakov@gmail.com", "name": "Nikita Zhelyakov"}], "excerpt": "Copies data to workspace directory for each project build. ", "gav": "org.jvnet.hudson.plugins:copy-data-to-workspace-plugin:1.0", "labels": ["buildwrapper"], "name": "copy-data-to-workspace-plugin", "releaseTimestamp": "2011-02-25T00:46:20.00Z", "requiredCore": "1.366", "scm": "svn.jenkins-ci.org", "sha1": "o1H9UdRKji2M3qV9S15s84tGq3g=", "title": "Copy Data To Workspace Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/copy-data-to-workspace-plugin/1.0/copy-data-to-workspace-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+Data+To+Workspace+Plugin"}, "copy-project-link": {"buildDate": "Feb 10, 2011", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin adds the \"Copy project\" link into left side panel in the main project page.", "gav": "hudson.plugins.copyProjectLink:copy-project-link:1.0", "labels": ["ui"], "name": "copy-project-link", "releaseTimestamp": "2011-02-10T19:18:08.00Z", "requiredCore": "1.391", "scm": "github.com", "sha1": "GXTRqgVz2HJiE+07wnBaMQnL5I0=", "title": "Copy project link plugin", "url": "http://updates.jenkins-ci.org/download/plugins/copy-project-link/1.0/copy-project-link.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+project+link+plugin"}, "copy-to-slave": {"buildDate": "Jan 17, 2012", "dependencies": [], "developers": [{"developerId": "rseguy", "email": "romain.seguy@gmail.com", "name": "Romain Seguy"}], "excerpt": "This plugin allows to copy a set of files, from a location somewhere on the master node, to jobs' workspaces. It also allows to copy files back from the workspaces of jobs located on a slave node to their workspaces on the master one.", "gav": "org.jenkins-ci.plugins:copy-to-slave:1.4", "labels": ["slaves", "notifier", "buildwrapper"], "name": "copy-to-slave", "previousTimestamp": "2011-03-02T23:57:58.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-01-17T22:48:28.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "8v72Qrok05cnSLV39Jb1PZTWhfo=", "title": "Copy To Slave Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/copy-to-slave/1.4/copy-to-slave.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+To+Slave+Plugin"}, "copyartifact": {"buildDate": "Nov 06, 2012", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "1.424"}], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "Adds a build step to copy artifacts from another project.", "gav": "org.jenkins-ci.plugins:copyartifact:1.25", "labels": ["builder", "parameter"], "name": "copyartifact", "previousTimestamp": "2012-10-03T20:31:38.00Z", "previousVersion": "1.24", "releaseTimestamp": "2012-11-06T14:49:58.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "TxuAEhVAoTnx0lxJ6VaisoHRlmw=", "title": "Copy Artifact Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/copyartifact/1.25/copyartifact.hpi", "version": "1.25", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Copy+Artifact+Plugin"}, "countjobs-viewstabbar": {"buildDate": "Jan 11, 2012", "dependencies": [], "developers": [{"developerId": "ilbors", "name": "Ignacio Albors"}], "excerpt": "This plugin shows a Views TabBar like the original one but it adds how many jobs has each view in every tab title.", "gav": "ws.albors:countjobs-viewstabbar:1.0.0", "labels": ["misc", "ui"], "name": "countjobs-viewstabbar", "releaseTimestamp": "2012-01-11T05:27:16.00Z", "requiredCore": "1.428", "scm": "github.com", "sha1": "RnukVLYGfy/xyENjvUUxckTu2Jc=", "title": "Countjobs Viewstabbar", "url": "http://updates.jenkins-ci.org/download/plugins/countjobs-viewstabbar/1.0.0/countjobs-viewstabbar.hpi", "version": "1.0.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Countjobs+Viewstabbar"}, "covcomplplot": {"buildDate": "Aug 13, 2011", "dependencies": [], "developers": [{"developerId": "junoyoon", "email": "junoyoon@gmail.com", "name": "JunHo Yoon"}], "excerpt": "This plugin shows the coverage/complexity scatter plot from Clover or Cobertura plugin results.", "gav": "org.jenkins-ci.plugins:covcomplplot:1.1.1", "labels": ["report"], "name": "covcomplplot", "previousTimestamp": "2010-10-21T15:20:02.00Z", "previousVersion": "1.1.0", "releaseTimestamp": "2011-08-13T14:21:10.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "CboIlIImnrdoYnYhXgihm8zyL6o=", "title": "Coverage Complexity Scatter Plot PlugIn", "url": "http://updates.jenkins-ci.org/download/plugins/covcomplplot/1.1.1/covcomplplot.hpi", "version": "1.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Coverage+Complexity+Scatter+Plot+PlugIn"}, "coverity": {"buildDate": "May 24, 2012", "dependencies": [], "developers": [{"developerId": "joshvinson", "name": "Josh Vinson"}], "excerpt": "This plugin integrates Jenkins with the Coverity Integrity Manager and Coverity Static Analysis tools. Official build located at: https://jenkins.ci.cloudbees.com/job/plugins/job/coverity/ ", "gav": "org.jenkins-ci.plugins:coverity:1.1.3", "labels": ["buildwrapper", "report"], "name": "coverity", "previousTimestamp": "2012-04-02T20:16:18.00Z", "previousVersion": "1.1.2", "releaseTimestamp": "2012-05-24T15:02:20.00Z", "requiredCore": "1.409.2", "scm": "github.com", "sha1": "fBoPftbhucx3aWNWcLO3wAu4Qv0=", "title": "Coverity Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/coverity/1.1.3/coverity.hpi", "version": "1.1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Coverity+Plugin"}, "cppcheck": {"buildDate": "Nov 22, 2012", "dependencies": [{"name": "ivy", "optional": true, "version": "1.19"}], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin records CppCheck reports in Jenkins.", "gav": "org.jenkins-ci.plugins:cppcheck:1.12", "labels": ["report"], "name": "cppcheck", "previousTimestamp": "2012-11-04T04:10:08.00Z", "previousVersion": "1.11", "releaseTimestamp": "2012-11-23T03:01:08.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "bxJnDAAYOM1IiWngHjfY2Y4RTyE=", "title": "Cppcheck Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cppcheck/1.12/cppcheck.hpi", "version": "1.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cppcheck+Plugin"}, "cppncss": {"buildDate": "Feb 18, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.358"}], "developers": [{"developerId": "holywen", "email": "shaohua-holy.wen@nsn.com", "name": "Shaohua Wen"}], "excerpt": "This plugin allows you to use CppNCSS build reporting tool.", "gav": "org.jvnet.hudson.plugins:cppncss:1.1", "labels": ["report"], "name": "cppncss", "previousTimestamp": "2010-06-03T20:44:40.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-02-18T17:17:08.00Z", "requiredCore": "1.358", "scm": "svn.jenkins-ci.org", "sha1": "ASJbOA48B7oGDuDIi+kn8WNFMp0=", "title": "CPPNCSS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cppncss/1.1/cppncss.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CPPNCSS+Plugin"}, "cpptest": {"buildDate": "May 29, 2011", "dependencies": [{"name": "xunit", "optional": false, "version": "1.17"}, {"name": "analysis-core", "optional": false, "version": "1.21"}, {"name": "maven-plugin", "optional": false, "version": "1.410"}, {"name": "maven-plugin", "optional": false, "version": "1.395"}], "developers": [{"developerId": "gbois", "email": "gbois@dev.java.net", "name": "Gregory Boissinot"}, {"developerId": "NQH", "email": "quanghuycvut@yahoo.com", "name": "N. Q. Huy"}], "excerpt": "This plugin allows you publish Parasoft C++test test results. This plugin makes it possible to import Parasoft C++test reports from each build into Hudson so they are displayed with a trend graph and details about which tests that failed. ", "gav": "com.thalesgroup.jenkins-ci.plugins:cpptest:0.9", "labels": ["report"], "name": "cpptest", "previousTimestamp": "2010-10-12T07:25:48.00Z", "previousVersion": "0.8", "releaseTimestamp": "2011-05-29T20:27:58.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "Mux1eV/aMsRoShdxLsmLKgMRbng=", "title": "Cpptest Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cpptest/0.9/cpptest.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cpptest+Plugin"}, "crap4j": {"buildDate": "Aug 01, 2010", "dependencies": [], "developers": [{"developerId": "dlindner", "name": "Daniel Lindner"}], "excerpt": "This plugin reads the \"crappy methods\" report from Crap4J. Hudson will generate the trend report of crap percentage and provide detailed information about changes.", "gav": "org.jvnet.hudson.plugins:crap4j:0.8", "labels": ["report"], "name": "crap4j", "previousTimestamp": "2009-12-30T14:49:48.00Z", "previousVersion": "0.7", "releaseTimestamp": "2010-08-02T01:32:16.00Z", "requiredCore": "1.368", "scm": "svn.dev.java.net", "sha1": "lXwrGF5f94qHOX7doKwrGyiLWoc=", "title": "Crap4J Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/crap4j/0.8/crap4j.hpi", "version": "0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crap4J+Plugin"}, "create-fingerprint": {"buildDate": "Dec 31, 2011", "dependencies": [], "developers": [{"developerId": "marcsanfacon", "email": "marc.sanfacon@gmail.com", "name": "Marc Sanfacon"}], "excerpt": "Adds the ability to generate fingerprints as build steps instead of waiting for a build to complete. ", "gav": "org.jenkins-ci.plugins:create-fingerprint:1.2", "labels": ["builder"], "name": "create-fingerprint", "previousTimestamp": "2011-11-26T21:11:58.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-12-31T15:02:48.00Z", "requiredCore": "1.440", "scm": "github.com", "sha1": "eTmOEC36FyDg0co1ceOp9C0Z7WI=", "title": "Fingerprint Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/create-fingerprint/1.2/create-fingerprint.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin"}, "create-fingerprint-plugin": {"buildDate": "Nov 26, 2011", "dependencies": [], "developers": [{"developerId": "marcsanfacon", "email": "marc.sanfacon@gmail.com", "name": "Marc Sanfacon"}], "excerpt": "Adds the ability to generate fingerprints as build steps instead of waiting for a build to complete. ", "gav": "org.jenkins-ci.plugins:create-fingerprint-plugin:1.0", "labels": ["builder"], "name": "create-fingerprint-plugin", "releaseTimestamp": "2011-11-26T15:46:06.00Z", "requiredCore": "1.440", "scm": "github.com", "sha1": "09eL9WB6NSobjvWfic5rU056WMA=", "title": "Fingerprint Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/create-fingerprint-plugin/1.0/create-fingerprint-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint+Plugin"}, "createjobadvanced": {"buildDate": "Oct 07, 2012", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "1.420"}], "developers": [{"developerId": "bertrandgressier", "email": "bertrand.gressier@gmail.com", "name": "Bertrand Gressier"}], "excerpt": "This plugin extends creating job. When you create a job, it automatically adds all permissions for the creator. ", "gav": "org.jenkins-ci.plugins:createjobadvanced:1.7", "labels": ["user"], "name": "createjobadvanced", "previousTimestamp": "2011-08-05T18:08:52.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-10-07T14:39:16.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "Sfk97M5W+nQKQQROgots6FY1K/o=", "title": "Create Job Advanced Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/createjobadvanced/1.7/createjobadvanced.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Create+Job+Advanced+Plugin"}, "credentials": {"buildDate": "May 11, 2012", "dependencies": [], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin allows you to store credentials in Jenkins.", "gav": "org.jenkins-ci.plugins:credentials:1.3.1", "labels": [], "name": "credentials", "previousTimestamp": "2012-02-27T20:39:48.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-05-11T16:10:18.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "TbBn+BpyQTS8Fhoeyj3D7NTZWBc=", "title": "Credentials Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/credentials/1.3.1/credentials.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Plugin"}, "cron_column": {"buildDate": "Jul 06, 2010", "dependencies": [], "developers": [{"developerId": "eelco_de_vlieger", "email": "eelcodevlieger@hotmail.com", "name": "Eelco de Vlieger"}], "excerpt": "View column showing the cron trigger expressions that can be configured on a job (Subversion, Scheduled Builds, etc.)", "gav": "org.jvnet.hudson.plugins:cron_column:1.003", "labels": ["listview-column"], "name": "cron_column", "previousTimestamp": "2010-04-16T19:51:28.00Z", "previousVersion": "1.002", "releaseTimestamp": "2010-07-06T15:26:34.00Z", "requiredCore": "1.350", "scm": "svn.dev.java.net", "sha1": "wxeNGb6yQzX6gzcYSzC08CJ65II=", "title": "Cron Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cron_column/1.003/cron_column.hpi", "version": "1.003", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cron+Column+Plugin"}, "crowd": {"buildDate": "Aug 05, 2011", "dependencies": [], "developers": [{"developerId": "nbudin", "name": "Nat Budin"}, {"developerId": "justinedelson", "name": "Justin Edelson"}], "excerpt": "This plugin enables use of Atlassian Crowd as an authentication source.", "gav": "com.ds.tools.hudson:crowd:1.2", "labels": ["user"], "name": "crowd", "previousTimestamp": "2010-01-30T22:58:06.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-08-05T12:14:24.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "FlNYLD4WehRNrWrkmte84TBWlaY=", "title": "Crowd Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/crowd/1.2/crowd.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crowd+Plugin"}, "crowd2": {"buildDate": "Aug 23, 2012", "dependencies": [], "developers": [{"developerId": "theit", "email": "theit@gmx.de", "name": "Thorsten Heit"}], "excerpt": "This plugin enables use of Atlassian Crowd >= 2.1.x as an authentication source.", "gav": "org.jenkins-ci.plugins:crowd2:1.5", "labels": ["user"], "name": "crowd2", "previousTimestamp": "2011-11-25T20:23:32.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-08-23T17:48:24.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "zSXuGYjDGUWO9qDveBTj+S9jxH8=", "title": "Crowd 2 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/crowd2/1.5/crowd2.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Crowd+2+Plugin"}, "custom-job-icon": {"buildDate": "Oct 22, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.447"}, {"name": "dashboard-view", "optional": true, "version": "2.3"}], "developers": [{"developerId": "jcsirot", "email": "sirot@chelonix.com", "name": "Jean-Christophe Sirot"}], "excerpt": "This plugin allows to configure a custom icon for each job in order to improve the job visibility on the dashboard.", "gav": "org.jenkins-ci.plugins:custom-job-icon:0.2", "labels": ["ui", "listview-column"], "name": "custom-job-icon", "previousTimestamp": "2012-08-10T03:24:46.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-10-22T15:01:06.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "zLYzRNQZmAwAkHgRyQ5GccxmVUA=", "title": "Custom Job Icon Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/custom-job-icon/0.2/custom-job-icon.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+Job+Icon+Plugin"}, "custom-tools-plugin": {"buildDate": "Feb 13, 2012", "dependencies": [], "developers": [{"developerId": "recampbell", "email": "ryan.campbell@gmail.com", "name": "Ryan Campbell"}], "excerpt": "A generic tool installer. You define how tools get installed, and the plugin will automatically install them when needed. ", "gav": "com.cloudbees.jenkins.plugins:custom-tools-plugin:0.1", "labels": ["buildwrapper"], "name": "custom-tools-plugin", "releaseTimestamp": "2012-02-13T18:54:48.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "C1mOyP2Hfq7k7nf/ycLz/iJx4Mo=", "title": "Custom Tools Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/custom-tools-plugin/0.1/custom-tools-plugin.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Custom+Tools+Plugin"}, "cvs": {"buildDate": "Nov 05, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "mc1arke", "name": "Michael Clarke"}], "excerpt": "This bundled plugin integrates Jenkins with CVS version control system.", "gav": "org.jenkins-ci.plugins:cvs:2.7", "labels": ["scm"], "name": "cvs", "previousTimestamp": "2012-09-22T23:19:36.00Z", "previousVersion": "2.6", "releaseTimestamp": "2012-11-06T00:45:30.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "zTpvXtAiby+IYc0XvNXs1y4dOJg=", "title": "CVS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cvs/2.7/cvs.hpi", "version": "2.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CVS+Plugin"}, "cvs-tag": {"buildDate": "Nov 03, 2011", "dependencies": [{"name": "cvs", "optional": false, "version": "1.3"}], "developers": [{"developerId": "btrim", "email": "trimbybj@gmail.com", "name": "Brad Trimby"}, {"developerId": "draco2k8", "email": "draco2k4@yahoo.com", "name": "Brendt Lucas"}, {"developerId": "derekmahar", "email": "derek@derekmahar.ca", "name": "Derek Mahar"}], "excerpt": "This plugin will perform CVS tagging (cvs rtag when possible) after a job has been built successfully.", "gav": "org.jenkins-ci.plugins:cvs-tag:1.7", "labels": ["post-build", "scm-related"], "name": "cvs-tag", "previousTimestamp": "2011-04-30T04:36:18.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-11-04T02:40:52.00Z", "requiredCore": "1.421", "scm": "github.com", "sha1": "xU34I1C6YcpwlR0j5exvWMiRfmI=", "title": "CVS Tagging Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cvs-tag/1.7/cvs-tag.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/CVS+Tagging+Plugin"}, "cygpath": {"buildDate": "Nov 07, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin performs Cygwin path conversion before forking new processes", "gav": "org.jenkins-ci.plugins:cygpath:1.5", "labels": ["misc"], "name": "cygpath", "previousTimestamp": "2011-11-08T03:05:32.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-11-08T03:33:34.00Z", "requiredCore": "1.418", "scm": "github.com", "sha1": "OvtjQn0IRxNBlg+kG9XXc3Io2Is=", "title": "Cygpath Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/cygpath/1.5/cygpath.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Cygpath+Plugin"}, "darcs": {"buildDate": "Apr 19, 2011", "dependencies": [], "developers": [{"developerId": "weltraumschaf", "email": "ich@weltraumschaf.de", "name": "Sven Strittmatter"}, {"developerId": "ralphlange", "email": "ralph.lange@gmx.de", "name": "Ralph Lange"}], "excerpt": "This plugin integrates Darcs version control system to Jenkins. The plugin requires the Darcs binary (darcs) to be installed on the target machine. ", "gav": "org.jenkins-ci.plugins:darcs:0.3.5", "labels": ["scm"], "name": "darcs", "previousTimestamp": "2011-03-30T04:21:54.00Z", "previousVersion": "0.3.4", "releaseTimestamp": "2011-04-20T01:42:42.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "WgdqpfwTKOMMnc58HQb6vHoVmn0=", "title": "Darcs Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/darcs/0.3.5/darcs.hpi", "version": "0.3.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Darcs+Plugin"}, "dashboard-view": {"buildDate": "Nov 12, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "petehayes", "email": "petehayes@gmail.com", "name": "Peter Hayes"}, {"developerId": "mambu", "email": "marco.ambu+jenkins@gmail.com", "name": "Marco Ambu"}], "excerpt": "This plugin contributes a new view implementation that provides a dashboard / portal-like view for your Jenkins instance. ", "gav": "org.jenkins-ci.plugins:dashboard-view:2.4", "labels": ["ui"], "name": "dashboard-view", "previousTimestamp": "2012-07-17T18:33:16.00Z", "previousVersion": "2.3", "releaseTimestamp": "2012-11-13T00:51:46.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "WjHl1hx5+lzl0XSDjonpuBxhwPM=", "title": "Dashboard View", "url": "http://updates.jenkins-ci.org/download/plugins/dashboard-view/2.4/dashboard-view.hpi", "version": "2.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View"}, "dbCharts": {"buildDate": "Feb 17, 2011", "dependencies": [], "developers": [{"developerId": "ptab", "email": "piotr.tabor@gmail.com", "name": "Piotr Tabor"}], "excerpt": "Add charts based on JDBC database data series.", "gav": "org.jvnet.hudson.plugins:dbCharts:0.4", "labels": ["ui", "report"], "name": "dbCharts", "previousTimestamp": "2010-03-15T21:07:28.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-02-17T16:30:02.00Z", "requiredCore": "1.358", "scm": "svn.jenkins-ci.org", "sha1": "V+rZd9ht1z8SbGmaTjZ2Hge65aQ=", "title": "dbCharts Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dbCharts/0.4/dbCharts.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/dbCharts+Plugin"}, "debian-package-builder": {"buildDate": "Nov 30, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.42"}], "developers": [{"developerId": "pupssman", "email": "pupssman@yandex-team.ru", "name": "Ivan Kalinin"}, {"developerId": "mavlyutov", "email": "mavlyutov@yandex-team.ru", "name": "Marat Mavlyutov"}], "excerpt": "This plugin helps building debian (.deb) packages ", "gav": "ru.yandex.jenkins.plugins.debuilder:debian-package-builder:1.4.1", "labels": ["builder", "post-build"], "name": "debian-package-builder", "previousTimestamp": "2012-11-07T17:30:30.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-12-01T00:49:28.00Z", "requiredCore": "1.486", "scm": "github.com", "sha1": "sw2Uu123MczuZ1VVlVF5xN2XeW8=", "title": "Debian Package Builder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/debian-package-builder/1.4.1/debian-package-builder.hpi", "version": "1.4.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Debian+Package+Builder+Plugin"}, "delete-log-plugin": {"buildDate": "Apr 30, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "Delele log of a build ", "gav": "org.jenkins-ci.plugins:delete-log-plugin:1.0", "labels": [], "name": "delete-log-plugin", "releaseTimestamp": "2012-04-30T09:19:08.00Z", "requiredCore": "1.461", "scm": "github.com", "sha1": "LpyHRmwF80Ok48m9xkvd7vF1bps=", "title": "Delete log plugin", "url": "http://updates.jenkins-ci.org/download/plugins/delete-log-plugin/1.0/delete-log-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delete+log+plugin"}, "delta-cloud": {"buildDate": "Sep 20, 2011", "dependencies": [], "developers": [{"developerId": "vjuranek"}], "excerpt": "This plugin allows to use Delta Cloud API for provisioning new slaves and therefore allows you to decouple your Jenkins instance from cloud provider", "gav": "org.jenkins-ci.plugins:delta-cloud:1.0.1", "labels": ["cluster"], "name": "delta-cloud", "previousTimestamp": "2011-09-19T19:15:48.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-09-20T15:15:32.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "lLVnoLOfAOB0ldDUL0v2T1CXtBc=", "title": "Delta Cloud API plugin", "url": "http://updates.jenkins-ci.org/download/plugins/delta-cloud/1.0.1/delta-cloud.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Delta+Cloud+API+plugin"}, "dependency-queue-plugin": {"buildDate": "Jul 20, 2012", "dependencies": [], "developers": [{"developerId": "lshatzer", "email": "larrys@gmail.com", "name": "Larry Shatzer, Jr."}], "excerpt": "This plugin will make sure the order of dependencies is honored in the build queue.", "gav": "org.jenkins-ci.plugins:dependency-queue-plugin:1.1", "labels": ["misc"], "name": "dependency-queue-plugin", "previousTimestamp": "2012-05-18T16:46:30.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-07-20T11:37:14.00Z", "requiredCore": "1.427", "scm": "github.com", "sha1": "O3CVdrVAqxETlPT3Z8SiAiHWvuc=", "title": "Dependency Queue Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dependency-queue-plugin/1.1/dependency-queue-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Queue+Plugin"}, "dependencyanalyzer": {"buildDate": "Feb 14, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.377"}], "developers": [{"developerId": "vsellier", "name": "Vincent Sellier"}], "excerpt": "This plugin parses dependency:analyze goal from maven build logs and generates a dependency report", "gav": "org.jvnet.hudson.plugins:dependencyanalyzer:0.6", "labels": ["maven", "report"], "name": "dependencyanalyzer", "previousTimestamp": "2010-02-15T14:23:26.00Z", "previousVersion": "0.5", "releaseTimestamp": "2011-02-14T21:18:36.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "YqhhubcDUAU1Sd9KxRAZm3zez1Q=", "title": "Dependency Analyzer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dependencyanalyzer/0.6/dependencyanalyzer.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Analyzer+Plugin"}, "depgraph-view": {"buildDate": "Dec 01, 2012", "dependencies": [{"name": "copyartifact", "optional": true, "version": "1.18"}, {"name": "jquery", "optional": false, "version": "1.7.2-1"}, {"name": "parameterized-trigger", "optional": true, "version": "2.11"}, {"name": "jquery-ui", "optional": false, "version": "1.0.2"}], "developers": [{"developerId": "wolfs", "name": "Stefan Wolf"}], "excerpt": "Shows a dependency graph of the projects using graphviz. Requires a graphviz installation on the server.", "gav": "org.jenkins-ci.plugins:depgraph-view:0.10", "labels": ["report", "ui", "misc"], "name": "depgraph-view", "previousTimestamp": "2012-11-22T18:22:54.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-12-02T03:51:30.00Z", "requiredCore": "1.480", "scm": "github.com", "sha1": "o9SnofNhqhVQB29O1xkxc1EAunM=", "title": "Dependency Graph View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/depgraph-view/0.10/depgraph-view.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dependency+Graph+View+Plugin"}, "deploy": {"buildDate": "Jun 11, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "edobm", "name": "Meikel Bode"}], "excerpt": "This plugin takes a war/ear file and deploys that to a running remote application server at the end of a build", "gav": "org.jenkins-ci.plugins:deploy:1.9", "labels": ["upload"], "name": "deploy", "previousTimestamp": "2011-06-28T21:46:48.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-06-11T13:26:30.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "dyTzLnkvj4lR66qGOUjdYdqbIhE=", "title": "Deploy Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/deploy/1.9/deploy.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deploy+Plugin"}, "deploy-websphere": {"buildDate": "Jun 02, 2010", "dependencies": [{"name": "deploy", "optional": false, "version": "1.5"}], "developers": [{"developerId": "asanso", "name": "Antonio Sanso"}], "excerpt": "This plugin is an extension of the Deploy Plugin. It takes a war/ear file and deploys that to a running remote WebSphere Application Server at the end of a build.", "gav": "org.jvnet.hudson.plugins:deploy-websphere:1.0", "labels": ["upload"], "name": "deploy-websphere", "releaseTimestamp": "2010-06-03T02:39:10.00Z", "requiredCore": "1.343", "scm": "svn.dev.java.net", "sha1": "PAhTdc2WHUet0ZfHOj9DhcFeKK8=", "title": "Deploy WebSphere Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/deploy-websphere/1.0/deploy-websphere.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deploy+WebSphere+Plugin"}, "deployed-on-column": {"buildDate": "Oct 01, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin provides a column that acts as a container for build actions that record deployment of build artifacts to remote servers, such as deployment of web applications to servers, etc. The plugin also provides an extension point for other plugins to contribute their build actions. ", "gav": "org.jenkins-ci.plugins:deployed-on-column:1.2", "labels": [], "name": "deployed-on-column", "previousTimestamp": "2012-10-01T20:46:38.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-10-01T20:56:52.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "zFj51EM7rpomXameGCIeAl2H7B4=", "title": "Deployed on Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/deployed-on-column/1.2/deployed-on-column.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Deployed+on+Column+Plugin"}, "description-column-plugin": {"buildDate": "Aug 26, 2011", "dependencies": [], "developers": [{"developerId": "noirbizarre", "email": "noirbizarre+jenkins@gmail.com", "name": "Axel Haustant"}], "excerpt": "Provide job description column for views.", "gav": "org.jenkins-ci.plugins:description-column-plugin:1.3", "labels": ["listview-column"], "name": "description-column-plugin", "previousTimestamp": "2011-08-20T19:12:16.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-08-27T01:56:50.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "snbs4E4kUVEwJzqfbDqW23fM1Vg=", "title": "Description Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/description-column-plugin/1.3/description-column-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Description+Column+Plugin"}, "description-setter": {"buildDate": "Mar 26, 2011", "dependencies": [], "developers": [{"developerId": "huybrechts", "name": "Tom Huybrechts"}], "excerpt": "This plugin sets the description for each build, based upon a RegEx test of the build log file.", "gav": "org.jenkins-ci.plugins:description-setter:1.8", "labels": ["post-build"], "name": "description-setter", "previousTimestamp": "2011-01-01T03:55:32.00Z", "previousVersion": "1.7", "releaseTimestamp": "2011-03-27T02:12:18.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "1Yuo/8dwApgCXtrV1awg0LW7B9U=", "title": "Description Setter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/description-setter/1.8/description-setter.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Description+Setter+Plugin"}, "devstack": {"buildDate": "Sep 17, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}, {"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "tim"}], "excerpt": "Deploys Devstack Onto OpenStack", "gav": "org.jenkins-ci.ruby-plugins:devstack:0.0.6", "name": "devstack", "releaseTimestamp": "2012-09-18T02:14:48.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "6g2yigG70T2w6ZPnBHw/cGEGDgY=", "title": "DevStack Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/devstack/0.0.6/devstack.hpi", "version": "0.0.6"}, "dimensionsscm": {"buildDate": "Mar 09, 2011", "dependencies": [], "developers": [{"developerId": "TPayne", "email": "tpayne@serena.com", "name": "Tim Payne"}], "excerpt": "This plugin integrates Hudson with Dimensions, the Serena SCM solution. *{_}Please note - the maintainer for this plugin is no longer myself (TPayne), but is being changed. Until it has been updated, please forward any issues to Paul Caruana (pcaruana@serena.com)._{*} ", "gav": "org.jenkins-ci.plugins:dimensionsscm:0.8.1", "labels": ["post-build", "upload", "notifier", "scm"], "name": "dimensionsscm", "previousTimestamp": "2011-03-03T02:22:14.00Z", "previousVersion": "0.7.11", "releaseTimestamp": "2011-03-10T01:54:12.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "mJoMpT6n4z13TnSRgJOWOjEK/HY=", "title": "Dimensions Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dimensionsscm/0.8.1/dimensionsscm.hpi", "version": "0.8.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Dimensions+Plugin"}, "disk-usage": {"buildDate": "Sep 04, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin records disk usage. ", "gav": "org.jenkins-ci.plugins:disk-usage:0.18", "labels": ["report"], "name": "disk-usage", "previousTimestamp": "2012-05-24T14:51:34.00Z", "previousVersion": "0.17", "releaseTimestamp": "2012-09-04T21:37:26.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "jYREXyuRByP47xXGVp+p7mT+Qfw=", "title": "Disk Usage Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/disk-usage/0.18/disk-usage.hpi", "version": "0.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Disk+Usage+Plugin"}, "display-upstream-changes": {"buildDate": "Mar 29, 2012", "dependencies": [], "developers": [{"developerId": "rpetti", "name": "Rob Petti"}], "excerpt": "Displays all upstream changes on a build's summary page.", "gav": "org.jvnet.hudson.plugins:display-upstream-changes:0.1", "labels": [], "name": "display-upstream-changes", "releaseTimestamp": "2012-03-29T18:04:46.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "jBpY0c6s+JYHa/5ZUgfA+pSjvBA=", "title": "Display Upstream Changes Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/display-upstream-changes/0.1/display-upstream-changes.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Display+Upstream+Changes+Plugin"}, "distTest": {"buildDate": "Jan 20, 2011", "dependencies": [], "developers": [{"developerId": "mnovak", "email": "novak.miroslav95@gmail.com", "name": "Miroslav Novak"}], "excerpt": "This plugin allows distribute JUnit tests to all slaves in a specified label for a project.", "gav": "org.jvnet.hudson.plugins:distTest:1.0", "labels": ["builder"], "name": "distTest", "releaseTimestamp": "2011-01-20T16:20:14.00Z", "requiredCore": "1.350", "scm": "svn.java.net", "sha1": "khlRX3YLAm9vVzflVYoZM+YOzj4=", "title": "DistTest Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/distTest/1.0/distTest.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DistTest+Plugin"}, "distfork": {"buildDate": "Feb 25, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "Turns a Jenkins cluster into a general purpose batch job execution environment through an SSH-like CLI.", "gav": "org.jenkins-ci.plugins:distfork:1.3", "labels": ["cluster", "cli"], "name": "distfork", "previousTimestamp": "2011-02-22T11:50:32.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-02-25T21:40:32.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "B4MetviGPmQnbROeeKQVHQiaenI=", "title": "DistFork Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/distfork/1.3/distfork.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DistFork+Plugin"}, "doclinks": {"buildDate": "Oct 19, 2011", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "1.319"}], "developers": [{"developerId": "jesse"}], "excerpt": "This plugin allows you to publish your documents that are created in the build steps.", "gav": "org.jenkinsci.plugins:doclinks:0.5", "labels": ["ui", "post-build"], "name": "doclinks", "previousTimestamp": "2011-01-15T18:02:06.00Z", "previousVersion": "0.4", "releaseTimestamp": "2011-10-19T13:17:14.00Z", "requiredCore": "1.319", "scm": "github.com", "sha1": "2W+ANdUpsnfiOEQIymMk3f4dHw4=", "title": "DocLinks Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/doclinks/0.5/doclinks.hpi", "version": "0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DocLinks+Plugin"}, "dos-trigger": {"buildDate": "Aug 20, 2011", "dependencies": [], "developers": [{"developerId": "pellet", "email": "benpettit@digimulti.com", "name": "Ben Pettit"}, {"developerId": "tombrus", "email": "tombrus@gmail.com", "name": "Tom Brus"}], "excerpt": "This plugin allows to trigger a build with a DOS script.", "gav": "org.jenkins-ci.plugins:dos-trigger:1.23", "labels": ["trigger"], "name": "dos-trigger", "previousTimestamp": "2011-06-02T21:41:26.00Z", "previousVersion": "1.21", "releaseTimestamp": "2011-08-20T14:45:52.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "snUuDMD0Djp+KIkiskFF5DK5qkY=", "title": "DOS Trigger", "url": "http://updates.jenkins-ci.org/download/plugins/dos-trigger/1.23/dos-trigger.hpi", "version": "1.23", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DOS+Trigger"}, "downstream-buildview": {"buildDate": "Aug 02, 2012", "dependencies": [], "developers": [{"developerId": "shinodkm", "email": "shinodkm@gmail.com", "name": "Shinod Mohandas"}, {"email": "rajesh.nair.mit@gmail.com", "name": "Rajesh Nair"}], "excerpt": "This plugin allows you to view the full status all the downstream builds so that we can graphically see that everything for this build has been completed successfully.", "gav": "org.jvnet.hudson.plugins:downstream-buildview:1.8", "labels": ["report", "ui", "misc"], "name": "downstream-buildview", "previousTimestamp": "2012-04-03T01:50:50.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-08-02T16:28:06.00Z", "requiredCore": "1.424.3", "scm": "github.com", "sha1": "ZQLMDEhMEelhf2v2zZop4DNsHFc=", "title": "Downstream buildview plugin", "url": "http://updates.jenkins-ci.org/download/plugins/downstream-buildview/1.8/downstream-buildview.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Downstream+buildview+plugin"}, "downstream-ext": {"buildDate": "Feb 09, 2012", "dependencies": [], "developers": [{"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}], "excerpt": "This plugin supports extended configuration for triggering downstream builds: * trigger build only if downstream job has SCM changes * trigger build if upstream build result is better/equal/worse than any given result (SUCCESS, UNSTABLE, FAILURE, ABORTED) * for Matrix (alias multi-configuration) jobs you can decide which part of the job should trigger the downstream job: parent only, configurations only or both ", "gav": "org.jenkins-ci.plugins:downstream-ext:1.7", "labels": ["trigger"], "name": "downstream-ext", "previousTimestamp": "2010-03-28T17:08:36.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-02-09T21:51:36.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "eg2/YiPf3qXLYoRZGfoK5oDHB1o=", "title": "Downstream-Ext Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/downstream-ext/1.7/downstream-ext.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Downstream-Ext+Plugin"}, "doxygen": {"buildDate": "Apr 27, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin publishes HTML reports generated by the Doxygen tool. ", "gav": "org.jenkins-ci.plugins:doxygen:0.11", "labels": ["report", "maven"], "name": "doxygen", "previousTimestamp": "2012-02-27T06:57:46.00Z", "previousVersion": "0.10", "releaseTimestamp": "2012-04-27T04:52:16.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "UScLSyRpdoOXgulkNUVXpn+NVfg=", "title": "Doxygen Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/doxygen/0.11/doxygen.hpi", "version": "0.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Doxygen+Plugin"}, "drmemory-plugin": {"buildDate": "Feb 25, 2012", "dependencies": [], "developers": [{"developerId": "wolfgarnet", "email": "coolers@praqma.net", "name": "Christian Wolfgang"}], "excerpt": "Integrates Dr. Memory with Jenkins", "gav": "net.praqma:drmemory-plugin:0.1.1", "labels": ["report", "builder", "post-build"], "name": "drmemory-plugin", "previousTimestamp": "2012-02-24T10:30:14.00Z", "previousVersion": "0.1.0", "releaseTimestamp": "2012-02-25T12:34:06.00Z", "requiredCore": "1.450", "scm": "github.com", "sha1": "o8Kb8rqKP2IXH5k1dsfc0oLY5zg=", "title": "drmemory plugin", "url": "http://updates.jenkins-ci.org/download/plugins/drmemory-plugin/0.1.1/drmemory-plugin.hpi", "version": "0.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/drmemory+plugin"}, "dropdown-viewstabbar-plugin": {"buildDate": "Jul 22, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin provides an alternate rendering of the Views bar which runs along the top of all views. This plugin is useful for instances which have a very large number of views and want a compact rendering.", "gav": "org.jenkins-ci.plugins:dropdown-viewstabbar-plugin:1.6", "labels": ["misc", "ui"], "name": "dropdown-viewstabbar-plugin", "previousTimestamp": "2012-04-28T00:43:22.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-07-22T22:19:06.00Z", "requiredCore": "1.455", "scm": "github.com", "sha1": "yMgx12Xj5P+kmzu8rf5hZBU2OC4=", "title": "DropDown ViewsTabBar Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dropdown-viewstabbar-plugin/1.6/dropdown-viewstabbar-plugin.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DropDown+ViewsTabBar+Plugin"}, "dry": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin generates the trend report for duplicate code checkers like CPD or Simian. ", "gav": "org.jvnet.hudson.plugins:dry:2.33", "labels": ["maven", "report"], "name": "dry", "previousTimestamp": "2012-09-04T14:57:46.00Z", "previousVersion": "2.32", "releaseTimestamp": "2012-10-05T15:51:54.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "w+LArI2XClTzB0XUDam57c+qhLA=", "title": "DRY Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dry/2.33/dry.hpi", "version": "2.33", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DRY+Plugin"}, "dry-run": {"buildDate": "Sep 16, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.410"}], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plug-in makes it possible to show all the job tasks (builders, publishers, ...) to be executed as part of a build job. ", "gav": "org.jenkins-ci.plugins:dry-run:0.9", "labels": [], "name": "dry-run", "previousTimestamp": "2012-02-06T22:21:26.00Z", "previousVersion": "0.8", "releaseTimestamp": "2012-09-17T02:42:54.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "4BuqvLI+ZnTPD/TKFZvglOTOcr8=", "title": "DryRun Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dry-run/0.9/dry-run.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DryRun+Plugin"}, "dtkit": {"buildDate": "Dec 08, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to convert outputs from the metric tools execution into unified outputs.", "gav": "org.jenkins-ci.plugins:dtkit:1.9", "labels": ["builder"], "name": "dtkit", "previousTimestamp": "2012-11-27T02:50:18.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-12-08T15:25:52.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "wq8cNe3yYv/17dv1iT63gHq0YCc=", "title": "DTKit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dtkit/1.9/dtkit.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DTKit+Plugin"}, "dumpinfo-buildwrapper-plugin": {"buildDate": "Jan 30, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Dumps vital information about the Hudson instance into the job log. This plugin is useful for historical and audit purposes, where you can see what versions of Hudson, slaves, and plugins were around at the time of a build.", "gav": "org.jvnet.hudson.plugins:dumpinfo-buildwrapper-plugin:1.1", "labels": ["buildwrapper", "misc"], "name": "dumpinfo-buildwrapper-plugin", "previousTimestamp": "2011-01-28T01:02:24.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-01-30T14:41:14.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "92iZEr3drLGGGRUKgrRjVdExraQ=", "title": "DumpInfo BuildWrapper Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dumpinfo-buildwrapper-plugin/1.1/dumpinfo-buildwrapper-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DumpInfo+BuildWrapper+Plugin"}, "dynamic-axis": {"buildDate": "Nov 13, 2012", "dependencies": [], "developers": [{"developerId": "kckane", "email": "kckane@silvermaplesolutions.ca", "name": "Kevin Kane"}], "excerpt": "This plugin allows you to define a matrix build axis that is dynamically populated from an environment variable: ", "gav": "org.jenkins-ci.plugins:dynamic-axis:1.0.1", "labels": ["buildwrapper"], "name": "dynamic-axis", "releaseTimestamp": "2012-11-13T20:41:20.00Z", "requiredCore": "1.477", "scm": "github.com", "sha1": "iPcyG43BojcgM4oSNayqxfIbvnM=", "title": "DynamicAxis Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/dynamic-axis/1.0.1/dynamic-axis.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/DynamicAxis+Plugin"}, "dynamicparameter": {"buildDate": "Oct 01, 2012", "dependencies": [{"name": "scriptler", "optional": false, "version": "2.2"}, {"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "dimitarp", "name": "Dimitar Popov"}, {"developerId": "baranowski", "name": "Christian Baranowski"}], "excerpt": "This plugin allows dynamic generation of default build parameter values.", "gav": "com.seitenbau.jenkins.plugins:dynamicparameter:0.2.0", "labels": ["parameter"], "name": "dynamicparameter", "previousTimestamp": "2012-04-03T20:52:50.00Z", "previousVersion": "0.1.1", "releaseTimestamp": "2012-10-01T21:05:18.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "PvBopa8m/P/nVU6N75KiDVj3kOU=", "title": "Jenkins Dynamic Parameter Plug-in", "url": "http://updates.jenkins-ci.org/download/plugins/dynamicparameter/0.2.0/dynamicparameter.hpi", "version": "0.2.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Dynamic+Parameter+Plug-in"}, "easyant": {"buildDate": "Jan 31, 2010", "dependencies": [], "developers": [{"developerId": "jboudart", "name": "Jean Louis Boudart"}], "excerpt": "This plugin allows Hudson to invoke EasyAnt build script as the main build step.", "gav": "org.jvnet.hudson.plugins:easyant:1.1", "labels": ["builder"], "name": "easyant", "previousTimestamp": "2009-03-30T12:22:08.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-01-31T13:49:56.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "w2JIOKAlcG3bQIMrSJJXKtgvddM=", "title": "EasyAnt Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/easyant/1.1/easyant.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EasyAnt+Plugin"}, "ec2": {"buildDate": "Sep 12, 2012", "dependencies": [], "developers": [{"developerId": "francisu", "email": "francis@oaklandsoftware.com", "name": "Francis Upton IV"}, {"developerId": "kohsuke", "email": "kkawaguchi@cloudbees.com", "name": "Kohsuke Kawaguchi"}], "excerpt": "Allow Jenkins to start slaves on EC2 or Ubuntu Enterprise Cloud (Eucalyptus) on demand, and kill them as they get unused.", "gav": "org.jenkins-ci.plugins:ec2:1.17", "labels": ["cluster"], "name": "ec2", "previousTimestamp": "2012-05-26T18:19:16.00Z", "previousVersion": "1.16", "releaseTimestamp": "2012-09-12T21:34:08.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "5tAQN8tgmW2pHPDXEyxZMy0BRXI=", "title": "Amazon EC2 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ec2/1.17/ec2.hpi", "version": "1.17", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+EC2+Plugin"}, "eclipse-update-site": {"buildDate": "Sep 27, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This library plugin combines Eclipse update sites from all the installed plugins and expose it as a single update site.", "gav": "org.jenkins-ci.plugins:eclipse-update-site:1.2", "labels": ["library"], "name": "eclipse-update-site", "previousTimestamp": "2012-09-11T22:28:24.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-09-27T19:54:44.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "rW1t3oyaM3X6hSUMXUT4lxoE3oE=", "title": "Eclipse Update Site Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/eclipse-update-site/1.2/eclipse-update-site.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Eclipse+Update+Site+Plugin"}, "eggplant-plugin": {"buildDate": "Nov 05, 2012", "dependencies": [], "developers": [{"developerId": "jonathanosx", "email": "jonathan.gillaspie@testplant.com", "name": "Jonathan Gillaspie"}, {"developerId": "allen_fisher", "email": "allen.fisher@gmail.com", "name": "Allen Fisher"}, {"developerId": "ryantestplant", "email": "ryan.daubert@testplant.com", "name": "Ryan Daubert"}], "excerpt": "This plugin calls eggPlant scripts as a Jenkins Build Action and returns the results to Jenkins for review or further processing.", "gav": "org.jenkins-ci.plugins:eggplant-plugin:1.3", "labels": ["builder"], "name": "eggplant-plugin", "previousTimestamp": "2012-02-02T00:40:00.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-11-05T17:26:46.00Z", "requiredCore": "1.427", "scm": "github.com", "sha1": "2bj5sgDzq/D4qzWj8DbUECgbPV0=", "title": "eggPlant-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/eggplant-plugin/1.3/eggplant-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/eggPlant-plugin"}, "email-ext": {"buildDate": "Jul 20, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "analysis-core", "optional": true, "version": "1.41"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "maven-plugin", "optional": false, "version": "1.447"}], "developers": [{"developerId": "ashlux", "email": "ashlux@gmail.com", "name": "Ash Lux"}, {"developerId": "kdsweeney", "name": "Kyle Sweeney"}, {"developerId": "krwalker", "email": "krwalker@stellarscience.com", "name": "K. R. Walker"}, {"developerId": "ssogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}, {"developerId": "slide", "email": "slide.o.mix@gmail.com", "name": "Alex Earl"}], "excerpt": "This plugin allows you to configure every aspect of email notifications. You can customize when an email is sent, who should receive it, and what the email says.", "gav": "org.jenkins-ci.plugins:email-ext:2.24.1", "labels": ["notifier"], "name": "email-ext", "previousTimestamp": "2012-06-16T04:13:26.00Z", "previousVersion": "2.22", "releaseTimestamp": "2012-07-20T12:21:42.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "XfuDrhVrt1O4FhyEWjurX93I1Bg=", "title": "Email-ext plugin", "url": "http://updates.jenkins-ci.org/download/plugins/email-ext/2.24.1/email-ext.hpi", "version": "2.24.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin"}, "embeddable-build-status": {"buildDate": "May 09, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin allows Jenkins to expose the current status of your build as an image in a fixed URL. You can put this URL into other sites (such as GitHub README) so that people can see the current state of the build. ", "gav": "org.jenkins-ci.plugins:embeddable-build-status:1.0", "labels": ["ui"], "name": "embeddable-build-status", "releaseTimestamp": "2012-05-09T15:02:30.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "1L4k6nZ6RFUNCsmcJRulpAAoRZ8=", "title": "Embeddable Build Status Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/embeddable-build-status/1.0/embeddable-build-status.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Embeddable+Build+Status+Plugin"}, "emma": {"buildDate": "Jul 05, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "dashboard-view", "optional": true, "version": "2.1"}, {"name": "maven-plugin", "optional": false, "version": "1.447"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "stephenconnolly", "name": "Stephen Connolly"}, {"developerId": "manolo", "email": "manolo@apache.org", "name": "Manuel Carrasco Monino"}], "excerpt": "This plugin allows you to capture code coverage report from Emma. Jenkins will generate the trend report of coverage. ", "gav": "org.jenkins-ci.plugins:emma:1.29", "labels": ["report"], "name": "emma", "previousTimestamp": "2012-05-22T02:42:12.00Z", "previousVersion": "1.28", "releaseTimestamp": "2012-07-05T19:49:52.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "hia/Z09EJoxlfEOqQ3mi1QAVuo0=", "title": "Emma Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/emma/1.29/emma.hpi", "version": "1.29", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emma+Plugin"}, "emmacoveragecolumn": {"buildDate": "Oct 10, 2011", "dependencies": [{"name": "emma", "optional": false, "version": "1.25"}], "developers": [{"developerId": "danebert", "email": "mathin@mathin.com", "name": "Dan Ebert"}], "excerpt": "Allows you to add a column that displays line coverage percentages based on EMMA.", "gav": "org.jenkins-ci.plugins:emmacoveragecolumn:0.0.4", "labels": ["listview-column"], "name": "emmacoveragecolumn", "previousTimestamp": "2011-10-07T20:51:46.00Z", "previousVersion": "0.0.3", "releaseTimestamp": "2011-10-10T17:39:24.00Z", "requiredCore": "1.434", "scm": "github.com", "sha1": "2fbw7e2SKaDM3AwyM+vqQ9Vczmc=", "title": "Emma Coverage Column", "url": "http://updates.jenkins-ci.org/download/plugins/emmacoveragecolumn/0.0.4/emmacoveragecolumn.hpi", "version": "0.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emma+Coverage+Column"}, "emotional-hudson": {"buildDate": "Nov 19, 2011", "dependencies": [], "developers": [{"developerId": "masanobuimai", "name": "Masanobu Imai"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This funny plugin changes the expression of Mr. Hudson in the background when your builds fail.", "gav": "org.jvnet.hudson.plugins:emotional-hudson:1.3", "labels": ["ui"], "name": "emotional-hudson", "previousTimestamp": "2010-04-16T20:32:40.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-11-20T01:45:42.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "S9yHTNQquKBhEhCV20aSa8piIX8=", "title": "Emotional Hudson Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/emotional-hudson/1.3/emotional-hudson.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emotional+Hudson+Plugin"}, "emotional-jenkins-plugin": {"buildDate": "Aug 06, 2011", "dependencies": [], "developers": [{"developerId": "masanobuimai", "name": "Masanobu Imai"}], "excerpt": "This funny plugin changes the expression of Mr. Jenkins in the background when your builds fail.", "gav": "org.jenkins-ci.plugins:emotional-jenkins-plugin:1.1", "labels": ["ui"], "name": "emotional-jenkins-plugin", "releaseTimestamp": "2011-08-07T02:30:52.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "LsLBtxsOKA0RF/XA1m/alYBDkjg=", "title": "Emotional Jenkins Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/emotional-jenkins-plugin/1.1/emotional-jenkins-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Emotional+Jenkins+Plugin"}, "envfile": {"buildDate": "Aug 05, 2011", "dependencies": [], "developers": [{"developerId": "ajoajoajo", "email": "ajoajoajo@gmail.com", "name": "Anders Johansson"}], "excerpt": "This plugin enables you to set environment variables via a file. The file's format must be the standard Java property file format. Superseded by the [EnvInject Plugin]? The property file is always retrieved from the file system of the Jenkins master node, even in distributed setups with slave nodes. You can reference already defined environment variables both to specify the path to the property file, in a job's configuration, and in property values, in the property file.", "gav": "org.jenkins-ci.plugins:envfile:1.2", "labels": ["buildwrapper", "envfile"], "name": "envfile", "previousTimestamp": "2010-10-20T14:59:24.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-08-05T19:16:30.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "4sV96798yzxtkfoYEiW6EdEYqgg=", "title": "Envfile Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/envfile/1.2/envfile.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Envfile+Plugin"}, "envinject": {"buildDate": "Nov 02, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.444"}, {"name": "ivy", "optional": true, "version": "1.21"}, {"name": "javadoc", "optional": false, "version": "1.0"}], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to have an isolated environment for your jobs.", "gav": "org.jenkins-ci.plugins:envinject:1.73", "labels": ["buildwrapper", "builder"], "name": "envinject", "previousTimestamp": "2012-09-23T20:59:26.00Z", "previousVersion": "1.72", "releaseTimestamp": "2012-11-03T02:10:44.00Z", "requiredCore": "1.444", "scm": "github.com", "sha1": "wwYVbnSsvH2CNRo5HDBW8ZUSY74=", "title": "EnvInject Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/envinject/1.73/envinject.hpi", "version": "1.73", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin"}, "environment-script": {"buildDate": "Aug 09, 2012", "dependencies": [], "developers": [{"developerId": "jorgenpt", "email": "jorgen.tjerno@mylookout.com", "name": "Jørgen P. Tjernø"}], "excerpt": "Allows you to run a script before each build that generates environment variables for it.", "gav": "com.lookout.jenkins:environment-script:1.1.2", "labels": ["buildwrapper"], "name": "environment-script", "previousTimestamp": "2012-08-09T01:13:00.00Z", "previousVersion": "1.1.1", "releaseTimestamp": "2012-08-09T16:03:36.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "Ybq+a0eRvgo+pGq0rsZz/LSrLws=", "title": "Environment Script Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/environment-script/1.1.2/environment-script.hpi", "version": "1.1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Environment+Script+Plugin"}, "escaped-markup-plugin": {"buildDate": "Apr 23, 2011", "dependencies": [], "developers": [{"developerId": "ssogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin escapes the description of project, user, view, and build to prevent from XSS. ", "gav": "org.jenkins-ci.plugins:escaped-markup-plugin:0.1", "labels": ["ui"], "name": "escaped-markup-plugin", "releaseTimestamp": "2011-04-23T14:16:40.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "+Ze69qQ2ZCZjQbsYAmz0VQh08Co=", "title": "Escaped Markup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/escaped-markup-plugin/0.1/escaped-markup-plugin.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Escaped+Markup+Plugin"}, "excludeMatrixParent": {"buildDate": "Jun 08, 2011", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin exclude flyweight task to be run on given slave. ", "gav": "hudson.plugins.excludeMatrixParent:excludeMatrixParent:1.1", "labels": ["slaves"], "name": "excludeMatrixParent", "previousTimestamp": "2011-02-10T19:23:42.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-06-08T14:23:24.00Z", "requiredCore": "1.391", "scm": "github.com", "sha1": "oW8+KSu5GgLQQReeFCMUzdEfKHQ=", "title": "Exclude flyweight tasks", "url": "http://updates.jenkins-ci.org/download/plugins/excludeMatrixParent/1.1/excludeMatrixParent.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclude+flyweight+tasks"}, "exclusive-execution": {"buildDate": "Jul 31, 2011", "dependencies": [], "developers": [{"developerId": "mambu", "email": "marco.ambu+jenkins@gmail.com", "name": "Marco Ambu"}, {"developerId": "sata_", "email": "sam@tavakoli.se", "name": "Sam Tavakoli"}], "excerpt": "Allows a job to be executed when no other jobs are running.", "gav": "org.jenkins-ci.plugins:exclusive-execution:0.7", "labels": ["buildwrapper"], "name": "exclusive-execution", "previousTimestamp": "2011-02-25T22:27:36.00Z", "previousVersion": "0.6", "releaseTimestamp": "2011-07-31T19:37:56.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "i11F5+JFot2crUuXylOt8lqfhBw=", "title": "Exclusive Execution Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/exclusive-execution/0.7/exclusive-execution.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugin"}, "extended-choice-parameter": {"buildDate": "Jan 10, 2012", "dependencies": [], "developers": [{"developerId": "vimil", "name": "Vimil Saju"}], "excerpt": "Adds extended functionality to Choice parameter.", "gav": "org.jvnet.hudson.plugins:extended-choice-parameter:0.5", "labels": ["parameter"], "name": "extended-choice-parameter", "previousTimestamp": "2010-10-13T19:08:36.00Z", "previousVersion": "0.4", "releaseTimestamp": "2012-01-10T21:03:44.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "K6CoJJCg4twG+hl3pcPUtMHDfJQ=", "title": "Extended Choice Parameter plugin", "url": "http://updates.jenkins-ci.org/download/plugins/extended-choice-parameter/0.5/extended-choice-parameter.hpi", "version": "0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extended+Choice+Parameter+plugin"}, "extended-read-permission": {"buildDate": "Oct 05, 2009", "dependencies": [], "developers": [{"developerId": "dty", "name": "Dean Yu"}], "excerpt": "This plugin enables the Extended Read permission in Hudson 1.324 and newer. ", "gav": "org.jvnet.hudson.plugins:extended-read-permission:1.0", "labels": ["user"], "name": "extended-read-permission", "releaseTimestamp": "2009-10-05T20:45:22.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "8HrQOxL0G4XTY9YkLXnutPCnyYs=", "title": "Extended Read Permission Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/extended-read-permission/1.0/extended-read-permission.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extended+Read+Permission+Plugin"}, "extension-filter": {"buildDate": "Oct 25, 2012", "dependencies": [], "developers": [{"developerId": "ndeloof", "email": "nicolas.deloof@gmail.com", "name": "Nicolas De Loof"}], "excerpt": "This plugin allows to filter features available on a Jenkins instance by disabling some Extensions/Descriptors. ", "gav": "org.jenkins-ci.plugins:extension-filter:1.0", "labels": [], "name": "extension-filter", "releaseTimestamp": "2012-10-25T18:26:18.00Z", "requiredCore": "1.472", "scm": "github.com", "sha1": "LddTtmowN9YDTbf8Cr6v9r+IAss=", "title": "Extension Filter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/extension-filter/1.0/extension-filter.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extension+Filter+Plugin"}, "external-monitor-job": {"buildDate": "Aug 06, 2012", "dependencies": [], "developers": [{"developerId": "jglick"}], "excerpt": "Adds the ability to monitor the result of externally executed jobs.", "gav": "org.jenkins-ci.plugins:external-monitor-job:1.1", "labels": ["misc", "external"], "name": "external-monitor-job", "previousTimestamp": "2012-06-06T01:04:10.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-08-07T00:54:36.00Z", "requiredCore": "1.468", "scm": "github.com", "sha1": "k0RSxsS9r5EgOH5Qc7d6wUPPKy0=", "title": "Monitoring external jobs", "url": "http://updates.jenkins-ci.org/download/plugins/external-monitor-job/1.1/external-monitor-job.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Monitoring+external+jobs"}, "externalresource-dispatcher": {"buildDate": "Nov 22, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}, {"name": "metadata", "optional": false, "version": "1.0b"}], "developers": [{"developerId": "rsandell", "email": "robert.sandell@sonymobile.com", "name": "Robert Sandell"}, {"developerId": "t_westling", "email": "tomas.westling@sonymobile.com", "name": "Tomas Westling"}], "excerpt": "This plugin adds support for external resources in Jenkins. An external resource is something external attached to a Jenkins slave and can be locked by a build, which thus gets exclusive access to it, then released after the build is done. Examples of external resources are phones, printers and USB christmas trees. ", "gav": "com.sonyericsson.jenkins.plugins.externalresource:externalresource-dispatcher:1.0b", "labels": ["slaves", "cli", "android"], "name": "externalresource-dispatcher", "releaseTimestamp": "2012-11-22T22:21:32.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "CFtzp803WnPc9vVSmrooKp02/+E=", "title": "External Resource Dispatcher", "url": "http://updates.jenkins-ci.org/download/plugins/externalresource-dispatcher/1.0b/externalresource-dispatcher.hpi", "version": "1.0b", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/External+Resource+Dispatcher"}, "extra-columns": {"buildDate": "Oct 17, 2012", "dependencies": [], "developers": [{"developerId": "fredg", "name": "Fred G."}], "excerpt": "This is a general listview-column plugin that currently contains the following columns: Test Result, Configure Project button, Disable/Enable Project button, Project Description, Build Description, SCM Type.", "gav": "org.jenkins-ci.plugins:extra-columns:1.6", "labels": ["listview-column"], "name": "extra-columns", "previousTimestamp": "2012-06-27T06:07:54.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-10-17T05:00:50.00Z", "requiredCore": "1.417", "scm": "github.com", "sha1": "bLCn+Jad3UTA15hlDRotB/crBsE=", "title": "Extra Columns Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/extra-columns/1.6/extra-columns.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extra+Columns+Plugin"}, "ezwall": {"buildDate": "Feb 26, 2012", "dependencies": [], "developers": [{"developerId": "noirbizarre", "email": "noirbizarre+jenkins@gmail.com", "name": "Axel Haustant"}], "excerpt": "Add a button to display a fullscreen buildwall on each view.", "gav": "org.jenkins-ci.plugins:ezwall:0.2", "labels": ["ui", "report"], "name": "ezwall", "previousTimestamp": "2012-02-18T23:24:18.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-02-26T10:30:24.00Z", "requiredCore": "1.440", "scm": "github.com", "sha1": "j+3oXCLJOQlDKbX8znqAZ6QUlzg=", "title": "EzWall Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ezwall/0.2/ezwall.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/EzWall+Plugin"}, "fail-the-build-plugin": {"buildDate": "Jul 18, 2011", "compatibleSinceVersion": "0.3", "dependencies": [], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Set or change the build result to test job configurations - notifiers, publishers, promotions, build pipelines, etc. ", "gav": "org.jenkins-ci.plugins:fail-the-build-plugin:1.0", "labels": ["builder"], "name": "fail-the-build-plugin", "releaseTimestamp": "2011-07-18T23:19:24.00Z", "requiredCore": "1.396", "scm": "github.com", "sha1": "0MU2dYZlY2ppCyoz+CYlAFiJ5mE=", "title": "Fail The Build Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/fail-the-build-plugin/1.0/fail-the-build-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fail+The+Build+Plugin"}, "favorite": {"buildDate": "Sep 11, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "lshatzer", "email": "larrys@gmail.com", "name": "Larry Shatzer, Jr."}], "excerpt": "This plugin allows you to mark a job a favorite.", "gav": "org.jvnet.hudson.plugins:favorite:1.13", "labels": ["user", "misc", "ui", "listview-column"], "name": "favorite", "previousTimestamp": "2012-09-10T15:25:06.00Z", "previousVersion": "1.12", "releaseTimestamp": "2012-09-11T12:22:14.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "iUEzpnHrgQPBcrpsWhtrWB9c72g=", "title": "Favorite Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/favorite/1.13/favorite.hpi", "version": "1.13", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Favorite+Plugin"}, "favorite-view": {"buildDate": "Feb 07, 2012", "dependencies": [], "developers": [{"developerId": "tom"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:favorite-view:1.0", "labels": ["ui"], "name": "favorite-view", "releaseTimestamp": "2012-02-08T00:16:38.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "lWM1FpD9J93rASFcHQIaoI8yKnc=", "title": "Favorite View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/favorite-view/1.0/favorite-view.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Favorite+View+Plugin"}, "file-leak-detector": {"buildDate": "Apr 03, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "Runtime diagnosis tool for \"too many open files\" problem.", "gav": "com.cloudbees.jenkins.plugins:file-leak-detector:1.2", "labels": ["misc"], "name": "file-leak-detector", "previousTimestamp": "2012-04-03T14:51:56.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-04-03T16:53:24.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "luVIulwtAULMdmHMROgD1z4Eozk=", "title": "File Leak Detector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/file-leak-detector/1.2/file-leak-detector.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/File+Leak+Detector+Plugin"}, "files-found-trigger": {"buildDate": "Aug 17, 2011", "dependencies": [], "developers": [{"developerId": "stevengbrown", "email": "StevenGBrown@gmail.com", "name": "Steven Brown"}], "excerpt": "Build trigger that polls one or more directories and starts a build if certain files are found within those directories. ", "gav": "org.jenkins-ci.plugins:files-found-trigger:1.3", "labels": ["trigger"], "name": "files-found-trigger", "previousTimestamp": "2011-03-07T01:52:44.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-08-18T02:38:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "odoxgB/WNvTAsxzx25GDiKlCDS0=", "title": "Files Found Trigger", "url": "http://updates.jenkins-ci.org/download/plugins/files-found-trigger/1.3/files-found-trigger.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Files+Found+Trigger"}, "filesystem_scm": {"buildDate": "Dec 05, 2011", "dependencies": [], "developers": [{"developerId": "samngms", "email": "samngms@yahoo.com", "name": "Sam NG"}, {"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}], "excerpt": "Use File System as SCM.", "gav": "hudson.plugins.filesystem_scm:filesystem_scm:1.20", "labels": ["scm"], "name": "filesystem_scm", "previousTimestamp": "2011-04-02T16:14:38.00Z", "previousVersion": "1.10", "releaseTimestamp": "2011-12-06T00:49:42.00Z", "requiredCore": "1.398", "scm": "svn.jenkins-ci.org", "sha1": "cOAR5kIPaGDd6prDZ8DBFCY9zzA=", "title": "File System SCM", "url": "http://updates.jenkins-ci.org/download/plugins/filesystem_scm/1.20/filesystem_scm.hpi", "version": "1.20", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/File+System+SCM"}, "findbugs": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin generates the trend report for FindBugs, an open source program which uses static analysis to look for bugs in Java code.  ", "gav": "org.jvnet.hudson.plugins:findbugs:4.45", "labels": ["maven", "report"], "name": "findbugs", "previousTimestamp": "2012-09-04T15:09:10.00Z", "previousVersion": "4.44", "releaseTimestamp": "2012-10-05T15:55:50.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "2eXdJciGAFQeuL49+hmmdsXmrnk=", "title": "FindBugs Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/findbugs/4.45/findbugs.hpi", "version": "4.45", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FindBugs+Plugin"}, "fitnesse": {"buildDate": "Dec 10, 2012", "dependencies": [], "developers": [{"developerId": "prime8", "email": "tim bacon @at@ gmail dotcom", "name": "timbacon"}], "excerpt": "This plugin can be used to both execute and report on Fitnesse tests so that they can be integrated into a Jenkins build.", "gav": "org.jenkins-ci.plugins:fitnesse:1.8", "labels": ["report", "builder"], "name": "fitnesse", "previousTimestamp": "2012-05-18T18:15:20.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-12-10T05:13:18.00Z", "requiredCore": "1.401", "scm": "github.com", "sha1": "zxwJRSrQjbe//gcL1CD30ps39k8=", "title": "Fitnesse Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/fitnesse/1.8/fitnesse.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fitnesse+Plugin"}, "flashlog-plugin": {"buildDate": "Jan 06, 2011", "dependencies": [], "developers": [{"developerId": "ddragosd", "email": "ddragosd@gmail.com", "name": "Dragos Dascalita Haut"}], "excerpt": "Captures Adobe Flash Player logs during a Hudson build in order to save them as build artifacts. Useful to debug unit tests or integration tests.", "gav": "org.jvnet.hudson.plugins:flashlog-plugin:1.0", "labels": ["report"], "name": "flashlog-plugin", "releaseTimestamp": "2011-01-06T17:07:52.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "F4KFOvCOMEx+gNvZ1hb0UY5aBas=", "title": "FlashLog Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/flashlog-plugin/1.0/flashlog-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FlashLog+Plugin"}, "flexible-publish": {"buildDate": "Jul 03, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "run-condition", "optional": false, "version": "0.7"}], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Use a publisher more than once. Select the execution order of the publishers. Use run conditions to decide whether a publisher should be run. ", "gav": "org.jenkins-ci.plugins:flexible-publish:0.10", "labels": ["post-build"], "name": "flexible-publish", "previousTimestamp": "2012-02-15T02:09:28.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-07-04T01:06:14.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "rdRaAiqUyPltuga3zuYtbwPn2VI=", "title": "Flexible Publish Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/flexible-publish/0.10/flexible-publish.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Flexible+Publish+Plugin"}, "flexteam": {"buildDate": "Nov 03, 2011", "dependencies": [], "developers": [{"developerId": "mindless", "email": "alan.harder@gmail.com", "name": "Alan Harder"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "", "gav": "org.jvnet.hudson.plugins:flexteam:1.1", "name": "flexteam", "releaseTimestamp": "2011-11-03T18:58:46.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "C9cBIUV6zcpcsSPLFg0lXbzEebc=", "title": "FlexTeam Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/flexteam/1.1/flexteam.hpi", "version": "1.1"}, "fogbugz": {"buildDate": "Jan 19, 2012", "dependencies": [], "developers": [{"developerId": "pliljenberg", "email": "pliljenberg@gmail.com", "name": "Peter Liljenberg"}], "excerpt": "This plugin integrates FogBugz with Jenkins.", "gav": "org.jenkins-ci.plugins:fogbugz:1.0", "labels": ["external", "scm-related", "misc"], "name": "fogbugz", "releaseTimestamp": "2012-01-20T03:44:04.00Z", "requiredCore": "1.448", "scm": "github.com", "sha1": "JLWW5ABU0MrJSAaMmCLfZGJH3GQ=", "title": "Fogbugz Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/fogbugz/1.0/fogbugz.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fogbugz+Plugin"}, "form-element-path": {"buildDate": "Jun 22, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin adds distinctive {{path}} attributes to every form elements inside Jenkins so that automated test programs like Selenium can be used more effectively to automate/test Jenkins.", "gav": "org.jenkins-ci.plugins:form-element-path:1.0", "labels": [], "name": "form-element-path", "releaseTimestamp": "2012-06-22T19:15:06.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Gno1/5hlwdUg2MB7rKBNLtzPDHI=", "title": "Form Element Path Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/form-element-path/1.0/form-element-path.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Form+Element+Path+Plugin"}, "fortify360": {"buildDate": "Nov 28, 2012", "dependencies": [], "developers": [{"developerId": "samn"}], "excerpt": "Fortify 360 FPR post-processing and uploading to Fortify 360 Server", "gav": "org.jvnet.hudson.plugins.fortify360:fortify360:3.6", "labels": ["report", "external"], "name": "fortify360", "previousTimestamp": "2012-05-26T20:03:40.00Z", "previousVersion": "2.4", "releaseTimestamp": "2012-11-28T22:48:04.00Z", "requiredCore": "1.323", "scm": "svn.jenkins-ci.org", "sha1": "D/HQHma4CqrQl1DaLefW8BCwCts=", "title": "Fortify 360 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/fortify360/3.6/fortify360.hpi", "version": "3.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Fortify+360+Plugin"}, "fstrigger": {"buildDate": "Aug 03, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "FSTrigger provides polling mechanisms to monitor a file system and trigger a build if a file or a set of files have changed.", "gav": "org.jenkins-ci.plugins:fstrigger:0.34", "labels": ["trigger"], "name": "fstrigger", "previousTimestamp": "2012-06-22T02:45:40.00Z", "previousVersion": "0.33", "releaseTimestamp": "2012-08-03T18:01:34.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "t/swQpTgfMZqxg+WtJFVDSr6vnM=", "title": "FSTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/fstrigger/0.34/fstrigger.hpi", "version": "0.34", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FSTrigger+Plugin"}, "ftppublisher": {"buildDate": "Jul 13, 2011", "compatibleSinceVersion": "1.0", "dependencies": [], "developers": [{"developerId": "jacob"}], "excerpt": "This plugin can be used to upload project artifacts and whole directories to an ftp server.", "gav": "org.jvnet.hudson.plugins:ftppublisher:1.2", "labels": ["upload"], "name": "ftppublisher", "previousTimestamp": "2011-07-05T22:52:08.00Z", "previousVersion": "1.1.4", "releaseTimestamp": "2011-07-13T22:45:12.00Z", "requiredCore": "1.349", "scm": "svn.jenkins-ci.org", "sha1": "zDbyUSuiDuAkPwYLMkBlPITrAnc=", "title": "FTP-Publisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ftppublisher/1.2/ftppublisher.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/FTP-Publisher+Plugin"}, "gallio": {"buildDate": "Oct 12, 2011", "dependencies": [{"name": "xunit", "optional": false, "version": "1.23"}], "developers": [{"developerId": "pmiossec", "name": "Philippe Miossec"}, {"developerId": "gbois", "email": "gbois@dev.java.net", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to publish Gallio/MbUnit test results", "gav": "org.jenkins-ci.plugins:gallio:1.6", "labels": ["report"], "name": "gallio", "previousTimestamp": "2011-05-16T03:29:18.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-10-13T03:53:08.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "1MYwLJ/ydWFpVJ9SqS8Tz4lq4oY=", "title": "Gallio Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gallio/1.6/gallio.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gallio+Plugin"}, "gant": {"buildDate": "Jan 29, 2010", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin allows Hudson to invoke Gant build script as the main build step.", "gav": "org.jvnet.hudson.plugins:gant:1.2", "labels": ["builder"], "name": "gant", "previousTimestamp": "2008-07-07T22:44:12.00Z", "previousVersion": "1.1", "releaseTimestamp": "2010-01-30T02:34:50.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "EbRJgnSdzfxWxHLmm3puSM6fXRU=", "title": "Gant Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gant/1.2/gant.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gant+Plugin"}, "gcal": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"name": "Arnaud Lacour"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin publishes build records over to Google Calendar", "gav": "org.jvnet.hudson.plugins:gcal:0.4", "labels": ["external", "notifier"], "name": "gcal", "previousTimestamp": "2009-12-29T00:04:52.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-11-04T16:29:46.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "pV42CD4Q5IHFVcG6t7TbEmyTREE=", "title": "Google Calendar Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gcal/0.4/gcal.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Calendar+Plugin"}, "gcm-notification": {"buildDate": "Nov 20, 2012", "dependencies": [{"name": "instant-messaging", "optional": false, "version": "1.23"}, {"name": "analysis-core", "optional": true, "version": "1.0"}, {"name": "jquery", "optional": false, "version": "1.7.2-1"}, {"name": "ci-game", "optional": true, "version": "1.16"}], "developers": [{"developerId": "orrc", "email": "chris@orr.me.uk", "name": "Christopher Orr"}], "excerpt": "Sends build notifications to Android devices using the Google Cloud Messaging service.", "gav": "org.jenkins-ci.plugins:gcm-notification:1.0", "labels": ["notifier", "android"], "name": "gcm-notification", "releaseTimestamp": "2012-11-20T06:43:02.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "a9ppScyuzXAzq+KfKuu4zFk1pmY=", "title": "GCM Notification Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gcm-notification/1.0/gcm-notification.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GCM+Notification+Plugin"}, "gerrit": {"buildDate": "Oct 20, 2010", "dependencies": [{"name": "git", "optional": false, "version": "1.0"}], "developers": [{"developerId": "jyrkiput", "name": "Jyrki Puttonen"}], "excerpt": "This plugin integrates Gerrit Code Review to Jenkins.", "gav": "org.jvnet.hudson.plugins:gerrit:0.7", "labels": ["post-build", "external"], "name": "gerrit", "previousTimestamp": "2010-08-22T19:23:24.00Z", "previousVersion": "0.6", "releaseTimestamp": "2010-10-21T00:36:50.00Z", "requiredCore": "1.362", "scm": "github.com", "sha1": "pvDZ2nwas9MxwnshQBR3JFaGYbU=", "title": "Gerrit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gerrit/0.7/gerrit.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Plugin"}, "gerrit-trigger": {"buildDate": "Dec 05, 2012", "dependencies": [{"name": "rebuild", "optional": true, "version": "1.1"}, {"name": "git", "optional": false, "version": "1.1.10"}], "developers": [{"developerId": "rsandell", "email": "robert.sandell@sonymobile.com", "name": "Robert Sandell"}, {"developerId": "twestling", "email": "tomas.westling@sonymobile.com", "name": "Tomas Westling"}], "excerpt": "This plugin integrates Jenkins to Gerrit code review for triggering builds when a \"patch set\" is created. \\\\ ", "gav": "com.sonyericsson.hudson.plugins.gerrit:gerrit-trigger:2.7.0", "labels": ["trigger"], "name": "gerrit-trigger", "previousTimestamp": "2012-09-19T18:29:34.00Z", "previousVersion": "2.6.0", "releaseTimestamp": "2012-12-05T18:06:32.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "l3DEqfrC4B+nVJPlosa4v3tQI6Y=", "title": "Gerrit Trigger", "url": "http://updates.jenkins-ci.org/download/plugins/gerrit-trigger/2.7.0/gerrit-trigger.hpi", "version": "2.7.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger"}, "ghprb": {"buildDate": "Nov 14, 2012", "dependencies": [{"name": "github-api", "optional": false, "version": "1.28"}, {"name": "github", "optional": false, "version": "1.4"}, {"name": "git", "optional": false, "version": "1.1.17"}], "developers": [{"developerId": "janinko", "email": "jbrazdil@redhat.com", "name": "Honza Brázdil"}], "excerpt": "This plugin builds pull requests in github and report results.", "gav": "org.jenkins-ci.plugins:ghprb:1.4", "labels": ["trigger"], "name": "ghprb", "previousTimestamp": "2012-10-22T20:11:08.00Z", "previousVersion": "1.3.2", "releaseTimestamp": "2012-11-14T21:54:22.00Z", "requiredCore": "1.476", "scm": "github.com", "sha1": "diNeo5WnPmbiE/IWlvkhJKpfv88=", "title": "GitHub pull request builder plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ghprb/1.4/ghprb.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin"}, "girls": {"buildDate": "Apr 27, 2010", "dependencies": [], "developers": [{"developerId": "jessicayk", "name": "Jessica Yoshie Kussuda"}], "excerpt": "Like [ChuckNorris Plugin] but with different pictures. Answering to requests and for study a little how the plugins work. ", "gav": "org.jvnet.hudson.plugins:girls:1.0.0", "labels": ["ui"], "name": "girls", "releaseTimestamp": "2010-04-28T00:30:10.00Z", "requiredCore": "1.353", "scm": "svn.dev.java.net", "sha1": "H8+WlqVQ5rW/9hvYjhJ0k09Ljt0=", "title": "Girls Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/girls/1.0.0/girls.hpi", "version": "1.0.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Girls+Plugin"}, "git": {"buildDate": "Nov 13, 2012", "dependencies": [{"name": "multiple-scms", "optional": true, "version": "0.2"}, {"name": "parameterized-trigger", "optional": true, "version": "2.4"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "ndeloof", "email": "nicolas.deloof@gmail.com", "name": "Nicolas De Loof"}], "excerpt": "This plugin allows use of Git as a build SCM. Git 1.3.3 or newer is required.", "gav": "org.jenkinsci.plugins:git:1.1.26", "labels": ["scm"], "name": "git", "previousTimestamp": "2012-10-13T15:04:36.00Z", "previousVersion": "1.1.25", "releaseTimestamp": "2012-11-14T03:01:00.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "2OWVf1qWIur+xLVlqvTBy5xgT3s=", "title": "Git Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/git/1.1.26/git.hpi", "version": "1.1.26", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin"}, "git-notes": {"buildDate": "Apr 23, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}], "developers": [{"developerId": "bright"}], "excerpt": "Add git-notes with Jenkins build status!", "gav": "org.jenkins-ci.ruby-plugins:git-notes:0.0.4", "labels": [], "name": "git-notes", "previousTimestamp": "2012-03-30T20:25:34.00Z", "previousVersion": "0.0.2", "releaseTimestamp": "2012-04-23T20:57:58.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "zijNvkz/zrmJOIzFraSJX2Q31zg=", "title": "git-notes Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/git-notes/0.0.4/git-notes.hpi", "version": "0.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/git-notes+Plugin"}, "git-parameter": {"buildDate": "Feb 21, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.15"}], "developers": [{"developerId": "lukanus", "name": "Å?ukasz MiÅ‚kowski"}], "excerpt": "This plugin allows you to choose between Git tags or sha1 of your SCM repository so Git Plugin installed is required.", "gav": "org.jenkins-ci.plugins:git-parameter:0.2", "labels": ["scm-related", "parameter"], "name": "git-parameter", "previousTimestamp": "2011-11-01T03:12:24.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-02-21T09:03:44.00Z", "requiredCore": "1.451", "scm": "github.com", "sha1": "1nO8G+BvV28LI0b8711WocE7af4=", "title": "Git Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/git-parameter/0.2/git-parameter.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Parameter+Plugin"}, "git-server": {"buildDate": "Aug 30, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.17"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin is a library plugin for other plugins to add git server functionality to Jenkins.", "gav": "org.jenkins-ci.plugins:git-server:1.1", "labels": ["library"], "name": "git-server", "previousTimestamp": "2012-08-27T15:36:50.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-08-30T15:33:44.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "2ZgryoENLIWeTxOzsCfifvZWG9U=", "title": "Git Server Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/git-server/1.1/git-server.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+Server+Plugin"}, "git-userContent": {"buildDate": "Aug 29, 2012", "dependencies": [{"name": "git-server", "optional": false, "version": "1.0"}, {"name": "git", "optional": false, "version": "1.1.17"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin exposes $JENKINS_HOME/userContent as Git repository.", "gav": "org.jenkins-ci.plugins:git-userContent:1.3", "labels": [], "name": "git-userContent", "previousTimestamp": "2012-08-29T21:43:16.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-08-29T21:59:54.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "XcqMQciZT0PQFLZK1gbGCeycv8o=", "title": "Git userContent plugin", "url": "http://updates.jenkins-ci.org/download/plugins/git-userContent/1.3/git-userContent.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Git+userContent+plugin"}, "github": {"buildDate": "Jun 13, 2012", "dependencies": [{"name": "github-api", "optional": false, "version": "1.28"}, {"name": "multiple-scms", "optional": true, "version": "0.2"}, {"name": "git", "optional": false, "version": "1.1.17"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "juretta", "name": "Stefan Saasen"}], "excerpt": "This plugin integrates Jenkins with Github projects.", "gav": "com.coravy.hudson.plugins.github:github:1.4", "labels": ["external"], "name": "github", "previousTimestamp": "2012-05-31T18:07:50.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-06-13T13:06:40.00Z", "requiredCore": "1.445", "scm": "github.com", "sha1": "JVtmW2eswoGRwYm8AdnhYx1dxRM=", "title": "GitHub Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/github/1.4/github.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Plugin"}, "github-api": {"buildDate": "Sep 13, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin is a library plugin used by other GitHub related plugins to share the same libraries. This plugin does not have any user visible feature by itself. There's no need to install this plugin manually, although you want to keep it up to date.", "gav": "org.jenkins-ci.plugins:github-api:1.33", "labels": ["library"], "name": "github-api", "previousTimestamp": "2012-09-06T12:26:14.00Z", "previousVersion": "1.32", "releaseTimestamp": "2012-09-13T20:43:54.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "De3iY40IhIdAKmWPKn3LqynXBp0=", "title": "GitHub API Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/github-api/1.33/github-api.hpi", "version": "1.33", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+API+Plugin"}, "github-oauth": {"buildDate": "Jun 13, 2012", "compatibleSinceVersion": "0.3", "dependencies": [{"name": "github-api", "optional": false, "version": "1.28"}], "developers": [{"developerId": "mocleiri", "name": "Michael O'Cleirigh"}], "excerpt": "Authentication of users is delegated to Github using the OAuth protocol.  Authorization is based on the characteristics of the users Github user data that is retrieved through the Github API (effectively as the authenticated user). ", "gav": "org.jenkins-ci.plugins:github-oauth:0.12", "labels": ["user"], "name": "github-oauth", "previousTimestamp": "2012-03-22T01:53:40.00Z", "previousVersion": "0.11", "releaseTimestamp": "2012-06-13T13:00:12.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "cAOjdw5d3oQVPo4bXkj9QAo1EiE=", "title": "Github OAuth Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/github-oauth/0.12/github-oauth.hpi", "version": "0.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Github+OAuth+Plugin"}, "github-sqs-plugin": {"buildDate": "Nov 23, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.17"}, {"name": "github-api", "optional": false, "version": "1.28"}, {"name": "multiple-scms", "optional": true, "version": "0.2"}, {"name": "github", "optional": false, "version": "1.3"}], "developers": [{"developerId": "aaronwalker", "name": "Aaron Walker"}], "excerpt": "This plugin integrates Jenkins with Github projects via Amazon's Simple Queue Service", "gav": "com.base2services.jenkins:github-sqs-plugin:1.3", "labels": ["trigger", "external"], "name": "github-sqs-plugin", "previousTimestamp": "2012-11-22T19:45:54.00Z", "previousVersion": "1.2.1", "releaseTimestamp": "2012-11-23T17:43:00.00Z", "requiredCore": "1.451", "scm": "github.com", "sha1": "5AOp3W2vlnY3cYJo/3oaaYUkAuM=", "title": "GitHub SQS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/github-sqs-plugin/1.3/github-sqs-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GitHub+SQS+Plugin"}, "gitlab-hook": {"buildDate": "Dec 11, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}, {"name": "git", "optional": false, "version": "1.1.26"}], "developers": [{"developerId": "elvanja"}], "excerpt": "Enables Gitlab web hooks to be used to trigger SMC polling on Gitlab projects", "gav": "org.jenkins-ci.ruby-plugins:gitlab-hook:0.2.5", "labels": ["scm-related"], "name": "gitlab-hook", "previousTimestamp": "2012-12-08T03:21:46.00Z", "previousVersion": "0.2.4", "releaseTimestamp": "2012-12-11T20:49:36.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "YzSXkyswUSlx+MdmwxTl+inZn5c=", "title": "Gitlab Hook Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gitlab-hook/0.2.5/gitlab-hook.hpi", "version": "0.2.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gitlab+Hook+Plugin"}, "gitorious": {"buildDate": "Oct 13, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.24"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "Integration Jenkins with Gitorious", "gav": "org.jenkins-ci.plugins:gitorious:1.0", "labels": [], "name": "gitorious", "releaseTimestamp": "2012-10-13T14:59:24.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "9aCHpCZviIdJwh7YuMFnEiSNtF8=", "title": "Gitorious Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gitorious/1.0/gitorious.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gitorious+Plugin"}, "global-build-stats": {"buildDate": "Apr 05, 2012", "dependencies": [], "developers": [{"developerId": "fcamblor", "email": "fcamblor+wikihudson@gmail.com", "name": "Frederic Camblor"}], "excerpt": "Global build stats plugin will allow to gather and display global build result statistics. It is a useful tool allowing to display global hudson build trend over time.", "gav": "org.jenkins-ci.plugins:global-build-stats:1.3", "labels": ["report"], "name": "global-build-stats", "previousTimestamp": "2011-08-25T07:46:46.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-04-06T01:34:38.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "0vZtHB11OPpOu10xcfWXWnvAC3s=", "title": "Global Build Stats Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/global-build-stats/1.3/global-build-stats.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Global+Build+Stats+Plugin"}, "global-variable-string-parameter": {"buildDate": "Nov 02, 2012", "dependencies": [], "developers": [{"developerId": "pmaccamp", "email": "pmaccamp@sbcglobal.net", "name": "Patrick McKeown"}, {"developerId": "marsbar", "name": "Mario Vuong"}], "excerpt": "Provides a parameter with support for global node properties via $VARIABLE or $\\{VARIABLE} ", "gav": "org.jenkins-ci.plugins:global-variable-string-parameter:1.1", "labels": ["parameter"], "name": "global-variable-string-parameter", "releaseTimestamp": "2012-11-02T05:21:38.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Pp8d9F1YOZv0qw/BUSsUCMj9Ba4=", "title": "Global Variable String Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/global-variable-string-parameter/1.1/global-variable-string-parameter.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Global+Variable+String+Parameter+Plugin"}, "gnat": {"buildDate": "Oct 11, 2012", "dependencies": [{"name": "xunit", "optional": false, "version": "1.39"}], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to integrate Gnat features for ADA languages in Jenkins.", "gav": "org.jenkins-ci.plugins:gnat:0.14", "labels": ["report"], "name": "gnat", "previousTimestamp": "2012-02-15T04:34:40.00Z", "previousVersion": "0.13", "releaseTimestamp": "2012-10-11T22:45:40.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "lSvvdGIK13pLiOLEkyjEOug+YUE=", "title": "Gnat Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gnat/0.14/gnat.hpi", "version": "0.14", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gnat+Plugin"}, "googleanalytics": {"buildDate": "Nov 23, 2011", "dependencies": [], "developers": [{"developerId": "erik"}], "excerpt": "This plugin decorates all web pages with the Google Analytics tracking script", "gav": "org.jvnet.hudson.plugins:googleanalytics:1.3", "labels": ["page-decorator"], "name": "googleanalytics", "previousTimestamp": "2009-08-25T04:44:02.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-11-23T23:16:40.00Z", "requiredCore": "1.323", "scm": "github.com", "sha1": "K8jV5dPn/543wX4bX0OJTGikJ3Y=", "title": "Google Analytics Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/googleanalytics/1.3/googleanalytics.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Analytics+Plugin"}, "googlecode": {"buildDate": "Apr 09, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.36"}], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}], "excerpt": "This plugin creates links from Jenkins projects to Google Code instances.", "gav": "org.jenkins-ci.plugins:googlecode:1.7", "labels": ["external"], "name": "googlecode", "previousTimestamp": "2011-03-04T23:06:06.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-04-09T13:28:24.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "1gYG/nA/fgde/jq/B3FSOY14NOk=", "title": "Google Code Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/googlecode/1.7/googlecode.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Google+Code+Plugin"}, "gradle": {"buildDate": "Nov 26, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to invoke Gradle build script as the main build step.", "gav": "org.jenkins-ci.plugins:gradle:1.21", "labels": ["builder"], "name": "gradle", "previousTimestamp": "2012-09-20T03:54:44.00Z", "previousVersion": "1.20", "releaseTimestamp": "2012-11-27T03:16:28.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "roa0zU6S5WZnHqAB7h7GVonwZTk=", "title": "Gradle Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gradle/1.21/gradle.hpi", "version": "1.21", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gradle+Plugin"}, "grails": {"buildDate": "Jul 18, 2012", "dependencies": [], "developers": [{"developerId": "jeffg2one", "name": "Jeff Brown"}, {"developerId": "kiy0taka", "name": "Kiyotaka Oku"}], "excerpt": "This plugin allows Jenkins to invoke Grails tasks as build steps.", "gav": "org.jvnet.hudson.plugins:grails:1.6.3", "labels": ["builder"], "name": "grails", "previousTimestamp": "2012-05-18T18:47:30.00Z", "previousVersion": "1.6.2", "releaseTimestamp": "2012-07-18T18:10:56.00Z", "requiredCore": "1.425", "scm": "github.com", "sha1": "CO/Kl9a6Zpu+9uC25gUOqL3Omds=", "title": "Grails Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/grails/1.6.3/grails.hpi", "version": "1.6.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Grails+Plugin"}, "gravatar": {"buildDate": "Nov 18, 2011", "dependencies": [], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}], "excerpt": "This plugins shows Gravatar avatars instead of the generic user image.", "gav": "org.jenkins-ci.plugins:gravatar:1.1", "labels": ["user", "ui"], "name": "gravatar", "releaseTimestamp": "2011-11-18T11:38:42.00Z", "requiredCore": "1.434", "scm": "github.com", "sha1": "hC/9amrpcbltZRJHRGqqXVsWAUA=", "title": "Gravatar plugin", "url": "http://updates.jenkins-ci.org/download/plugins/gravatar/1.1/gravatar.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Gravatar+plugin"}, "greenballs": {"buildDate": "May 07, 2012", "dependencies": [], "developers": [{"developerId": "asgeirn", "email": "asgeir@twingine.no", "name": "Asgeir Storesund Nilsen"}], "excerpt": "Changes Hudson to use green balls instead of blue for successful builds", "gav": "org.jvnet.hudson.plugins:greenballs:1.12", "labels": ["ui"], "name": "greenballs", "previousTimestamp": "2011-09-10T18:51:30.00Z", "previousVersion": "1.11", "releaseTimestamp": "2012-05-07T21:29:28.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "MPqqs7ZYTcm1F5pz9wMOayfh8G0=", "title": "Green Balls", "url": "http://updates.jenkins-ci.org/download/plugins/greenballs/1.12/greenballs.hpi", "version": "1.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Green+Balls"}, "grinder": {"buildDate": "Jan 15, 2010", "dependencies": [], "developers": [{"developerId": "BatemanSW"}], "excerpt": "This plugin reads output result files from Grinder performance tests, and will generate reports showing test results for every build and trend reports showing performance results across builds.", "gav": "org.jvnet.hudson.plugins:grinder:1.4", "labels": ["report"], "name": "grinder", "previousTimestamp": "2009-12-30T04:26:38.00Z", "previousVersion": "1.3", "releaseTimestamp": "2010-01-15T16:45:28.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "XlTSwxFBO6UfqMlF5eGocJ29h6g=", "title": "Grinder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/grinder/1.4/grinder.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Grinder+Plugin"}, "groovy": {"buildDate": "Mar 08, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.4"}], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin adds the ability to directly execute Groovy code.", "gav": "org.jenkins-ci.plugins:groovy:1.12", "labels": ["builder", "groovy-related"], "name": "groovy", "previousTimestamp": "2012-02-27T02:58:04.00Z", "previousVersion": "1.11", "releaseTimestamp": "2012-03-08T21:48:58.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "rO0nG2xE5RPG2/eDPzYcbX8tC04=", "title": "Groovy plugin", "url": "http://updates.jenkins-ci.org/download/plugins/groovy/1.12/groovy.hpi", "version": "1.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+plugin"}, "groovy-postbuild": {"buildDate": "Aug 22, 2012", "dependencies": [], "developers": [{"developerId": "wolfs", "name": "Stefan Wolf"}, {"developerId": "beryx", "name": "Serban Iordache"}], "excerpt": "This plugin executes a groovy script in the Jenkins JVM. Typically, the script checks some conditions and changes accordingly the build result, puts badges next to the build in the build history and/or displays information on the build summary page.", "gav": "org.jvnet.hudson.plugins:groovy-postbuild:1.8", "labels": ["post-build", "groovy-related"], "name": "groovy-postbuild", "previousTimestamp": "2012-05-02T19:56:08.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-08-22T16:03:14.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "uWryTtC4mZPwLfmZ8JjHHT1tZDo=", "title": "Groovy Postbuild Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/groovy-postbuild/1.8/groovy-postbuild.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin"}, "groovy-remote": {"buildDate": "Sep 12, 2012", "dependencies": [], "developers": [], "excerpt": "This plugin provides Groovy Remote Control's receiver, and allows to control external application from Jenkins.", "gav": "org.jenkinsci.plugins:groovy-remote:0.2", "labels": ["builder", "groovy-related"], "name": "groovy-remote", "previousTimestamp": "2012-08-09T17:27:08.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-09-13T00:30:50.00Z", "requiredCore": "1.475", "scm": "github.com", "sha1": "0rhRQWmdaOqU8FN2UZCM2htpB/M=", "title": "Groovy Remote Control Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/groovy-remote/0.2/groovy-remote.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Remote+Control+Plugin"}, "groovyaxis": {"buildDate": "Jun 07, 2011", "dependencies": [], "developers": [{"developerId": "emanuelez", "email": "emanuelez@gmail.com", "name": "Emanuele Zattin"}], "excerpt": "This plugin allows to have scriptable axes for Matrix Jobs.", "gav": "org.jenkins-ci.plugins:groovyaxis:0.2", "labels": ["misc"], "name": "groovyaxis", "releaseTimestamp": "2011-06-08T03:58:30.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "G1S+szFQ5Bxj4OtPiWaVroTcufI=", "title": "GroovyAxis", "url": "http://updates.jenkins-ci.org/download/plugins/groovyaxis/0.2/groovyaxis.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/GroovyAxis"}, "growl": {"buildDate": "Jun 12, 2011", "dependencies": [], "developers": [{"developerId": "sbower", "email": "sbower@advws.net", "name": "Shawn Bower"}], "excerpt": "Sends Growl notification.", "gav": "org.jenkins-ci.plugins:growl:1.1", "labels": ["notifier"], "name": "growl", "previousTimestamp": "2010-10-09T04:38:06.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-06-13T01:15:20.00Z", "requiredCore": "1.414", "scm": "github.com", "sha1": "NqahIAJnefwd9tvZ/T9mREAnh8E=", "title": "Growl Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/growl/1.1/growl.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Growl+Plugin"}, "hadoop": {"buildDate": "Jun 29, 2011", "dependencies": [], "developers": [{"developerId": "olamy"}], "excerpt": "This plugin makes Hudson cluster act as a Hadoop cluster without any configuration.", "gav": "org.jenkins-ci.plugins:hadoop:1.4", "labels": ["cluster"], "name": "hadoop", "previousTimestamp": "2009-09-02T18:44:44.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-06-30T03:59:20.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "S4P+I7mwmD4wGaps43neIfH/fJg=", "title": "Hadoop Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hadoop/1.4/hadoop.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hadoop+Plugin"}, "harvest": {"buildDate": "Aug 22, 2011", "dependencies": [], "developers": [{"developerId": "gliptak", "name": "Gábor Lipták"}], "excerpt": "This plugin allows you to use CA Harvest as a SCM.", "gav": "org.jenkins-ci.plugins:harvest:0.5", "labels": ["scm"], "name": "harvest", "previousTimestamp": "2011-05-30T13:16:32.00Z", "previousVersion": "0.4.2", "releaseTimestamp": "2011-08-22T22:20:54.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "EiNjfGkzWp4Jue9c3F9ZV2cJrRY=", "title": "Harvest Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/harvest/0.5/harvest.hpi", "version": "0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Harvest+Plugin"}, "heavy-job": {"buildDate": "Sep 26, 2010", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin allows you to define \"weight\" on each job, and making each job consume that many executors (instead of just one.)", "gav": "org.jvnet.hudson.plugins:heavy-job:1.0", "labels": ["misc"], "name": "heavy-job", "releaseTimestamp": "2010-09-26T15:51:08.00Z", "requiredCore": "1.377", "scm": "svn.dev.java.net", "sha1": "sDBzy/rS8uh6D7lIT1TERQT9ie4=", "title": "Heavy Job Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/heavy-job/1.0/heavy-job.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Heavy+Job+Plugin"}, "heroku-jenkins-plugin": {"buildDate": "Oct 28, 2012", "dependencies": [], "developers": [{"developerId": "ryanbrainard", "name": "Ryan Brainard"}], "excerpt": "Build tasks for interacting with Heroku including deployment, scaling dynos, running processes, and more. ", "gav": "com.heroku:heroku-jenkins-plugin:0.7.1-BETA", "labels": ["post-build", "external", "upload"], "name": "heroku-jenkins-plugin", "previousTimestamp": "2012-08-24T03:09:00.00Z", "previousVersion": "0.7-BETA", "releaseTimestamp": "2012-10-28T22:21:44.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "VTe4ezg2aZh2BzNxj0S+s3r2UrQ=", "title": "Heroku Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/heroku-jenkins-plugin/0.7.1-BETA/heroku-jenkins-plugin.hpi", "version": "0.7.1-BETA", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Heroku+Plugin"}, "hgca": {"buildDate": "May 06, 2010", "dependencies": [], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}], "excerpt": "This plugin allows the administrator to specify pairs of patterns and URLs, both globally and on a per-job level, to use for marking up changelog text.", "gav": "org.jvnet.hudson.plugins:hgca:1.3", "labels": ["external"], "name": "hgca", "previousTimestamp": "2010-04-05T19:12:36.00Z", "previousVersion": "1.2", "releaseTimestamp": "2010-05-06T19:33:40.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "ph8hqopM+L/rfNC4/tJXAfEfNzI=", "title": "HGCA Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hgca/1.3/hgca.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HGCA+Plugin"}, "hipchat": {"buildDate": "Mar 11, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.319"}], "developers": [{"developerId": "dholst"}], "excerpt": "This plugin allows your team to setup build notifications to be sent to HipChat rooms.", "gav": "org.jvnet.hudson.plugins:hipchat:0.1.4", "labels": ["notifier"], "name": "hipchat", "previousTimestamp": "2012-02-27T19:31:34.00Z", "previousVersion": "0.1.3", "releaseTimestamp": "2012-03-11T23:33:50.00Z", "requiredCore": "1.319", "scm": "github.com", "sha1": "VCfHKpKml+ZITF/MhAO70cq1x/Y=", "title": "HipChat Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hipchat/0.1.4/hipchat.hpi", "version": "0.1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin"}, "hipchat-plugin": {"buildDate": "Jan 21, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.319"}], "developers": [{"developerId": "dholst"}], "excerpt": "A Build status publisher that notifies channels on a HipChat server", "gav": "com.github.jlewallen.jenkins.plugins:hipchat-plugin:0.1.0", "name": "hipchat-plugin", "releaseTimestamp": "2012-01-21T17:44:38.00Z", "requiredCore": "1.319", "scm": "github.com", "sha1": "peU7l1dGVfNNMJKKXfOhb8mz7a0=", "title": "Jenkins HipChat Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hipchat-plugin/0.1.0/hipchat-plugin.hpi", "version": "0.1.0"}, "hockeyapp": {"buildDate": "Dec 05, 2012", "dependencies": [], "developers": [{"developerId": "ohoeltke", "email": "ohoeltke@gmail.com", "name": "Oliver Hoeltke"}], "excerpt": "Lets you publish your .ipa and .dsym files to  www.hockeyapp.net ", "gav": "org.jenkins-ci.plugins:hockeyapp:1.0.2", "labels": ["upload", "ios"], "name": "hockeyapp", "previousTimestamp": "2012-09-18T21:56:56.00Z", "previousVersion": "1.0.1", "releaseTimestamp": "2012-12-05T14:41:46.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ZP15Y3G6NkQS66XdnpoISSHpZEY=", "title": "Hockeyapp Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hockeyapp/1.0.2/hockeyapp.hpi", "version": "1.0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hockeyapp+Plugin"}, "hp-application-automation-tools-plugin": {"buildDate": "Dec 02, 2012", "dependencies": [], "developers": [{"developerId": "ofirshaked", "email": "ofir.shaked@hp.com", "name": "Ofir Shaked"}, {"developerId": "amitb", "email": "amit.bezalel@hp.com", "name": "Amit Bezalel"}, {"email": "liron.tzabari@hp.com", "name": "Liron Tzabari"}], "excerpt": "This plugin allows Jenkins to trigger HP tests such as:Test Sets on Application Lifecycle Management,Tests saved on the file system from Unified Functional Testing, QuickTest Professional, and Service Test.", "gav": "org.jenkins-ci.plugins:hp-application-automation-tools-plugin:1.0.2", "labels": [], "name": "hp-application-automation-tools-plugin", "previousTimestamp": "2012-11-26T15:51:46.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-12-02T19:31:42.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "Tgv0Q8zu+mhokBNb+mWNdoZxk4g=", "title": "HP Application Automation Tools", "url": "http://updates.jenkins-ci.org/download/plugins/hp-application-automation-tools-plugin/1.0.2/hp-application-automation-tools-plugin.hpi", "version": "1.0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HP+Application+Automation+Tools"}, "hsts-filter-plugin": {"buildDate": "Sep 26, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides a very simple filter which adds a response header indicating that HTTP Strict Transport Security (HSTS) response headers should be sent.", "gav": "org.jenkins-ci.plugins:hsts-filter-plugin:1.0", "labels": ["page-decorator", "misc"], "name": "hsts-filter-plugin", "releaseTimestamp": "2011-09-27T02:05:36.00Z", "requiredCore": "1.429", "scm": "github.com", "sha1": "YTtcCuLLVggnk+/s+6zW/7OpxOA=", "title": "HSTS Filter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hsts-filter-plugin/1.0/hsts-filter-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HSTS+Filter+Plugin"}, "html-audio-notifier": {"buildDate": "Nov 25, 2011", "dependencies": [], "developers": [{"developerId": "larshvile", "email": "lars@hulte.net", "name": "Lars Hvile"}], "excerpt": "Plays audio-notifications directly in the browser when builds fail", "gav": "jenkins.plugins.htmlaudio:html-audio-notifier:0.4", "labels": ["notifier"], "name": "html-audio-notifier", "previousTimestamp": "2011-10-15T18:08:02.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-11-26T00:52:22.00Z", "requiredCore": "1.425", "scm": "github.com", "sha1": "1lWpujRmmhKwomBKQAM3XpBacK4=", "title": "Html Audio Notifier", "url": "http://updates.jenkins-ci.org/download/plugins/html-audio-notifier/0.4/html-audio-notifier.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Html+Audio+Notifier"}, "html5-notifier-plugin": {"buildDate": "Apr 06, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides W3C Web Notifications support for builds.", "gav": "org.jenkins-ci.plugins:html5-notifier-plugin:1.2", "labels": ["page-decorator", "notifier"], "name": "html5-notifier-plugin", "previousTimestamp": "2012-02-02T20:06:56.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-04-06T12:22:36.00Z", "requiredCore": "1.455", "scm": "github.com", "sha1": "QQU+7Yu9gTsM1+tlZ1G3UCHemAE=", "title": "HTML5 Notifier Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/html5-notifier-plugin/1.2/html5-notifier-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTML5+Notifier+Plugin"}, "htmlpublisher": {"buildDate": "Dec 10, 2012", "dependencies": [], "developers": [{"developerId": "mcrooney", "name": "Michael Rooney"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:htmlpublisher:1.2", "labels": ["upload"], "name": "htmlpublisher", "previousTimestamp": "2012-12-07T17:46:24.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-12-10T18:45:58.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "vRkwYavnDrH0p6Mn+eNcg/GKp9c=", "title": "HTML Publisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/htmlpublisher/1.2/htmlpublisher.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin"}, "http_request": {"buildDate": "Dec 09, 2012", "dependencies": [], "developers": [{"developerId": "janario", "email": "janarioliver@gmail.com", "name": "Janario Oliveira"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:http_request:1.7", "labels": ["builder"], "name": "http_request", "previousTimestamp": "2012-11-26T01:05:16.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-12-10T02:06:16.00Z", "requiredCore": "1.488", "scm": "github.com", "sha1": "Myo6m5JHMHQYFuDkKuHFVrHCFb8=", "title": "HTTP Request Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/http_request/1.7/http_request.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/HTTP+Request+Plugin"}, "hudson-logaction-plugin": {"buildDate": "Feb 05, 2010", "dependencies": [], "developers": [{"developerId": "tspengler", "name": "Thomas Spengler"}], "excerpt": "This plugin start action on pattern in the Joboutput, but this is centralized configured", "gav": "de.fspengler.hudson.plugin:hudson-logaction-plugin:1.1", "name": "hudson-logaction-plugin", "previousTimestamp": "2009-04-02T16:56:30.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-02-05T15:28:54.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "JaRElwvfjqRso55tt+qd2MuuttM=", "title": "Hudson Centralized Job(Re)Action", "url": "http://updates.jenkins-ci.org/download/plugins/hudson-logaction-plugin/1.1/hudson-logaction-plugin.hpi", "version": "1.1"}, "hudson-pview-plugin": {"buildDate": "Jan 03, 2011", "dependencies": [], "developers": [{"developerId": "tspengler", "email": "tom@fspengler.de", "name": "Thomas Spengler"}], "excerpt": "This plugin gives every user, also non administrative one the possibility to create his own view and to use a pseudo tree-view where every user can administer it's own delimiter which is used as path delimiter", "gav": "de.fspengler.hudson.pview:hudson-pview-plugin:1.8", "labels": ["user", "ui"], "name": "hudson-pview-plugin", "previousTimestamp": "2010-01-13T04:51:14.00Z", "previousVersion": "1.7", "releaseTimestamp": "2011-01-03T21:23:04.00Z", "requiredCore": "1.357", "scm": "svn.java.net", "sha1": "VKJ1X1bfi45x6w9N5rZl3kIw/Ko=", "title": "Hudson Personal View", "url": "http://updates.jenkins-ci.org/download/plugins/hudson-pview-plugin/1.8/hudson-pview-plugin.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Personal+View"}, "hudson-wsclean-plugin": {"buildDate": "Jan 06, 2010", "dependencies": [], "developers": [{"developerId": "tspengler", "name": "Thomas Spengler"}], "excerpt": "This plugin allows you to cleanup workspaces on unused slaves in the same slavegroup.", "gav": "de.jamba.hudson.plugin.wsclean:hudson-wsclean-plugin:1.0.4", "labels": ["buildwrapper"], "name": "hudson-wsclean-plugin", "previousTimestamp": "2009-10-12T19:33:54.00Z", "previousVersion": "1.0.3", "releaseTimestamp": "2010-01-07T02:51:32.00Z", "requiredCore": "1.328", "scm": "svn.dev.java.net", "sha1": "4GulizdnzLipjuwRF50l+8MC8yU=", "title": "Hudson Distributed Workspace Clean plugin", "url": "http://updates.jenkins-ci.org/download/plugins/hudson-wsclean-plugin/1.0.4/hudson-wsclean-plugin.hpi", "version": "1.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Distributed+Workspace+Clean+plugin"}, "hudsontrayapp": {"buildDate": "Jan 10, 2010", "dependencies": [], "developers": [{"developerId": "davyboyhayes", "name": "David Hayes"}], "excerpt": "With this plugin, you can monitor your Hudson server from the comfort of you desktop tray, and even run programs when things change (or not).", "gav": "org.jvnet.hudson.plugins.hudsontrayapp:hudsontrayapp:0.7.3", "labels": ["external"], "name": "hudsontrayapp", "releaseTimestamp": "2010-01-10T15:15:24.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "kSJAtcXBsmDD4AxWuEboitcYCzE=", "title": "Hudson Tray Application", "url": "http://updates.jenkins-ci.org/download/plugins/hudsontrayapp/0.7.3/hudsontrayapp.hpi", "version": "0.7.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Tray+Application"}, "ikachan": {"buildDate": "Jun 04, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}, {"name": "git", "optional": false, "version": "1.1.11"}], "developers": [{"developerId": "usr0600239"}], "excerpt": "Publisher for an IRC bot named Ikachan.", "gav": "org.jenkins-ci.ruby-plugins:ikachan:0.0.1", "name": "ikachan", "releaseTimestamp": "2012-06-05T01:55:10.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "DoVDQcH5vaSvHtnTS2GA7AQNydA=", "title": "Ikachan Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ikachan/0.0.1/ikachan.hpi", "version": "0.0.1"}, "image-gallery": {"buildDate": "Sep 21, 2012", "dependencies": [], "developers": [{"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}], "excerpt": "This plug-in reads a job workspace and collects images to produce an image gallery using colorbox lightbox Javascript library. ", "gav": "com.tupilabs.image_gallery:image-gallery:1.0", "labels": ["report"], "name": "image-gallery", "previousTimestamp": "2012-08-08T01:29:48.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-09-21T21:43:12.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "djwP4FFX04fsopZIyMGYPhuSytw=", "title": "Image Gallery Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/image-gallery/1.0/image-gallery.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Image+Gallery+Plugin"}, "instant-messaging": {"buildDate": "Nov 18, 2012", "dependencies": [{"name": "analysis-core", "optional": true, "version": "1.0"}, {"name": "ci-game", "optional": true, "version": "1.16"}], "developers": [{"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}, {"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin provides generic support for build notifications and a 'bot' via instant messaging protocols.", "gav": "org.jvnet.hudson.plugins:instant-messaging:1.23", "labels": ["notifier"], "name": "instant-messaging", "previousTimestamp": "2012-08-26T22:14:38.00Z", "previousVersion": "1.22", "releaseTimestamp": "2012-11-19T01:09:16.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "wtDYqjRoThXLVrwSK1aoKepzNEs=", "title": "Instant Messaging Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/instant-messaging/1.23/instant-messaging.hpi", "version": "1.23", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin"}, "integrity-plugin": {"buildDate": "Sep 11, 2012", "dependencies": [], "developers": [{"developerId": "cdsouza", "email": "cdsouza@ptc.com", "name": "Cletus D'Souza"}], "excerpt": "This Jenkins plugin provides SCM integration capabilities to PTC Integrity for Configuration Management. ", "gav": "org.jenkins-ci.plugins:integrity-plugin:1.16", "labels": ["scm"], "name": "integrity-plugin", "previousTimestamp": "2012-08-11T03:07:56.00Z", "previousVersion": "1.15", "releaseTimestamp": "2012-09-11T21:52:54.00Z", "requiredCore": "1.481", "scm": "github.com", "sha1": "eLeLiBuBiFPjXiD5BMRBx4+E4Ok=", "title": "PTC Integrity Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/integrity-plugin/1.16/integrity-plugin.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PTC+Integrity+Plugin"}, "ion-deployer-plugin": {"buildDate": "Feb 20, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.451"}], "developers": [{"developerId": "jeluard", "name": "Julien Eluard"}], "excerpt": "Deploy your mule application on iON at the end of your build. ", "gav": "org.jenkins-ci.plugins:ion-deployer-plugin:0.9", "labels": ["maven", "external", "post-build"], "name": "ion-deployer-plugin", "releaseTimestamp": "2012-02-20T23:41:36.00Z", "requiredCore": "1.451", "scm": "github.com", "sha1": "DTehlzpE1so/n4FKjL17mweTDsc=", "title": "iON Deployer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ion-deployer-plugin/0.9/ion-deployer-plugin.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iON+Deployer+Plugin"}, "ios-device-connector": {"buildDate": "Oct 10, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin lists up all the iOS devices connected to the master and all the Jenkins slaves, and provide operations to them.", "gav": "org.jenkins-ci.plugins:ios-device-connector:1.2", "labels": ["builder", "ios"], "name": "ios-device-connector", "previousTimestamp": "2012-10-08T17:04:26.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-10-10T14:27:30.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "B2z2wTyA8l5uwz9HqD+xhG9Hjns=", "title": "iOS Device Connector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ios-device-connector/1.2/ios-device-connector.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iOS+Device+Connector+Plugin"}, "iphoneview": {"buildDate": "Mar 27, 2010", "dependencies": [], "developers": [{"developerId": "sogabe", "email": "sogabe@dev.java.net", "name": "Seiji Sogabe"}], "excerpt": "This plugin allows you to view the status of your jobs via iPhone or iPod touch. ", "gav": "org.jvnet.hudson.plugins:iphoneview:0.2", "labels": ["ui"], "name": "iphoneview", "previousTimestamp": "2010-03-21T17:45:12.00Z", "previousVersion": "0.1", "releaseTimestamp": "2010-03-27T23:42:02.00Z", "requiredCore": "1.352", "scm": "svn.dev.java.net", "sha1": "nh82LEmYxlfBmqxOPukiN+QekNM=", "title": "iPhoneView Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/iphoneview/0.2/iphoneview.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/iPhoneView+Plugin"}, "ipmessenger-plugin": {"buildDate": "May 12, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "nabedge", "name": "nabedge"}], "excerpt": "Sends build notifications to IPMessenger client. See http://ipmsg.org/ about IPMessenger", "gav": "org.jenkins-ci.plugins:ipmessenger-plugin:1.2", "labels": ["notifier"], "name": "ipmessenger-plugin", "previousTimestamp": "2012-05-08T03:19:54.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-05-13T03:59:24.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "S2J4Kjc2YI1xXbYWHpZ/guOmTjw=", "title": "IPMessenger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ipmessenger-plugin/1.2/ipmessenger-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IPMessenger+Plugin"}, "ircbot": {"buildDate": "Oct 13, 2012", "dependencies": [{"name": "instant-messaging", "optional": false, "version": "1.22"}, {"name": "ci-game", "optional": true, "version": "1.16"}, {"name": "analysis-core", "optional": true, "version": "1.0"}], "developers": [{"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}], "excerpt": "This plugin enables Jenkins to send build notífications via IRC and lets you interact with Jenkins via an IRC bot. Note that you also need to install the instant-messaging plugin .", "gav": "org.jvnet.hudson.plugins:ircbot:2.20", "labels": ["trigger", "notifier"], "name": "ircbot", "previousTimestamp": "2012-08-26T22:24:06.00Z", "previousVersion": "2.19", "releaseTimestamp": "2012-10-13T21:21:42.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "zBkQ5o9iYUOBU/XW/bS6IqNT94A=", "title": "IRC Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ircbot/2.20/ircbot.hpi", "version": "2.20", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IRC+Plugin"}, "ivy": {"buildDate": "Feb 06, 2012", "dependencies": [{"name": "nant", "optional": true, "version": "1.4.1"}], "developers": [{"developerId": "hibou"}, {"developerId": "martinficker", "name": "Martin Ficker"}, {"developerId": "jmetcalf"}, {"developerId": "tbingaman", "name": "Timothy Bingaman"}, {"developerId": "gboissinot", "name": "Gregory Boissinot"}], "excerpt": "This plugin automatically configures a build to trigger other builds based on dependency configuration via Apache Ivy.", "gav": "org.jenkins-ci.plugins:ivy:1.21", "labels": ["trigger"], "name": "ivy", "previousTimestamp": "2011-11-16T07:04:48.00Z", "previousVersion": "1.20", "releaseTimestamp": "2012-02-06T13:33:42.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "uiMZfg29zqtWdyiccZZ4GJrvjGs=", "title": "Ivy Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ivy/1.21/ivy.hpi", "version": "1.21", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Plugin"}, "ivy-report": {"buildDate": "Feb 17, 2012", "dependencies": [{"name": "ivy", "optional": false, "version": "1.15"}], "developers": [{"developerId": "cchabanois", "email": "cchabanois@gmail.com", "name": "Cedric Chabanois"}], "excerpt": "This plugin publishes Apache Ivy reports for each build. ", "gav": "org.jenkins-ci.plugins:ivy-report:1.2", "labels": [], "name": "ivy-report", "previousTimestamp": "2012-02-16T12:01:48.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-02-18T03:03:36.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "wFYRVvmvk3JPqzMi1hEL9Uz+2fU=", "title": "Ivy Report Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ivy-report/1.2/ivy-report.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ivy+Report+Plugin"}, "ivytrigger": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "IvyTrigger provides polling mechanisms to poll an Ivy file and triggers a build if an Ivy dependency version has changed.", "gav": "org.jenkins-ci.plugins:ivytrigger:0.24", "labels": ["trigger"], "name": "ivytrigger", "previousTimestamp": "2012-09-11T04:33:58.00Z", "previousVersion": "0.23", "releaseTimestamp": "2012-11-20T03:57:02.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "kx6bkBYL2sksBmTcCK9QBEceWOU=", "title": "IvyTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ivytrigger/0.24/ivytrigger.hpi", "version": "0.24", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/IvyTrigger+Plugin"}, "jabber": {"buildDate": "Oct 13, 2012", "dependencies": [{"name": "analysis-core", "optional": true, "version": "1.0"}, {"name": "ci-game", "optional": true, "version": "1.16"}, {"name": "instant-messaging", "optional": false, "version": "1.22"}], "developers": [{"developerId": "kutzi", "email": "kutzi@gmx.de", "name": "Christoph Kutzinski"}], "excerpt": "Integrates Jenkins with the Jabber/XMPP instant messaging protocol. Note that you also need to install the instant-messaging plugin. ", "gav": "org.jvnet.hudson.plugins:jabber:1.24", "labels": ["trigger", "notifier"], "name": "jabber", "previousTimestamp": "2012-08-26T22:29:40.00Z", "previousVersion": "1.23", "releaseTimestamp": "2012-10-13T21:26:16.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "9yqHWLXrwXqEnoarW0S6G4OzuPU=", "title": "Jabber Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jabber/1.24/jabber.hpi", "version": "1.24", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jabber+Plugin"}, "jacoco": {"buildDate": "Nov 17, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.1"}, {"name": "maven-plugin", "optional": false, "version": "1.424.6"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "stephenconnolly", "name": "Stephen Connolly"}, {"developerId": "manolo", "email": "manolo@apache.org", "name": "Manuel Carrasco Monino"}, {"developerId": "jfuerth", "name": "Jonathan Fuerth"}, {"developerId": "kingargyle", "name": "David Carver"}, {"developerId": "ognjenb", "name": "Ognjen Bubalo"}], "excerpt": "This plugin allows you to capture code coverage report from JaCoCo. Jenkins will generate the trend report of coverage. This plugin is fork of the [Emma Plugin]. Big part of the code structure comes from it, however, it is completely refactored. ", "gav": "org.jenkins-ci.plugins:jacoco:1.0.9", "labels": ["report"], "name": "jacoco", "previousTimestamp": "2012-10-15T16:44:06.00Z", "previousVersion": "1.0.8", "releaseTimestamp": "2012-11-17T16:09:34.00Z", "requiredCore": "1.424.6", "scm": "github.com", "sha1": "M1eEllRpkIFjplP2/myvdIIfTgw=", "title": "JaCoCo Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jacoco/1.0.9/jacoco.hpi", "version": "1.0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JaCoCo+Plugin"}, "japex": {"buildDate": "Feb 14, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin adds Japex support so that Jenkins can display trend reports and other useful metrics.", "gav": "org.jvnet.hudson.plugins:japex:1.7", "labels": ["report"], "name": "japex", "previousTimestamp": "2009-12-30T17:14:18.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-02-14T19:06:54.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "Cwnz6S3GT+nNvQWAHtbW69Ymj0Y=", "title": "Japex Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/japex/1.7/japex.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Japex+Plugin"}, "javadoc": {"buildDate": "Sep 19, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin adds Javadoc support to Jenkins.", "gav": "org.jenkins-ci.plugins:javadoc:1.0", "labels": [], "name": "javadoc", "releaseTimestamp": "2011-09-19T16:58:34.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "Brf5LTIRj9konD9o37NqUvy5Fic=", "title": "Javadoc Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/javadoc/1.0/javadoc.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Javadoc+Plugin"}, "javancss": {"buildDate": "Jun 11, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.413"}], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin allows you to use JavaNCSS build reporting tool.", "gav": "org.jenkins-ci.plugins:javancss:1.1", "labels": ["report"], "name": "javancss", "previousTimestamp": "2010-06-01T20:07:30.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-06-11T23:01:42.00Z", "requiredCore": "1.413", "scm": "github.com", "sha1": "0jV7Ovyi4H4L5Wryc42Qh2k5wL8=", "title": "JavaNCSS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/javancss/1.1/javancss.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JavaNCSS+Plugin"}, "javanet": {"buildDate": "Dec 29, 2009", "dependencies": [{"name": "subversion", "optional": false, "version": "1.7"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin extends Hudson for projects hosted on java.net by providing various capabilities", "gav": "org.jvnet.hudson.plugins:javanet:1.3", "labels": ["external"], "name": "javanet", "previousTimestamp": "2008-05-23T09:22:40.00Z", "previousVersion": "1.2", "releaseTimestamp": "2009-12-29T20:35:06.00Z", "requiredCore": "1.325", "scm": "svn.dev.java.net", "sha1": "HhNr+0/UTPJcIIVK4SAIkAez6tE=", "title": "Java.net Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/javanet/1.3/javanet.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Java.net+Plugin"}, "javanet-uploader": {"buildDate": "Dec 29, 2009", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin uses java.net tasks library to make Hudson capable of posting artifacts to java.net", "gav": "org.jvnet.hudson.plugins:javanet-uploader:1.7", "labels": ["external", "upload"], "name": "javanet-uploader", "previousTimestamp": "2009-06-18T22:17:46.00Z", "previousVersion": "1.6", "releaseTimestamp": "2009-12-29T21:02:46.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "mUdi22mBZNoETMRXISlq4XL5EXM=", "title": "java.net uploader Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/javanet-uploader/1.7/javanet-uploader.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/java.net+uploader+Plugin"}, "javatest-report": {"buildDate": "Feb 14, 2011", "dependencies": [], "developers": [{"developerId": "ramapulavarthi", "name": "Rama Pulavarthi"}], "excerpt": "This plugin enables Jenkins to load test output from JavaTest test harness, which is commonly used by TCK tests for various JSRs.", "gav": "org.jvnet.hudson.plugins:javatest-report:1.4", "labels": ["report"], "name": "javatest-report", "previousTimestamp": "2010-01-31T17:12:44.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-02-14T18:14:32.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "Uf+6aAX/xO4o9uICgdv4+c1j4nk=", "title": "JavaTest Report Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/javatest-report/1.4/javatest-report.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JavaTest+Report+Plugin"}, "jboss": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"developerId": "JulB4", "email": "JulB4@dev.java.net", "name": "Juliusz Brzostek"}], "excerpt": "This plugin allows to manage a JBoss Application Server during build procedure. ", "gav": "org.jenkins-ci.plugins:jboss:1.0.5", "labels": ["misc", "builder"], "name": "jboss", "previousTimestamp": "2011-08-20T14:34:20.00Z", "previousVersion": "1.0.4", "releaseTimestamp": "2011-11-04T20:12:50.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "08xwWJsdwME3cpCv8pKym/DXXZ8=", "title": "JBoss Management Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jboss/1.0.5/jboss.hpi", "version": "1.0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JBoss+Management+Plugin"}, "jcaptcha-plugin": {"buildDate": "Jul 21, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "JCaptcha provider of Jenkins' CaptchaSupport extension point.", "gav": "org.jenkins-ci.plugins:jcaptcha-plugin:1.1", "labels": ["misc"], "name": "jcaptcha-plugin", "previousTimestamp": "2011-06-09T03:49:34.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-07-22T02:54:50.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "4vbTiLFQDMH98DHDbumn7127UNw=", "title": "JCaptcha Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jcaptcha-plugin/1.1/jcaptcha-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JCaptcha+Plugin"}, "jclouds-jenkins": {"buildDate": "Sep 17, 2012", "dependencies": [], "developers": [{"developerId": "sdirector", "email": "mordred@inaugust.com", "name": "Monty Taylor"}, {"developerId": "jclouds", "email": "adrian@jclouds.org", "name": "Adrian Cole"}, {"developerId": "vijaykiran", "email": "mail@vijaykiran.com", "name": "Vijay Kiran"}, {"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}], "excerpt": "This plugin uses JClouds to provide slave launching on most of the currently usable Cloud infrastructures.", "gav": "org.jenkins-ci.plugins:jclouds-jenkins:2.3.1", "labels": ["cluster"], "name": "jclouds-jenkins", "previousTimestamp": "2012-08-31T16:49:34.00Z", "previousVersion": "2.3", "releaseTimestamp": "2012-09-17T14:00:34.00Z", "requiredCore": "1.457", "scm": "github.com", "sha1": "N3KFajrhGE+rpBjyOmgz9vH23uo=", "title": "JClouds Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jclouds-jenkins/2.3.1/jclouds-jenkins.hpi", "version": "2.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JClouds+Plugin"}, "jdepend": {"buildDate": "Feb 14, 2011", "dependencies": [], "developers": [{"developerId": "cflewis", "email": "chris@cflewis.com", "name": "Chris Lewis"}], "excerpt": "The JDepend Plugin is a plugin to generate JDepend reports for builds.", "gav": "org.jvnet.hudson.plugins:jdepend:1.2.3", "labels": ["report"], "name": "jdepend", "previousTimestamp": "2009-09-17T19:18:24.00Z", "previousVersion": "1.2.2", "releaseTimestamp": "2011-02-14T18:04:38.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "g/0fc7a7C+vEd5BVQJ5gbGFWgwU=", "title": "JDepend Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jdepend/1.2.3/jdepend.hpi", "version": "1.2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JDepend+Plugin"}, "jenkins-cloudformation-plugin": {"buildDate": "Sep 20, 2012", "dependencies": [], "developers": [{"developerId": "edovale", "email": "edovale@gmail.com", "name": "Erick Dovale"}], "excerpt": "A plugin that allows for the creation of cloud formation stacks before running the build and the deletion of them after the build is completed. ", "gav": "org.jenkins-ci.plugins:jenkins-cloudformation-plugin:0.10", "labels": ["buildwrapper", "external", "notifier"], "name": "jenkins-cloudformation-plugin", "previousTimestamp": "2012-02-19T23:36:24.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-09-20T14:56:34.00Z", "requiredCore": "1.414", "scm": "github.com", "sha1": "02dRrRVnjeLdxVmivWOvRNvvHVw=", "title": "AWS Cloudformation Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-cloudformation-plugin/0.10/jenkins-cloudformation-plugin.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/AWS+Cloudformation+Plugin"}, "jenkins-flowdock-plugin": {"buildDate": "Sep 14, 2012", "dependencies": [], "developers": [{"developerId": "anttipitkanen", "email": "antti@flowdock.com", "name": "Antti Pitkanen"}], "excerpt": "Posts build notifications to your flow", "gav": "com.flowdock.jenkins:jenkins-flowdock-plugin:1.0.7", "name": "jenkins-flowdock-plugin", "previousTimestamp": "2012-09-06T18:54:26.00Z", "previousVersion": "1.0.6", "releaseTimestamp": "2012-09-14T19:29:32.00Z", "requiredCore": "1.478", "scm": "github.com", "sha1": "ITvApYw7z1DUQK38eD/MnBWA0HE=", "title": "Flowdock plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-flowdock-plugin/1.0.7/jenkins-flowdock-plugin.hpi", "version": "1.0.7"}, "jenkins-jira-issue-updater": {"buildDate": "Sep 04, 2012", "dependencies": [], "developers": [{"developerId": "laszlomiklosik", "email": "laszlo.miklosik@gmail.com", "name": "Laszlo Miklosik"}], "excerpt": "This is a Jenkins plugin which updates issues in Atlassian Jira (by changing their status and adding a comment) as part of a Jenkins job. ", "gav": "info.bluefloyd.jenkins:jenkins-jira-issue-updater:1.3", "labels": ["external"], "name": "jenkins-jira-issue-updater", "previousTimestamp": "2012-09-04T03:28:58.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-09-05T01:18:22.00Z", "requiredCore": "1.437", "scm": "github.com", "sha1": "OrukTyxt0mksPV06/X59Rc29w4A=", "title": "Jira Issue Updater Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-jira-issue-updater/1.3/jenkins-jira-issue-updater.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jira+Issue+Updater+Plugin"}, "jenkins-leiningen": {"buildDate": "Sep 07, 2012", "dependencies": [], "developers": [{"developerId": "pyr", "email": "pyr@spootnik.org", "name": "Pierre-Yves Ritschard"}], "excerpt": "This plugin allows building projects using leiningen. ", "gav": "org.spootnik:jenkins-leiningen:0.5.1", "labels": ["builder"], "name": "jenkins-leiningen", "releaseTimestamp": "2012-09-07T13:05:40.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "/J7AcQNGifoTvU47hWJ9UTM7zVM=", "title": "leiningen plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-leiningen/0.5.1/jenkins-leiningen.hpi", "version": "0.5.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/leiningen+plugin"}, "jenkins-multijob-plugin": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "alex-n", "email": "alex@tikalk.com", "name": "Alex Nickolaevsky"}, {"developerId": "ronil", "email": "roni@tikalk.com", "name": "Roni Licht"}, {"developerId": "itaior", "email": "itai@tikalk.com", "name": "Itai Or"}], "excerpt": "This plugin, created by Tikal ALM team, gives the option to define complex and hierarchical jobs structure in Jenkins. ", "gav": "org.jenkins-ci.plugins:jenkins-multijob-plugin:1.7", "labels": ["misc"], "name": "jenkins-multijob-plugin", "previousTimestamp": "2012-11-01T03:03:16.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-11-20T03:33:00.00Z", "requiredCore": "1.465", "scm": "github.com", "sha1": "1vLaI7J3HDcnXEiw+selKaI8JzA=", "title": "Multijob Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-multijob-plugin/1.7/jenkins-multijob-plugin.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugin"}, "jenkins-tag-cloud-plugin": {"buildDate": "Jul 03, 2012", "dependencies": [], "developers": [{"developerId": "cvanes", "email": "cvanes@gmail.com", "name": "Chris van Es"}], "excerpt": "Plugin which generates a tag cloud from source code.", "gav": "org.jenkins-ci.plugins:jenkins-tag-cloud-plugin:1.6", "labels": ["misc"], "name": "jenkins-tag-cloud-plugin", "previousTimestamp": "2012-04-15T09:43:28.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-07-03T15:31:22.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "kMIRpde1Ck+jmM61yXZZ1bac9ss=", "title": "Tag Cloud Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-tag-cloud-plugin/1.6/jenkins-tag-cloud-plugin.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tag+Cloud+Plugin"}, "jenkins-testswarm-plugin": {"buildDate": "Oct 02, 2012", "dependencies": [], "developers": [{"developerId": "keivnnilson", "name": "Kevin Nilson"}], "excerpt": "", "gav": "com.javaclimber.jenkins.testswarmplugin:jenkins-testswarm-plugin:1.2", "name": "jenkins-testswarm-plugin", "releaseTimestamp": "2012-10-02T04:14:10.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "il4+Q/8yWZO1vDD5pxU/4kwKAiA=", "title": "jenkins-testswarm-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkins-testswarm-plugin/1.2/jenkins-testswarm-plugin.hpi", "version": "1.2"}, "jenkinswalldisplay": {"buildDate": "Oct 11, 2012", "dependencies": [{"name": "nested-view", "optional": true, "version": "1.8"}], "developers": [{"developerId": "pellepelster", "email": "pellepelster@gmail.com", "name": "Christian Pelster"}], "excerpt": "This plugin provides a website that monitors jobs in a way suitable for public wall displays.", "gav": "org.jenkins-ci.plugins:jenkinswalldisplay:0.6.15", "labels": ["ui"], "name": "jenkinswalldisplay", "previousTimestamp": "2012-10-11T23:32:48.00Z", "previousVersion": "0.6.14", "releaseTimestamp": "2012-10-12T00:08:32.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "UFU9AufIT26aaJxFX/wWmBbdbto=", "title": "Wall Display Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkinswalldisplay/0.6.15/jenkinswalldisplay.hpi", "version": "0.6.15", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin"}, "jenkinswalldisplay-pom": {"buildDate": "Nov 13, 2011", "dependencies": [], "developers": [{"developerId": "pellepelster", "email": "pellepelster@gmail.com", "name": "Christian Pelster"}], "excerpt": "This plugin provides a website that monitors jobs in a way suitable for public wall displays.", "gav": "org.jenkins-ci.plugins:jenkinswalldisplay-pom:0.6.2", "labels": ["ui"], "name": "jenkinswalldisplay-pom", "releaseTimestamp": "2011-11-14T02:05:58.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Gbd7IngzepF57Tm1hzfe6iGQNTc=", "title": "Wall Display Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkinswalldisplay-pom/0.6.2/jenkinswalldisplay-pom.hpi", "version": "0.6.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin"}, "jenkow-plugin": {"buildDate": "Nov 27, 2012", "dependencies": [{"name": "async-job", "optional": false, "version": "1.3"}, {"name": "git", "optional": false, "version": "1.1.17"}, {"name": "git-server", "optional": false, "version": "1.1"}, {"name": "eclipse-update-site", "optional": false, "version": "1.2"}], "developers": [{"developerId": "m2spring", "email": "mspring@cisco.com", "name": "Max Spring"}, {"developerId": "chikkala", "email": "schikkal@cisco.com", "name": "Srinivasan Chikkala"}], "excerpt": "Integration of the Activiti BPMN Workflow Engine into Jenkins.", "gav": "com.cisco.step.jenkins.plugins:jenkow-plugin:0.2.5", "labels": ["trigger", "misc"], "name": "jenkow-plugin", "previousTimestamp": "2012-09-27T20:32:20.00Z", "previousVersion": "0.2.4", "releaseTimestamp": "2012-11-27T20:23:54.00Z", "requiredCore": "1.455", "scm": "github.com", "sha1": "+H+Zf0EivXsO+j04uYHHYhovY+A=", "title": "Jenkow Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jenkow-plugin/0.2.5/jenkow-plugin.hpi", "version": "0.2.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkow+Plugin"}, "jigomerge": {"buildDate": "Jul 08, 2011", "dependencies": [], "developers": [{"developerId": "vberetti", "name": "Vincent Beretti"}], "excerpt": "This plugin adds the ability to directly merge Subversion branches in Jenkins. See http://code.google.com/p/jigomerge/", "gav": "org.jenkins-ci.plugins:jigomerge:0.7", "labels": ["builder"], "name": "jigomerge", "previousTimestamp": "2011-04-30T16:16:56.00Z", "previousVersion": "0.6", "releaseTimestamp": "2011-07-08T21:15:30.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "GRxJX0VOdCNLKl3P7cwzqdH1zr8=", "title": "Jigomerge plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jigomerge/0.7/jigomerge.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jigomerge+plugin"}, "jira": {"buildDate": "Jul 29, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "This plugin integrates Atlassian JIRA to Jenkins.", "gav": "org.jenkins-ci.plugins:jira:1.35", "labels": ["maven", "external"], "name": "jira", "previousTimestamp": "2012-06-11T17:55:00.00Z", "previousVersion": "1.34", "releaseTimestamp": "2012-07-30T03:23:22.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "PJgE3+qrqSjvTo+T972yrgXrGxc=", "title": "JIRA Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jira/1.35/jira.hpi", "version": "1.35", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JIRA+Plugin"}, "job-dsl": {"buildDate": "Nov 13, 2012", "dependencies": [], "developers": [], "excerpt": "The job-dsl-plugin allows the programmatic creation of projects using a DSL. Pushing job creation into a script allows you to automate and standardize your Jenkins installation, unlike anything possible before. ", "gav": "org.jenkinsci.plugins:job-dsl:1.9", "labels": ["builder"], "name": "job-dsl", "previousTimestamp": "2012-11-13T20:48:00.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-11-13T23:09:00.00Z", "requiredCore": "1.456", "scm": "github.com", "sha1": "8SreAPX0QTjyUEUsmmfTL6vDTMU=", "title": "Job DSL Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-dsl/1.9/job-dsl.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin"}, "job-exporter": {"buildDate": "Jan 27, 2012", "dependencies": [], "developers": [{"developerId": "m31", "email": "michael@meyling.com", "name": "Michael Meyling"}], "excerpt": "Adds a build step that exports runtime parameters into a properties file (e.g who triggered the build, what is her email address...). This information can be read by other build steps.", "gav": "org.jenkins-ci.plugins:job-exporter:0.4", "labels": ["builder"], "name": "job-exporter", "previousTimestamp": "2011-03-23T02:31:20.00Z", "previousVersion": "0.3.1", "releaseTimestamp": "2012-01-27T14:48:32.00Z", "requiredCore": "1.433", "scm": "svn.jenkins-ci.org", "sha1": "2SC4lvJtUwtW5e6ImdSJafagjJk=", "title": "Job Exporter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-exporter/0.4/job-exporter.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Exporter+Plugin"}, "job-import-plugin": {"buildDate": "Jul 20, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Import jobs from another Jenkins instance.", "gav": "org.jenkins-ci.plugins:job-import-plugin:1.0", "labels": ["misc"], "name": "job-import-plugin", "releaseTimestamp": "2011-07-21T03:44:40.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "er5mTVmSXct8aVcOVSdTO8xafbY=", "title": "Job Import Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-import-plugin/1.0/job-import-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Import+Plugin"}, "job-log-logger-plugin": {"buildDate": "Jan 17, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Write the job log to the underlying logging system.", "gav": "org.jenkins-ci.plugins:job-log-logger-plugin:1.0", "labels": ["misc", "buildwrapper"], "name": "job-log-logger-plugin", "releaseTimestamp": "2012-01-17T05:14:12.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "ikHWj/fSsoafQKcxjIV9Ov5UOm0=", "title": "Job Log Logger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-log-logger-plugin/1.0/job-log-logger-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Log+Logger+Plugin"}, "job-poll-action-plugin": {"buildDate": "Mar 07, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides an easy mechanism to force a job to poll for SCM changes.", "gav": "org.jenkins-ci.plugins:job-poll-action-plugin:1.0", "labels": ["misc", "trigger"], "name": "job-poll-action-plugin", "releaseTimestamp": "2012-03-08T03:26:34.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "qehDx0VLMjyHlb/uULkO2hKvaxU=", "title": "Job Poll Action Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-poll-action-plugin/1.0/job-poll-action-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Poll+Action+Plugin"}, "job-strongauth-simple": {"buildDate": "Dec 08, 2012", "dependencies": [], "developers": [{"developerId": "kkkon", "name": "KK.Kon"}], "excerpt": "This plugin allows you to safety builds for job, when multi-people approved ", "gav": "org.jenkins-ci.plugins:job-strongauth-simple:0.4", "labels": ["builder"], "name": "job-strongauth-simple", "releaseTimestamp": "2012-12-08T15:46:30.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "ddkld7n8zEWqd4Vgpoojxea9sqg=", "title": "Job StrongAuthSimple Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/job-strongauth-simple/0.4/job-strongauth-simple.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+StrongAuthSimple+Plugin"}, "jobConfigHistory": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "stefanbrausch", "email": "stefanbrausch@dev.java.net", "name": "Stefan Brausch"}, {"developerId": "mfriedenhagen", "email": "mfriedenhagen@gmail.com", "name": "Mirko Friedenhagen"}, {"developerId": "kstutz", "email": "kathi.stutz@1und1.de", "name": "Kathi Stutz"}], "excerpt": "Saves copies of all job and system configurations.", "gav": "org.jenkins-ci.plugins:jobConfigHistory:2.0", "labels": ["ui", "misc"], "name": "jobConfigHistory", "previousTimestamp": "2012-02-01T03:17:22.00Z", "previousVersion": "1.13", "releaseTimestamp": "2012-11-19T16:16:48.00Z", "requiredCore": "1.427", "scm": "github.com", "sha1": "mb4XoK5QUFv2gC1ppju6yoHnYSo=", "title": "JobConfigHistory Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jobConfigHistory/2.0/jobConfigHistory.hpi", "version": "2.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobConfigHistory+Plugin"}, "jobgenerator": {"buildDate": "Dec 10, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "parameterized-trigger", "optional": true, "version": "2.16"}, {"name": "run-condition", "optional": false, "version": "0.10"}], "developers": [{"developerId": "syl20bnr", "email": "sylvain.benner@gmail.com", "name": "Sylvain Benner"}], "excerpt": "This plugin adds a new job type \"Job Generator\" which can generate new projects when executed.", "gav": "org.jenkins-ci.plugins:jobgenerator:1.06", "labels": ["misc", "parameter"], "name": "jobgenerator", "previousTimestamp": "2012-12-10T05:14:38.00Z", "previousVersion": "1.05", "releaseTimestamp": "2012-12-10T08:10:40.00Z", "requiredCore": "1.489", "scm": "github.com", "sha1": "szBdmY+OzsMQoWyWeabrUCNVZhU=", "title": "Job Generator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jobgenerator/1.06/jobgenerator.hpi", "version": "1.06", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Generator+Plugin"}, "jobrevision": {"buildDate": "Jan 03, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin enables users to set a revision (a version) for the Jenkins job.", "gav": "org.jenkins-ci.plugins:jobrevision:0.6", "labels": ["buildwrapper"], "name": "jobrevision", "previousTimestamp": "2011-05-17T01:55:38.00Z", "previousVersion": "0.5", "releaseTimestamp": "2012-01-03T06:10:46.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "q8lTZoa/FC+Yko0SuF7Abii8gYM=", "title": "JobRevision Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jobrevision/0.6/jobrevision.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JobRevision+Plugin"}, "jobtype-column": {"buildDate": "Nov 22, 2012", "dependencies": [], "developers": [{"developerId": "mindless", "email": "alan.harder@gmail.com", "name": "Alan Harder"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Adds column showing job type that can be configured in views.", "gav": "org.jenkins-ci.plugins:jobtype-column:1.3", "labels": ["listview-column"], "name": "jobtype-column", "previousTimestamp": "2011-12-10T05:01:38.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-11-22T05:39:46.00Z", "requiredCore": "1.465", "scm": "github.com", "sha1": "qysh5vJKwHhY17LMuR6H8y//vlg=", "title": "Job Type Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jobtype-column/1.3/jobtype-column.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Job+Type+Column+Plugin"}, "join": {"buildDate": "May 03, 2012", "dependencies": [{"name": "downstream-ext", "optional": true, "version": "1.7"}, {"name": "parameterized-trigger", "optional": true, "version": "2.13"}, {"name": "maven-plugin", "optional": true, "version": "1.424"}, {"name": "copyarchiver", "optional": true, "version": "0.5.1"}], "developers": [{"developerId": "mdonohue", "name": "Michael Donohue"}, {"developerId": "wolfs", "name": "Stefan Wolf"}], "excerpt": "This plugin allows a job to be run after all the immediate downstream jobs have completed.", "gav": "org.jenkins-ci.plugins:join:1.15", "labels": ["trigger"], "name": "join", "previousTimestamp": "2012-04-06T02:00:36.00Z", "previousVersion": "1.14", "releaseTimestamp": "2012-05-03T15:32:50.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "SnyeBC16Q5qMWN+3iKHeCDffmuc=", "title": "Join Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/join/1.15/join.hpi", "version": "1.15", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin"}, "jprt": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "", "gav": "org.jvnet.hudson.plugins:jprt:1.0", "name": "jprt", "releaseTimestamp": "2011-11-04T17:25:44.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "YMOe/KblCN57oAOgNmh6VLIzFxk=", "title": "JPRT Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jprt/1.0/jprt.hpi", "version": "1.0"}, "jquery": {"buildDate": "Nov 15, 2012", "dependencies": [], "developers": [{"developerId": "kiy0taka", "name": "Kiyotaka Oku"}, {"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin is a library plugin for other plugins to share common jQuery. It also allows users to use jQuery on each view descriptions.", "gav": "org.jenkins-ci.plugins:jquery:1.7.2-1", "labels": ["ui", "library"], "name": "jquery", "previousTimestamp": "2012-06-14T22:22:24.00Z", "previousVersion": "1.7.2-0", "releaseTimestamp": "2012-11-16T01:14:04.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "UhqjwZK9YkLzvHoGZkYWAA8cshI=", "title": "jQuery Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jquery/1.7.2-1/jquery.hpi", "version": "1.7.2-1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jQuery+Plugin"}, "jquery-ui": {"buildDate": "Feb 27, 2011", "dependencies": [{"name": "jquery", "optional": false, "version": "1.0.2"}], "developers": [{"developerId": "kiy0taka", "name": "Kiyotaka Oku"}], "excerpt": "This plugin allows you to use jQuery UI on each view descriptions.", "gav": "org.jenkins-ci.plugins:jquery-ui:1.0.2", "labels": ["ui"], "name": "jquery-ui", "previousTimestamp": "2011-02-23T02:37:36.00Z", "previousVersion": "1.0.1", "releaseTimestamp": "2011-02-27T14:16:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ViCgK4dU7QhkDfxlrK5m2Bw89og=", "title": "jQuery UI Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jquery-ui/1.0.2/jquery-ui.hpi", "version": "1.0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/jQuery+UI+Plugin"}, "jsgames": {"buildDate": "Aug 05, 2011", "dependencies": [], "developers": [{"developerId": "cliffano", "email": "blah@cliffano.com", "name": "Cliffano Subagio"}], "excerpt": "Play some JavaScript games from the comfort of your Jenkins instance.", "gav": "org.jenkins-ci.plugins:jsgames:0.2", "labels": [], "name": "jsgames", "previousTimestamp": "2010-08-01T19:42:00.00Z", "previousVersion": "0.1", "releaseTimestamp": "2011-08-05T19:37:08.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Hf5Xs8mph2L8KMF/J8MMt6nsgdk=", "title": "JSGames Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jsgames/0.2/jsgames.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSGames+Plugin"}, "jsoup": {"buildDate": "Sep 17, 2012", "dependencies": [], "developers": [{"developerId": "stephenc", "name": "Stephen Connolly"}], "excerpt": "This plugin provides a shared dependency on the jsoup library so that other plugins can co-operate when using this library.", "gav": "org.jenkins-ci.plugins:jsoup:1.6.3", "labels": [], "name": "jsoup", "releaseTimestamp": "2012-09-17T20:39:06.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "8ikQk817DT/9kj78e8xTq950Olk=", "title": "JSoup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jsoup/1.6.3/jsoup.hpi", "version": "1.6.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSoup+Plugin"}, "jsunit": {"buildDate": "May 15, 2011", "dependencies": [{"name": "xunit", "optional": false, "version": "1.17"}], "developers": [{"developerId": "ricktw", "email": "r.oosterholt@gmail.com", "name": "Rick Oosterholt"}, {"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin allows you publish JSUnit test results ", "gav": "org.jenkins-ci.plugins:jsunit:1.5", "labels": ["report"], "name": "jsunit", "previousTimestamp": "2011-04-01T05:16:00.00Z", "previousVersion": "1.4.2", "releaseTimestamp": "2011-05-16T03:27:22.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "jdoq+tEDly4shNVPMgQJ2oHa4Cs=", "title": "JSUnit plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jsunit/1.5/jsunit.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSUnit+plugin"}, "jswidgets": {"buildDate": "Jun 15, 2012", "dependencies": [], "developers": [{"developerId": "mfriedenhagen", "email": "mfriedenhagen@gmail.com", "name": "Mirko Friedenhagen"}], "excerpt": "Allows embedding various statistics available from Jenkins in your via javascript-snippets ala ohloh.net.", "gav": "org.jenkins-ci.plugins:jswidgets:1.9", "labels": ["ui"], "name": "jswidgets", "previousTimestamp": "2011-02-16T02:51:02.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-06-16T01:20:10.00Z", "requiredCore": "1.424.6", "scm": "github.com", "sha1": "8VrYeQWlVHqo4zpbWRRMhloBlFM=", "title": "JSWidgets Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jswidgets/1.9/jswidgets.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JSWidgets+Plugin"}, "junit-attachments": {"buildDate": "Dec 02, 2012", "dependencies": [{"name": "jquery", "optional": false, "version": "1.7.2-1"}], "developers": [{"developerId": "huybrechts", "name": "Tom Huybrechts"}, {"developerId": "orrc", "email": "chris@orr.me.uk", "name": "Christopher Orr"}], "excerpt": "This plugin can archive certain files (attachments) together with your JUnit results.", "gav": "org.jenkins-ci.plugins:junit-attachments:1.3", "labels": ["report"], "name": "junit-attachments", "previousTimestamp": "2011-12-19T23:31:44.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-12-03T02:26:02.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "jMVSKozdQMSmYL8JF4b2RC4diPw=", "title": "JUnit Attachments Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/junit-attachments/1.3/junit-attachments.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Attachments+Plugin"}, "jython": {"buildDate": "Dec 20, 2011", "dependencies": [], "developers": [{"developerId": "jackgene", "email": "jackgene@java.net", "name": "Jack Leow"}, {"developerId": "rtyler", "email": "tyler@slide.com", "name": "R. Tyler Ballance"}], "excerpt": "Adds the ability to execute Jython script", "gav": "org.jvnet.hudson.plugins:jython:1.9", "labels": ["builder"], "name": "jython", "previousTimestamp": "2011-12-16T05:27:04.00Z", "previousVersion": "1.8", "releaseTimestamp": "2011-12-20T05:44:30.00Z", "requiredCore": "1.377", "scm": "github.com", "sha1": "9U3sTmSg5s5Rwr+HmV+CdVMQ0Qs=", "title": "Jython Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/jython/1.9/jython.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jython+Plugin"}, "kagemai": {"buildDate": "Dec 29, 2009", "dependencies": [], "developers": [{"developerId": "yamkazu"}], "excerpt": "This plugin integrates Kagemai to Hudson.", "gav": "org.jvnet.hudson.plugins:kagemai:1.3", "labels": ["external"], "name": "kagemai", "previousTimestamp": "2009-03-04T05:43:20.00Z", "previousVersion": "1.2", "releaseTimestamp": "2009-12-29T05:16:58.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "tbzjjid8VTIw+JvmX+iBRpO+je8=", "title": "Kagemai Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/kagemai/1.3/kagemai.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kagemai+Plugin"}, "karotz": {"buildDate": "Jul 31, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "sogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin aims to publish build results to your Karotz. ", "gav": "org.jenkins-ci.plugins:karotz:0.2", "labels": ["notifier"], "name": "karotz", "previousTimestamp": "2011-12-23T17:45:56.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-07-31T08:17:20.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "yy4+fUnJy1gpaFGxBRf6vjND03g=", "title": "Karotz Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/karotz/0.2/karotz.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Karotz+Plugin"}, "keepSlaveOffline": {"buildDate": "Feb 10, 2011", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "  This plugin allows to keep given slave offline after Jenkins restart.", "gav": "hudson.plugins.keepSlaveOffline:keepSlaveOffline:1.0", "labels": ["slaves"], "name": "keepSlaveOffline", "releaseTimestamp": "2011-02-10T19:27:06.00Z", "requiredCore": "1.391", "scm": "github.com", "sha1": "AX3TuzSE9BNUo5wiCbdqbPQXDkA=", "title": "Keep slave offline", "url": "http://updates.jenkins-ci.org/download/plugins/keepSlaveOffline/1.0/keepSlaveOffline.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keep+slave+offline"}, "keyboard-shortcuts-plugin": {"buildDate": "Apr 03, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides keyboard shortcuts to quickly and efficiently navigate and manage Jenkins.", "gav": "org.jenkins-ci.plugins:keyboard-shortcuts-plugin:1.2", "labels": ["misc", "ui"], "name": "keyboard-shortcuts-plugin", "previousTimestamp": "2012-03-07T15:09:00.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-04-04T00:59:22.00Z", "requiredCore": "1.455", "scm": "github.com", "sha1": "vKTNGmyvXb6df8sqM9OEQgnvRCw=", "title": "Keyboard Shortcuts Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/keyboard-shortcuts-plugin/1.2/keyboard-shortcuts-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Keyboard+Shortcuts+Plugin"}, "klaros-testmanagement": {"buildDate": "Apr 15, 2011", "dependencies": [], "developers": [{"developerId": "stolp", "email": "stolp@verit.de", "name": "Torsten Stolpmann"}], "excerpt": "Integrates Jenkins with Klaros-Testmanagement by publishing the test results of a build to the Klaros-Testmanagement application. The test results will be stored in the Klaros-Testmanagement database for further evaluation and reporting purposes.", "gav": "hudson.plugins.klaros:klaros-testmanagement:1.4", "labels": ["external"], "name": "klaros-testmanagement", "previousTimestamp": "2011-04-08T18:32:22.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-04-15T19:51:04.00Z", "requiredCore": "1.388", "scm": "svn.jenkins-ci.org", "sha1": "wifWiNAPqqFPgOBYO7cUMdaJTUo=", "title": "Klaros-Testmanagement Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/klaros-testmanagement/1.4/klaros-testmanagement.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Klaros-Testmanagement+Plugin"}, "klocwork": {"buildDate": "Nov 22, 2012", "dependencies": [], "developers": [{"developerId": "Aravindan", "name": "Aravindan Mahendran"}, {"developerId": "gboissinot", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to publish Klocwork reports in Jenkins.", "gav": "org.jenkins-ci.plugins:klocwork:1.14.1", "labels": ["report"], "name": "klocwork", "previousTimestamp": "2012-10-23T02:36:42.00Z", "previousVersion": "1.14", "releaseTimestamp": "2012-11-23T03:12:58.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "57426N92r9ocg1dcUYg/4tmyR64=", "title": "Klocwork Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/klocwork/1.14.1/klocwork.hpi", "version": "1.14.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Klocwork+Plugin"}, "kundo": {"buildDate": "Jan 31, 2010", "dependencies": [], "developers": [{"developerId": "ben_leedham", "name": "Ben Leedham"}], "excerpt": "This plugin allows you to invoke Kundo builds as a Jenkins build step.", "gav": "org.jvnet.hudson.plugins:kundo:0.2", "labels": ["builder"], "name": "kundo", "previousTimestamp": "2009-02-11T16:50:40.00Z", "previousVersion": "0.1", "releaseTimestamp": "2010-01-31T17:35:30.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "WTMU44CrQaDzYSRlsIYf+jJ29fc=", "title": "Kundo Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/kundo/0.2/kundo.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Kundo+Plugin"}, "label-verifier": {"buildDate": "Sep 11, 2010", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin allows system administrator to programmatically verify the label assignment correctness on slaves.", "gav": "org.jvnet.hudson.plugins:label-verifier:1.0", "labels": ["slaves"], "name": "label-verifier", "releaseTimestamp": "2010-09-11T20:15:24.00Z", "requiredCore": "1.376", "scm": "svn.dev.java.net", "sha1": "Z6+Xt/IhP6jRa3xJ1JuC81NxTLA=", "title": "Label Verifier Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/label-verifier/1.0/label-verifier.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Label+Verifier+Plugin"}, "labeled-test-groups-publisher": {"buildDate": "Mar 20, 2010", "dependencies": [], "developers": [{"developerId": "dty"}], "excerpt": "This plugin provides the functionality to group tests by types, such as \"unit test\", \"smoke test\", \"regression test\", etc.", "gav": "org.jvnet.hudson.plugins:labeled-test-groups-publisher:1.2.6", "labels": ["report"], "name": "labeled-test-groups-publisher", "previousTimestamp": "2010-03-19T15:11:46.00Z", "previousVersion": "1.2.4", "releaseTimestamp": "2010-03-20T18:56:44.00Z", "requiredCore": "1.343", "scm": "hudson.dev.java.net", "sha1": "qKOSENwI3uZqYm9v8iaBDs1RMf0=", "title": "LabeledTestGroupsPublisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/labeled-test-groups-publisher/1.2.6/labeled-test-groups-publisher.hpi", "version": "1.2.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LabeledTestGroupsPublisher+Plugin"}, "labmanager": {"buildDate": "Aug 05, 2011", "dependencies": [], "developers": [{"developerId": "tomrini", "email": "trini@kernel.crashing.org", "name": "Tom Rini"}], "excerpt": "Add VMware Lab Manager support to Jenkins", "gav": "org.jenkins-ci.plugins:labmanager:0.2.8", "labels": ["cluster"], "name": "labmanager", "previousTimestamp": "2011-07-18T19:12:32.00Z", "previousVersion": "0.2.7", "releaseTimestamp": "2011-08-05T14:42:14.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "qc+HiOyoRAPvDCyvrtQ9W9pmLQ4=", "title": "Lab Manager Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/labmanager/0.2.8/labmanager.hpi", "version": "0.2.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lab+Manager+Plugin"}, "lastfailureversioncolumn": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "ajpurkiss", "email": "ajpurkiss@hotmail.com", "name": "Adam Purkiss"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Adds a column showing last failed version that can be configured in views.", "gav": "org.jvnet.hudson.plugins:lastfailureversioncolumn:1.1", "labels": ["listview-column"], "name": "lastfailureversioncolumn", "previousTimestamp": "2009-11-25T15:12:18.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-11-02T19:54:40.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "TrjhYHvx09364NnzSgkj+XqemQg=", "title": "Last Failure Version Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/lastfailureversioncolumn/1.1/lastfailureversioncolumn.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Failure+Version+Column+Plugin"}, "lastsuccessdescriptioncolumn": {"buildDate": "Mar 29, 2010", "dependencies": [], "developers": [{"developerId": "stephenconnolly", "email": "stephenc at apache", "name": "Stephen Connolly"}], "excerpt": "Column showing the last success description that can be configured in views.", "gav": "org.jvnet.hudson.plugins:lastsuccessdescriptioncolumn:1.0", "labels": ["listview-column"], "name": "lastsuccessdescriptioncolumn", "releaseTimestamp": "2010-03-29T16:03:02.00Z", "requiredCore": "1.352", "scm": "svn.dev.java.net", "sha1": "I2n8cOXtRE3nJI/spxIMtHBAxn8=", "title": "Last Success Description Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/lastsuccessdescriptioncolumn/1.0/lastsuccessdescriptioncolumn.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Description+Column+Plugin"}, "lastsuccessversioncolumn": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "ajpurkiss", "email": "ajpurkiss@hotmail.com", "name": "Adam Purkiss"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Adds a column showing last successful version that can be configured in views.", "gav": "org.jvnet.hudson.plugins:lastsuccessversioncolumn:1.1", "labels": ["listview-column"], "name": "lastsuccessversioncolumn", "previousTimestamp": "2009-11-25T15:15:48.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-11-02T20:23:24.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "MTwbngVgz/iGTTeZwjEviC8CIHo=", "title": "Last Success Version Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/lastsuccessversioncolumn/1.1/lastsuccessversioncolumn.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Last+Success+Version+Column+Plugin"}, "ldap": {"buildDate": "Dec 06, 2012", "dependencies": [], "developers": [{"developerId": "olamy"}], "excerpt": "Security realm based on LDAP authentication.", "gav": "org.jenkins-ci.plugins:ldap:1.2", "labels": ["user"], "name": "ldap", "previousTimestamp": "2012-06-11T12:46:48.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-12-06T05:07:48.00Z", "requiredCore": "1.468", "scm": "github.com", "sha1": "IGPQPJsTRl4d9UHjBldQ4P8DKNo=", "title": "LDAP Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ldap/1.2/ldap.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin"}, "ldapemail": {"buildDate": "Feb 14, 2011", "dependencies": [], "developers": [{"developerId": "justinedelson", "name": "Justin Edelson"}], "excerpt": "This plugin resolves user email addresses from an LDAP directory. It is not needed if Jenkins uses LDAP as its authentication source and user records have a standard \"mail\" attribute.", "gav": "com.mtvi.plateng.hudson:ldapemail:0.7", "labels": ["user"], "name": "ldapemail", "previousTimestamp": "2010-01-31T20:19:28.00Z", "previousVersion": "0.6", "releaseTimestamp": "2011-02-14T15:47:26.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "Q1UqwPQJ9sILBa8KpiC6hzozVD4=", "title": "LDAP Email Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ldapemail/0.7/ldapemail.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Email+Plugin"}, "leiningen-plugin": {"buildDate": "Oct 29, 2012", "dependencies": [], "developers": [{"developerId": "pyr", "email": "pyr@spootnik.org", "name": "Pierre-Yves Ritschard"}], "excerpt": "This plugin allows building projects using leiningen. ", "gav": "org.jenkins-ci.plugins:leiningen-plugin:0.5.5", "labels": ["builder"], "name": "leiningen-plugin", "previousTimestamp": "2012-09-07T13:11:38.00Z", "previousVersion": "0.5.4", "releaseTimestamp": "2012-10-29T19:00:26.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "EK4cKrLwhOuqEbpcnMmg4SG39ro=", "title": "leiningen plugin", "url": "http://updates.jenkins-ci.org/download/plugins/leiningen-plugin/0.5.5/leiningen-plugin.hpi", "version": "0.5.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/leiningen+plugin"}, "libvirt-slave": {"buildDate": "Apr 01, 2010", "dependencies": [], "developers": [{"developerId": "mmornati", "email": "mmornati@byte-code.com", "name": "Marco Mornati"}], "excerpt": "Add Libvirt Hypervisor support to Jenkins ", "gav": "hudson.plugins.libvirt:libvirt-slave:1.6", "labels": ["slaves", "cluster"], "name": "libvirt-slave", "previousTimestamp": "2010-03-30T15:22:16.00Z", "previousVersion": "1.5", "releaseTimestamp": "2010-04-01T13:31:26.00Z", "requiredCore": "1.347", "scm": "svn.dev.java.net", "sha1": "3JDC9QPj5p+JJMdiNaDMYgWJpc4=", "title": "Libvirt Slaves Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/libvirt-slave/1.6/libvirt-slave.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Libvirt+Slaves+Plugin"}, "lingr-plugin": {"buildDate": "Jul 03, 2011", "dependencies": [], "developers": [{"developerId": "cactusman", "email": "cactusman1980@gmail.com", "name": "cactusman"}], "excerpt": "This plugin posts build results to Lingr.", "gav": "org.jenkins-ci.plugins:lingr-plugin:0.1", "labels": [], "name": "lingr-plugin", "releaseTimestamp": "2011-07-04T03:14:14.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "LO6eODnAR0TTzMunzjDmv9LZLk0=", "title": "lingr plugin", "url": "http://updates.jenkins-ci.org/download/plugins/lingr-plugin/0.1/lingr-plugin.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/lingr+plugin"}, "list-command": {"buildDate": "Dec 13, 2011", "dependencies": [], "developers": [{"developerId": "wadatka", "name": "Takahisa Wada"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:list-command:0.2", "labels": ["cli"], "name": "list-command", "releaseTimestamp": "2011-12-13T06:39:14.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "wsiA/aNli+2UOL7iYNN9pQqiFng=", "title": "List Command Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/list-command/0.2/list-command.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/List+Command+Plugin"}, "liverebel-deploy": {"buildDate": "Nov 21, 2012", "dependencies": [], "developers": [{"developerId": "toomasr", "name": "Toomas Romer"}, {"developerId": "DracoAter", "name": "Juri Timosin"}, {"developerId": "mirkozt", "name": "Mirko Adari"}, {"developerId": "atsuiboupin", "name": "Ats Uiboupin"}, {"developerId": "poolik", "name": "Tonis Pool"}], "excerpt": "LiveRebel Plugin helps to run updates to your JEE containers faster. LiveRebel is a tool for hot updates without downtime, lost sessions and OutOfMemoryErrors. You have to have a running LiveRebel Command Center to use this plugin.", "gav": "org.jenkins-ci.plugins:liverebel-deploy:2.5.4", "name": "liverebel-deploy", "previousTimestamp": "2012-11-22T00:05:34.00Z", "previousVersion": "2.5.3", "releaseTimestamp": "2012-11-22T00:45:14.00Z", "requiredCore": "1.423", "scm": "github.com", "sha1": "vNUI81TLpPqia5XY6Epc8tGpMWg=", "title": "LiveRebel Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/liverebel-deploy/2.5.4/liverebel-deploy.hpi", "version": "2.5.4"}, "locale": {"buildDate": "Feb 14, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin controls the language of Jenkins", "gav": "org.jvnet.hudson.plugins:locale:1.2", "labels": ["ui"], "name": "locale", "previousTimestamp": "2009-12-30T20:34:04.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-02-14T15:32:34.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "HmtbDDPNAYBO4A4OWzjUg4zzyQY=", "title": "Locale Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/locale/1.2/locale.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locale+Plugin"}, "locked-files-report": {"buildDate": "Feb 03, 2012", "dependencies": [], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}], "excerpt": "This debug plugin fails a build if there are locked files in the workspace at the begining or end of a build.", "gav": "org.jvnet.hudson.plugins:locked-files-report:1.6", "labels": ["misc"], "name": "locked-files-report", "previousTimestamp": "2011-11-17T04:11:50.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-02-03T16:37:10.00Z", "requiredCore": "1.363", "scm": "github.com", "sha1": "RTRJ07yTXFfmfA5guhnhmIw2zig=", "title": "Locked Files Report Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/locked-files-report/1.6/locked-files-report.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locked+Files+Report+Plugin"}, "locks-and-latches": {"buildDate": "Apr 16, 2010", "dependencies": [], "developers": [{"developerId": "F276977"}], "excerpt": "This plugin allows you to control the parallel execution of jobs.", "gav": "org.jvnet.hudson.plugins:locks-and-latches:0.6", "labels": ["trigger", "buildwrapper"], "name": "locks-and-latches", "previousTimestamp": "2009-12-26T17:42:06.00Z", "previousVersion": "0.5", "releaseTimestamp": "2010-04-16T18:46:48.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "zbuMjM7kQDsLt4fkzLxcCZWAcEI=", "title": "Locks and Latches plugin", "url": "http://updates.jenkins-ci.org/download/plugins/locks-and-latches/0.6/locks-and-latches.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Locks+and+Latches+plugin"}, "log-command": {"buildDate": "Nov 20, 2012", "dependencies": [{"name": "instant-messaging", "optional": true, "version": "1.22"}], "developers": [{"developerId": "ialbors", "name": "Ignacio Albors"}], "excerpt": "Adds a command for the CLI which shows a build's console log. If instant-messaging-plugin is installed, it also provides a command for it (Jabber, IRC, ...).", "gav": "org.jenkins-ci.plugins:log-command:1.0.1", "labels": ["cli"], "name": "log-command", "previousTimestamp": "2012-11-14T21:57:28.00Z", "previousVersion": "1.0.0", "releaseTimestamp": "2012-11-20T18:13:08.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "463jFhLMW7JM0p4leFcAdOnx8gM=", "title": "Log Command", "url": "http://updates.jenkins-ci.org/download/plugins/log-command/1.0.1/log-command.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Log+Command"}, "log-parser": {"buildDate": "Dec 14, 2010", "dependencies": [], "developers": [{"developerId": "rgoren", "email": "rgoren@cisco.com", "name": "Rinat Ailon"}, {"developerId": "jborghi", "name": "John Borghi"}], "excerpt": "Parse the console output and highlight error/warning/info lines.", "gav": "org.jvnet.hudson.plugins:log-parser:1.0.8", "labels": ["report"], "name": "log-parser", "previousTimestamp": "2010-08-24T18:30:26.00Z", "previousVersion": "1.0.7", "releaseTimestamp": "2010-12-14T23:30:40.00Z", "requiredCore": "1.350", "scm": "svn.java.net", "sha1": "E7PtHvlAe19jLoUL4auFXjFBuQI=", "title": "Log Parser Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/log-parser/1.0.8/log-parser.hpi", "version": "1.0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin"}, "logaction-plugin": {"buildDate": "Dec 09, 2011", "dependencies": [], "developers": [{"developerId": "tspengler", "name": "Thomas Spengler"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Centralized configuration to restart jobs when a pattern occurs in the job console output.", "gav": "de.fspengler.hudson.plugin:logaction-plugin:1.2", "labels": ["trigger"], "name": "logaction-plugin", "releaseTimestamp": "2011-12-09T20:10:58.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "h5n7nAMn1cTIE76p72JCU8Sdn/I=", "title": "Centralized Job(Re)Action Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/logaction-plugin/1.2/logaction-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Centralized+Job%28Re%29Action+Plugin"}, "logfilesizechecker": {"buildDate": "Sep 10, 2012", "dependencies": [], "developers": [{"developerId": "stefanbrausch", "email": "stefan.brausch@1und1.de", "name": "Stefan Brausch"}, {"developerId": "kstutz", "email": "logfilesizechecker@kathistutz.de", "name": "Kathi Stutz"}], "excerpt": "Aborts a build if its log file gets too big.", "gav": "org.jenkins-ci.plugins:logfilesizechecker:1.0", "labels": ["buildwrapper"], "name": "logfilesizechecker", "releaseTimestamp": "2012-09-10T21:16:48.00Z", "requiredCore": "1.424.6", "scm": "github.com", "sha1": "ViVedzoIuG7IweIxL3YWunyDm6Y=", "title": "Logfilesizechecker Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/logfilesizechecker/1.0/logfilesizechecker.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logfilesizechecker+Plugin"}, "logging": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "wolfgarnet", "email": "coolers@praqma.net", "name": "Christian Wolfgang"}], "excerpt": "Advanced logging for Jenkins", "gav": "net.praqma:logging:0.2.6", "labels": ["misc"], "name": "logging", "previousTimestamp": "2012-10-01T19:03:04.00Z", "previousVersion": "0.2.5", "releaseTimestamp": "2012-11-06T05:57:54.00Z", "requiredCore": "1.483", "scm": "github.com", "sha1": "KnnEo1edZZYMFF1p7EmpCk+UTjA=", "title": "Logging Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/logging/0.2.6/logging.hpi", "version": "0.2.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Logging+Plugin"}, "lotus-connections-plugin": {"buildDate": "Nov 07, 2012", "dependencies": [], "developers": [{"developerId": "philrumble", "email": "prumble@au1.ibm.com", "name": "Phil Rumble"}], "excerpt": "This plugin posts build results to Lotus Connections. ", "gav": "org.jenkins-ci.plugins:lotus-connections-plugin:1.18", "labels": ["notifier"], "name": "lotus-connections-plugin", "previousTimestamp": "2012-11-06T15:25:30.00Z", "previousVersion": "1.17", "releaseTimestamp": "2012-11-07T16:25:10.00Z", "requiredCore": "1.425", "scm": "github.com", "sha1": "qrrK3PuD7dIX/OFNTW3+6y42v00=", "title": "Lotus Connections plugin", "url": "http://updates.jenkins-ci.org/download/plugins/lotus-connections-plugin/1.18/lotus-connections-plugin.hpi", "version": "1.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Lotus+Connections+plugin"}, "m2-extra-steps": {"buildDate": "Mar 06, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.405"}], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}], "excerpt": "Deprecated since core 1.433. This plugin provides the ability to add pre\\- and post-build steps to Maven 2-type projects.", "gav": "org.jenkins-ci.plugins:m2-extra-steps:1.1.7", "labels": ["maven", "buildwrapper"], "name": "m2-extra-steps", "previousTimestamp": "2011-02-17T22:02:08.00Z", "previousVersion": "1.1.4", "releaseTimestamp": "2012-03-06T15:24:48.00Z", "requiredCore": "1.405", "scm": "github.com", "sha1": "NXhS+oZu2LXH+r3owM8g+KQjY4M=", "title": "M2 Extra Steps Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/m2-extra-steps/1.1.7/m2-extra-steps.hpi", "version": "1.1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/M2+Extra+Steps+Plugin"}, "m2-repo-reaper": {"buildDate": "Oct 04, 2009", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.326"}], "developers": [{"developerId": "bimargulies", "email": "bimargulies@gmail.com", "name": "Benson Margulies"}], "excerpt": "This plugin allows you to configure a maven2 job to clean some or all of the artifacts from the repository before it runs.", "gav": "org.jvnet.hudson.plugins:m2-repo-reaper:1.0", "labels": ["maven"], "name": "m2-repo-reaper", "releaseTimestamp": "2009-10-04T22:36:20.00Z", "requiredCore": "1.326", "scm": "svn.dev.java.net", "sha1": "OfP4GcPtlYX4tSKveYgBKar1/IU=", "title": "M2 Repository Cleanup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/m2-repo-reaper/1.0/m2-repo-reaper.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/M2+Repository+Cleanup+Plugin"}, "m2release": {"buildDate": "Mar 01, 2012", "dependencies": [{"name": "maven-plugin", "optional": true, "version": "2.2.1"}, {"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": true, "version": "1.442"}], "developers": [{"developerId": "teilo", "name": "James Nord"}, {"developerId": "m68k", "name": "Christian Slama"}, {"developerId": "imod", "name": "Dominik Bartholdi"}], "excerpt": "This plugin allows you to perform a release build using the maven-release-plugin from within Jenkins. ", "gav": "org.jvnet.hudson.plugins.m2release:m2release:0.9.1", "labels": ["buildwrapper", "maven"], "name": "m2release", "previousTimestamp": "2012-02-14T02:16:34.00Z", "previousVersion": "0.9.0", "releaseTimestamp": "2012-03-02T03:07:30.00Z", "requiredCore": "1.442", "scm": "github.com", "sha1": "gvSzteQBQNyKsA8/n4CjA1gKY9w=", "title": "M2 Release Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/m2release/0.9.1/m2release.hpi", "version": "0.9.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/M2+Release+Plugin"}, "mail-watcher-plugin": {"buildDate": "Nov 27, 2012", "dependencies": [], "developers": [{"developerId": "olivergondza", "email": "ogondza@redhat.org", "name": "Oliver Gondža"}], "excerpt": "This plugin notifies configured email recipients on various events.", "gav": "org.jenkins-ci.plugins:mail-watcher-plugin:1.4", "labels": ["notifier"], "name": "mail-watcher-plugin", "previousTimestamp": "2012-08-13T16:02:28.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-11-27T19:29:00.00Z", "requiredCore": "1.460", "scm": "github.com", "sha1": "qoNIny4C0Cla2oCPvE6v5emFZ6U=", "title": "Mail Watcher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mail-watcher-plugin/1.4/mail-watcher-plugin.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Watcher+Plugin"}, "mailcommander": {"buildDate": "Mar 29, 2011", "dependencies": [], "developers": [{"developerId": "sikakura", "email": "sikakura@gmail.com", "name": "Naoto Shikakura"}], "excerpt": "This plugin is provide function that command with e-mail. Write CLI command to e-mail subject and send to pre setting address. Mail Commander recieve e-mail from pre setting address, and read e-mail subject as CLI command, execute it. ", "gav": "org.jenkins-ci.plugins:mailcommander:1.0.0", "labels": ["misc", "trigger"], "name": "mailcommander", "releaseTimestamp": "2011-03-29T22:40:10.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "VIMj7SMq0q1KjiWU3XV2LoKl4ck=", "title": "Mail Commander Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mailcommander/1.0.0/mailcommander.hpi", "version": "1.0.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mail+Commander+Plugin"}, "mailer": {"buildDate": "Dec 11, 2012", "dependencies": [], "developers": [{"developerId": "slide", "email": "slide.o.mix@gmail.com", "name": "Alex Earl"}], "excerpt": "This plugin allows you to configure email notifications. This is a break-out of the original core based email component.", "gav": "org.jenkins-ci.plugins:mailer:1.4", "labels": [], "name": "mailer", "previousTimestamp": "2012-12-09T11:47:18.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-12-11T14:57:26.00Z", "requiredCore": "1.494", "scm": "github.com", "sha1": "bFbSgXi8beI21BGEtWNXXsXHSSU=", "title": "Mailer", "url": "http://updates.jenkins-ci.org/download/plugins/mailer/1.4/mailer.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mailer"}, "managed-scripts": {"buildDate": "Oct 11, 2012", "dependencies": [{"name": "config-file-provider", "optional": false, "version": "2.0"}], "developers": [{"developerId": "imod", "name": "Dominik Bartholdi"}], "excerpt": "Managed scripts are shell script which are managed centrally by an administrator and can be referenced as a build step within jobs. ", "gav": "org.jenkinsci.plugins:managed-scripts:1.0.1", "labels": ["builder"], "name": "managed-scripts", "previousTimestamp": "2012-04-14T15:53:10.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-10-11T23:22:04.00Z", "requiredCore": "1.458", "scm": "github.com", "sha1": "XoL/aR2532IzNJMWVLEMtPT0jTM=", "title": "Managed Script Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/managed-scripts/1.0.1/managed-scripts.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Managed+Script+Plugin"}, "mantis": {"buildDate": "May 01, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}, {"name": "mercurial", "optional": true, "version": "1.38"}, {"name": "cvs", "optional": true, "version": "2.0"}, {"name": "git", "optional": true, "version": "1.1.16"}, {"name": "subversion", "optional": true, "version": "1.34"}], "developers": [{"developerId": "sogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin integrates Mantis Bug Tracker to Jenkins.", "gav": "org.jenkins-ci.plugins:mantis:0.24", "labels": ["external"], "name": "mantis", "previousTimestamp": "2012-04-01T14:45:38.00Z", "previousVersion": "0.23", "releaseTimestamp": "2012-05-01T08:03:46.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "7Bck6rhjKQo4D2Xkv0eRxCA+gtY=", "title": "Mantis Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mantis/0.24/mantis.hpi", "version": "0.24", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mantis+Plugin"}, "mask-passwords": {"buildDate": "Dec 07, 2011", "dependencies": [], "developers": [{"developerId": "rseguy", "email": "romain.seguy@gmail.com", "name": "Romain Seguy"}], "excerpt": "This plugin allows masking passwords that may appear in the console", "gav": "org.jenkins-ci.plugins:mask-passwords:2.7.2", "labels": ["misc", "buildwrapper"], "name": "mask-passwords", "previousTimestamp": "2011-10-27T14:08:40.00Z", "previousVersion": "2.7.1", "releaseTimestamp": "2011-12-07T22:34:20.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "KYnDW0mS7LT9QqcbiQGwSnrHcY0=", "title": "Mask Passwords Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mask-passwords/2.7.2/mask-passwords.hpi", "version": "2.7.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mask+Passwords+Plugin"}, "matrix-reloaded": {"buildDate": "Jun 05, 2012", "dependencies": [{"name": "downstream-ext", "optional": true, "version": "1.7"}], "developers": [{"developerId": "wolfgarnet", "email": "coolers@praqma.net", "name": "Christian Wolfgang"}], "excerpt": "The Matrix Reloaded Plugin allows for rebuilding parts of an already built Matrix build.", "gav": "net.praqma:matrix-reloaded:1.1.0", "labels": ["misc"], "name": "matrix-reloaded", "previousTimestamp": "2012-01-27T10:25:14.00Z", "previousVersion": "1.0.2", "releaseTimestamp": "2012-06-05T05:29:20.00Z", "requiredCore": "1.418", "scm": "github.com", "sha1": "xSvwhLU6lvwdwxSVGSA2UI0h+m4=", "title": "Matrix Reloaded Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/matrix-reloaded/1.1.0/matrix-reloaded.hpi", "version": "1.1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Reloaded+Plugin"}, "matrixtieparent": {"buildDate": "Aug 23, 2010", "dependencies": [], "developers": [{"developerId": "kbertelson", "name": "Ken Bertelson"}], "excerpt": "Ties the parent build of a multi-configuration project to a node.", "gav": "org.jvnet.hudson.plugins:matrixtieparent:1.1", "labels": ["buildwrapper"], "name": "matrixtieparent", "previousTimestamp": "2010-06-08T12:23:20.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-08-23T20:51:26.00Z", "requiredCore": "1.373", "scm": "svn.dev.java.net", "sha1": "rwErLQ/J5sYGD0Vz/wCzwzYpe00=", "title": "Matrix Tie Parent Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/matrixtieparent/1.1/matrixtieparent.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Tie+Parent+Plugin"}, "maven-dependency-update-trigger": {"buildDate": "Dec 30, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424.1"}], "developers": [{"developerId": "olamy", "email": "olamy@apache.org"}], "excerpt": "This plugin will check if any SNAPSHOT dependencies (or optionally plugins SNAPSHOT) have been updated during your project's dependencies resolution and trigger a build. You have to configure a cron expression.", "gav": "org.jenkins-ci.plugins:maven-dependency-update-trigger:1.4", "labels": ["trigger"], "name": "maven-dependency-update-trigger", "previousTimestamp": "2011-08-13T14:44:12.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-12-30T21:15:14.00Z", "requiredCore": "1.424.1", "scm": "github.com", "sha1": "QbYx4H55qskJfKAf/poqBbLjZ4w=", "title": "Maven Dependency Update trigger", "url": "http://updates.jenkins-ci.org/download/plugins/maven-dependency-update-trigger/1.4/maven-dependency-update-trigger.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Dependency+Update+trigger"}, "maven-deployment-linker": {"buildDate": "May 11, 2012", "dependencies": [{"name": "async-http-client", "optional": false, "version": "1.7.4"}], "developers": [{"developerId": "lshatzer", "email": "larrys@gmail.com", "name": "Larry Shatzer, Jr."}, {"developerId": "vlatombe", "email": "vincent.latombe@gmail.com", "name": "Vincent Latombe"}, {"developerId": "aheritier", "email": "aheritier@apache.org", "name": "Arnaud H�ritier"}, {"developerId": "imod", "name": "Dominik Bartholdi"}], "excerpt": "This plugin will add a summary on the build of the artifacts uploaded to your maven repository and a builder to download the uploaded artifacts to other projects. ", "gav": "org.jvnet.hudson.plugins:maven-deployment-linker:1.5", "labels": ["maven", "misc", "post-build"], "name": "maven-deployment-linker", "previousTimestamp": "2011-11-30T18:16:40.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-05-11T10:12:24.00Z", "requiredCore": "1.406", "scm": "github.com", "sha1": "WQoh5v7YkBXt6ElM1Q0Awx+MoiU=", "title": "Maven Deployment Linker", "url": "http://updates.jenkins-ci.org/download/plugins/maven-deployment-linker/1.5/maven-deployment-linker.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Deployment+Linker"}, "maven-info": {"buildDate": "Apr 11, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.403"}], "developers": [{"developerId": "tomfolga", "email": "tomfolga@gmail.com", "name": "Tom Folga"}, {"developerId": "olamy", "email": "olamy@apache.org", "name": "Olivier Lamy"}], "excerpt": "Adds columns configurable in views to show info about Maven jobs.", "gav": "org.tomfolga:maven-info:0.0.4", "labels": ["maven", "listview-column"], "name": "maven-info", "previousTimestamp": "2009-12-28T22:52:10.00Z", "previousVersion": "0.0.3", "releaseTimestamp": "2011-04-12T03:38:06.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "2dBQ8RFU8doGYPwiOwt/0wrF03s=", "title": "Maven Info Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/maven-info/0.0.4/maven-info.hpi", "version": "0.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Info+Plugin"}, "maven-invoker-plugin": {"buildDate": "Sep 26, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "olamy"}], "excerpt": "Display reports on Maven Invoker it tests.", "gav": "org.jenkins-ci.plugins:maven-invoker-plugin:1.2", "labels": ["maven", "external"], "name": "maven-invoker-plugin", "previousTimestamp": "2012-08-07T16:07:34.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-09-26T14:59:44.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "t+q8qhvZtYEhCP2h9ydHmsoW54o=", "title": "Maven Invoker Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/maven-invoker-plugin/1.2/maven-invoker-plugin.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Invoker+Plugin"}, "maven-metadata-plugin": {"buildDate": "Apr 17, 2012", "dependencies": [], "developers": [{"developerId": "markov", "email": "gesh@markov.eu", "name": "Georgi \"Gesh\" Markov"}], "excerpt": "This plugin adds a new build parameter type for resolving artifact versions reading the repository maven-metadata.xml. ", "gav": "eu.markov.jenkins.plugin.mvnmeta:maven-metadata-plugin:1.0.0", "labels": ["maven", "parameter"], "name": "maven-metadata-plugin", "releaseTimestamp": "2012-04-17T04:37:50.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "Ibn9AwLZAwe70Eg9ARNhOfoxIGU=", "title": "Maven Metadata Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/maven-metadata-plugin/1.0.0/maven-metadata-plugin.hpi", "version": "1.0.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Metadata+Plugin"}, "maven-plugin": {"buildDate": "Dec 09, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.1"}, {"name": "javadoc", "optional": false, "version": "1.0"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "Jenkin's Maven 2 project type", "gav": "org.jenkins-ci.main:maven-plugin:1.493", "labels": ["builder"], "name": "maven-plugin", "previousTimestamp": "2012-11-26T03:36:34.00Z", "previousVersion": "1.492", "releaseTimestamp": "2012-12-09T12:51:30.00Z", "requiredCore": "1.493", "scm": "github.com", "sha1": "/8jWscQ3cou3C48oSPQQIJHYupY=", "title": "Maven 2 Project Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/maven-plugin/1.493/maven-plugin.hpi", "version": "1.493", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin"}, "maven-repo-cleaner": {"buildDate": "Apr 24, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}, {"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "Clean your jobs maven repositories.", "gav": "org.jenkins-ci.plugins:maven-repo-cleaner:1.1", "labels": ["maven", "external"], "name": "maven-repo-cleaner", "previousTimestamp": "2011-08-03T03:44:36.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-04-24T17:37:56.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "cwzEMLswbxcEtnSxBw6PZs34yMs=", "title": "Maven Repo Cleaner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/maven-repo-cleaner/1.1/maven-repo-cleaner.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Maven+Repo+Cleaner+Plugin"}, "measurement-plots": {"buildDate": "Apr 07, 2010", "dependencies": [], "developers": [{"developerId": "krwalker", "email": "krwalker@stellarscience.com", "name": "K. R. Walker"}], "excerpt": "Plot measurements embedded into the standard output and error streams of tests.", "gav": "org.jvnet.hudson.plugins:measurement-plots:0.1", "labels": ["report", "ui"], "name": "measurement-plots", "releaseTimestamp": "2010-04-07T15:51:46.00Z", "requiredCore": "1.353", "scm": "svn.dev.java.net", "sha1": "amNqnjOy0kALkROSNj7RlllqBes=", "title": "Measurement Plots Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/measurement-plots/0.1/measurement-plots.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Measurement+Plots+Plugin"}, "memegen": {"buildDate": "Aug 18, 2012", "dependencies": [], "developers": [{"developerId": "joonty", "email": "jon@joncairns.com", "name": "Jon Cairns"}], "excerpt": "Generate Meme images when a build fails (and returns to stable), and post them on the project page.", "gav": "hudson.plugins.memegen:memegen:0.4.3", "labels": ["misc"], "name": "memegen", "previousTimestamp": "2012-07-25T16:46:46.00Z", "previousVersion": "0.4.2", "releaseTimestamp": "2012-08-18T18:27:52.00Z", "requiredCore": "1.428", "scm": "github.com", "sha1": "a2YT4odR+TftMmBR1GM/xyZUepg=", "title": "Meme Generator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/memegen/0.4.3/memegen.hpi", "version": "0.4.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Meme+Generator+Plugin"}, "mercurial": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "jglick", "email": "jglick@cloudbees.com", "name": "Jesse Glick"}, {"developerId": "mfriedenhagen", "email": "mfriedenhagen@gmail.com", "name": "Mirko Friedenhagen"}, {"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "davidmc24", "email": "david@carrclan.us", "name": "David M. Carr"}], "excerpt": "This plugin integrates the Mercurial version control system with Jenkins.", "gav": "org.jenkins-ci.plugins:mercurial:1.42", "labels": ["scm"], "name": "mercurial", "previousTimestamp": "2012-06-05T15:32:46.00Z", "previousVersion": "1.41", "releaseTimestamp": "2012-11-06T15:44:52.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "4p47jh0Wvfq2hzF5vhXW+rcBdeg=", "title": "Mercurial Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mercurial/1.42/mercurial.hpi", "version": "1.42", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mercurial+Plugin"}, "metadata": {"buildDate": "Nov 22, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.424"}], "developers": [{"developerId": "rsandell", "email": "robert.sandell@sonymobile.com", "name": "Robert Sandell"}, {"developerId": "t_westling", "email": "tomas.westling@sonymobile.com", "name": "Tomas Westling"}], "excerpt": "This plugin allows metadata to be added to projects, builds and slaves in Jenkins. Users can add metadata manually on a project or slave via the user interface. Metadata can also be added programmatically through a plugin. Currently, this can be done when a build starts or when a build ends. The Metadata can then be searched for.", "gav": "com.sonyericsson.hudson.plugins.metadata:metadata:1.0b", "labels": ["misc", "cli", "library", "ui"], "name": "metadata", "releaseTimestamp": "2012-11-22T20:54:58.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "csrASr2vYSgQW3oRcPSwYgsH5hc=", "title": "Metadata plugin", "url": "http://updates.jenkins-ci.org/download/plugins/metadata/1.0b/metadata.hpi", "version": "1.0b", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Metadata+plugin"}, "mock-security-realm": {"buildDate": "Oct 15, 2012", "dependencies": [], "developers": [{"developerId": "jglick", "email": "jglick@cloudbees.com", "name": "Jesse Glick"}], "excerpt": "Defines an insecure “security realmâ€? only good for testing/demoing other parts of the system, such as authorization strategy.", "gav": "org.jenkins-ci.plugins:mock-security-realm:1.0", "labels": ["user"], "name": "mock-security-realm", "releaseTimestamp": "2012-10-15T21:43:26.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "p1Mn51uVzjA3NY8WctfAC/Flrjk=", "title": "Mock Security Realm Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mock-security-realm/1.0/mock-security-realm.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mock+Security+Realm+Plugin"}, "mongodb": {"buildDate": "Aug 13, 2011", "dependencies": [], "developers": [{"developerId": "kiy0taka", "name": "Kiyotaka Oku"}], "excerpt": "This plugin provides MongoDB integration capabilities.", "gav": "org.jenkins-ci.plugins:mongodb:1.1", "labels": ["buildwrapper"], "name": "mongodb", "previousTimestamp": "2011-06-13T03:10:04.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-08-13T22:25:40.00Z", "requiredCore": "1.415", "scm": "github.com", "sha1": "LHjhJQsYgihyz1oMMWHmxY++lzA=", "title": "MongoDB Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mongodb/1.1/mongodb.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MongoDB+Plugin"}, "monitoring": {"buildDate": "Dec 02, 2012", "dependencies": [], "developers": [{"developerId": "evernat", "email": "evernat@free.fr", "name": "Emeric Vernat"}], "excerpt": "Monitoring plugin: Monitoring of Jenkins / Hudson itself with JavaMelody. Open the report (or [http://yourhost/monitoring]) after installation. ", "gav": "org.jvnet.hudson.plugins:monitoring:1.42.0", "labels": ["misc"], "name": "monitoring", "previousTimestamp": "2012-09-30T20:11:20.00Z", "previousVersion": "1.41.0", "releaseTimestamp": "2012-12-03T04:53:36.00Z", "requiredCore": "1.424.1", "scm": "svn.jenkins-ci.org", "sha1": "IxikHEm09tHJvYHYuDm6srWJWek=", "title": "Monitoring", "url": "http://updates.jenkins-ci.org/download/plugins/monitoring/1.42.0/monitoring.hpi", "version": "1.42.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Monitoring"}, "monkit-plugin": {"buildDate": "Jun 08, 2012", "dependencies": [], "developers": [{"developerId": "wolfgarnet", "email": "coolers@praqma.net", "name": "Christian Wolfgang"}], "excerpt": "*The MonKit plugin is used to display charts of data delivered in XML compliant with* *monkit.xsd**. Monkit also has a small Java API you can use to produce the XML.* ", "gav": "net.praqma:monkit-plugin:0.2.6", "labels": [], "name": "monkit-plugin", "previousTimestamp": "2012-06-08T15:38:48.00Z", "previousVersion": "0.2.5", "releaseTimestamp": "2012-06-08T17:57:40.00Z", "requiredCore": "1.426", "scm": "github.com", "sha1": "3BK+9CQZ1Z8IbNHjoFUTzQeqF98=", "title": "MonKit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/monkit-plugin/0.2.6/monkit-plugin.hpi", "version": "0.2.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MonKit+Plugin"}, "mozmill": {"buildDate": "Mar 03, 2010", "dependencies": [], "developers": [{"developerId": "admc", "name": "Adam Christian"}], "excerpt": "This plugin allows you to use Mozmill for automated tests in Gecko based applications such as Firefox and Thunderbird.", "gav": "org.jvnet.hudson.plugins:mozmill:1.3", "labels": ["report"], "name": "mozmill", "previousTimestamp": "2009-09-26T01:08:04.00Z", "previousVersion": "1.2", "releaseTimestamp": "2010-03-03T14:53:58.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "KAMwwP+6nH6enzbIhbHqf3UXhHU=", "title": "Mozmill Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mozmill/1.3/mozmill.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Mozmill+Plugin"}, "msbuild": {"buildDate": "Sep 17, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}, {"developerId": "kdsweeney", "email": "kyle.sweeney@valtech.com", "name": "Kyle Sweeney"}], "excerpt": "This plugin allows you to use MSBuild to build .NET projects. ", "gav": "org.jenkins-ci.plugins:msbuild:1.16", "labels": ["builder"], "name": "msbuild", "previousTimestamp": "2012-08-15T22:36:46.00Z", "previousVersion": "1.15", "releaseTimestamp": "2012-09-18T03:59:10.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "IyON3Vma6gGfp4D204eP2RrARJA=", "title": "MSBuild Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/msbuild/1.16/msbuild.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSBuild+Plugin"}, "mstest": {"buildDate": "Jun 17, 2011", "dependencies": [], "developers": [{"developerId": "acmarques", "name": "Antonio Marques"}], "excerpt": "This plugin converts MSTest TRX test reports into JUnit XML reports so it can be integrated with Hudson's JUnit features.", "gav": "org.jvnet.hudson.plugins:mstest:0.7", "labels": ["report"], "name": "mstest", "previousTimestamp": "2010-02-12T01:25:58.00Z", "previousVersion": "0.6", "releaseTimestamp": "2011-06-17T14:23:04.00Z", "requiredCore": "1.398", "scm": "svn.jenkins-ci.org", "sha1": "FaaKhPYNMlF9Cz/FnvFI8PPZSyY=", "title": "MSTest Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mstest/0.7/mstest.hpi", "version": "0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSTest+Plugin"}, "mstestrunner": {"buildDate": "Sep 14, 2012", "dependencies": [], "developers": [{"developerId": "ido_ran", "email": "ido.ran@gmail.com", "name": "Ido Ran"}], "excerpt": "This plugin allow you to execute test using MSTest command line tool. ", "gav": "org.jenkins-ci.plugins:mstestrunner:0.2.1", "labels": ["builder"], "name": "mstestrunner", "previousTimestamp": "2012-09-03T03:04:44.00Z", "previousVersion": "0.2.0", "releaseTimestamp": "2012-09-14T17:48:28.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "ac/Ft2vNccjBigOaOC258PpZ5Uo=", "title": "MSTestRunner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mstestrunner/0.2.1/mstestrunner.hpi", "version": "0.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MSTestRunner+Plugin"}, "multi-module-tests-publisher": {"buildDate": "Oct 27, 2012", "dependencies": [], "developers": [{"developerId": "vimil", "email": "vimilsaju@yahoo.com", "name": "Vimil Saju"}], "excerpt": "This plugin stores junit results into an embedded derby database and groups testcases by module,package,class and case ", "gav": "org.jenkins-ci.plugins:multi-module-tests-publisher:1.23", "labels": ["post-build"], "name": "multi-module-tests-publisher", "previousTimestamp": "2012-10-25T21:04:06.00Z", "previousVersion": "1.22", "releaseTimestamp": "2012-10-27T14:30:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "frHeD5Alz+HOM8VnUcRTRCllpsI=", "title": "Multi Module Tests Publisher", "url": "http://updates.jenkins-ci.org/download/plugins/multi-module-tests-publisher/1.23/multi-module-tests-publisher.hpi", "version": "1.23", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multi+Module+Tests+Publisher"}, "multi-slave-config-plugin": {"buildDate": "Sep 22, 2011", "dependencies": [], "developers": [{"developerId": "nilsi", "email": "nicklas3.nilsson@sonyericsson.com", "name": "Nicklas Nilsson"}, {"developerId": "fredrikpersson", "email": "fredrik4.persson@sonyericsson.com", "name": "Fredrik Persson"}, {"developerId": "rsandell", "email": "robert.sandell@sonyericsson.com", "name": "Robert Sandell"}], "excerpt": "This plugin allows administrators to configure, add and delete several dumb slaves at the same time. \\\\ ", "gav": "com.sonyericsson.hudson.plugins.multi-slave-config-plugin:multi-slave-config-plugin:1.0.0", "labels": ["slaves", "cluster"], "name": "multi-slave-config-plugin", "releaseTimestamp": "2011-09-22T14:07:48.00Z", "requiredCore": "1.404", "scm": "github.com", "sha1": "XnZWFOQiPcX+hnyeV2o9WZu0a3o=", "title": "Multi slave config plugin", "url": "http://updates.jenkins-ci.org/download/plugins/multi-slave-config-plugin/1.0.0/multi-slave-config-plugin.hpi", "version": "1.0.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multi+slave+config+plugin"}, "multiline-tabbar-plugin": {"buildDate": "Oct 26, 2010", "dependencies": [], "developers": [{"developerId": "wjprakash", "name": "Winston Prakash"}], "excerpt": "Provides a multi-line tab bar for views.", "gav": "org.jvnet.hudson.plugins:multiline-tabbar-plugin:1.1", "labels": [], "name": "multiline-tabbar-plugin", "releaseTimestamp": "2010-10-26T21:23:48.00Z", "requiredCore": "1.381", "scm": "svn.dev.java.net", "sha1": "CwZW+NwZVngsfDjFR0QV1TQU0F4=", "title": "Extension Point for Project Views Navigation", "url": "http://updates.jenkins-ci.org/download/plugins/multiline-tabbar-plugin/1.1/multiline-tabbar-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Extension+Point+for+Project+Views+Navigation"}, "multiple-scms": {"buildDate": "Jan 19, 2012", "dependencies": [], "developers": [{"developerId": "kbell", "email": "kbell6397@gmail.com", "name": "Kevin Bell"}], "excerpt": "Allows a job to check out sources from multiple SCM providers.", "gav": "org.jenkins-ci.plugins:multiple-scms:0.2", "labels": ["scm"], "name": "multiple-scms", "previousTimestamp": "2011-03-07T13:35:58.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-01-20T03:40:26.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "VUywzdM7W830oUcHo9POQTy3vQk=", "title": "Multiple SCMs Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/multiple-scms/0.2/multiple-scms.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin"}, "mysql-auth": {"buildDate": "Apr 16, 2010", "dependencies": [], "developers": [{"developerId": "darkhonor", "name": "Alex Ackerman"}], "excerpt": "This plugin allows users to authenticate to a Hudson instance using credentials stored in a MySQL database.", "gav": "org.jvnet.hudson.plugins:mysql-auth:1.0", "labels": ["user"], "name": "mysql-auth", "releaseTimestamp": "2010-04-16T18:53:42.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "AGFSK1xi/4VhdiFRaLAEbPQielE=", "title": "MySQL Authentication Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/mysql-auth/1.0/mysql-auth.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/MySQL+Authentication+Plugin"}, "nabaztag": {"buildDate": "Mar 24, 2010", "dependencies": [], "developers": [{"developerId": "stephannoske", "name": "Stephan Noske"}, {"developerId": "ericlemerdy", "name": "Eric Le Merdy"}], "excerpt": "Publish the result of a build to a Nabaztag.", "gav": "org.jvnet.hudson.plugins:nabaztag:1.9", "labels": ["notifier"], "name": "nabaztag", "previousTimestamp": "2010-03-24T04:03:24.00Z", "previousVersion": "1.8", "releaseTimestamp": "2010-03-24T04:46:42.00Z", "requiredCore": "1.352", "scm": "svn.dev.java.net", "sha1": "OoZ/cLug7ELrWrLnVVKQvPxKocE=", "title": "Nabaztag Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nabaztag/1.9/nabaztag.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nabaztag+Plugin"}, "naginator": {"buildDate": "Jun 12, 2012", "dependencies": [], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}, {"developerId": "ndeloof", "email": "nicolas.deloof@gmail.com", "name": "Nicolas De Loof"}], "excerpt": "This plugin allows you to automatically reschedule a build after a build failure.", "gav": "org.jenkins-ci.plugins:naginator:1.8", "labels": ["trigger"], "name": "naginator", "previousTimestamp": "2012-05-31T11:57:44.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-06-12T18:27:52.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "PKx91+n+EUjCDYvSjlLEPsseJWA=", "title": "Naginator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/naginator/1.8/naginator.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Plugin"}, "nant": {"buildDate": "Nov 01, 2012", "dependencies": [], "developers": [{"developerId": "jholzer", "email": "jsholzer@gmail.com", "name": "Justin Holzer"}], "excerpt": "This plugin allows for the execution of a NAnt build as a build step.", "gav": "org.jenkins-ci.plugins:nant:1.4.3", "labels": ["builder"], "name": "nant", "previousTimestamp": "2011-08-06T03:10:18.00Z", "previousVersion": "1.4.2", "releaseTimestamp": "2012-11-01T19:09:26.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Pfm4i25OeWGv2CozWtlYEeEpmf0=", "title": "NAnt Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nant/1.4.3/nant.hpi", "version": "1.4.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NAnt+Plugin"}, "ncover": {"buildDate": "Mar 03, 2010", "dependencies": [], "developers": [{"developerId": "mcrooney", "name": "Michael Rooney"}], "excerpt": "Archive and publish .NET code coverage HTML reports from NCover.", "gav": "org.jvnet.hudson.plugins:ncover:0.3", "labels": ["report"], "name": "ncover", "previousTimestamp": "2009-07-28T15:03:22.00Z", "previousVersion": "0.2.6", "releaseTimestamp": "2010-03-03T15:19:58.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "a3ytPYkKW4fNuePM3moMw9L2atw=", "title": "NCover Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ncover/0.3/ncover.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NCover+Plugin"}, "nerrvana-plugin": {"buildDate": "Nov 09, 2012", "dependencies": [], "developers": [{"developerId": "vic", "email": "wise@deepshiftlabs.com", "name": "Victor Orlov"}], "excerpt": "The Nerrvana Jenkins plugin allows you to automate functional and cross browser Selenium testing of your web applications in Nerrvana cloud. ", "gav": "org.jenkins-ci.plugins:nerrvana-plugin:1.02r", "labels": ["buildwrapper"], "name": "nerrvana-plugin", "releaseTimestamp": "2012-11-09T21:08:44.00Z", "requiredCore": "1.450", "scm": "github.com", "sha1": "jBNDymHzCZ+lPJKk3Y37vxRlSls=", "title": "Nerrvana Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nerrvana-plugin/1.02r/nerrvana-plugin.hpi", "version": "1.02r", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nerrvana+Plugin"}, "nested-view": {"buildDate": "Aug 16, 2012", "dependencies": [], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "View type to allow grouping job views into multiple levels instead of one big list of tabs.", "gav": "org.jenkins-ci.plugins:nested-view:1.9", "labels": ["ui"], "name": "nested-view", "previousTimestamp": "2011-07-28T13:12:10.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-08-16T18:21:48.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "cDhpdm1XhoFTOrJxvAbrYK5itmI=", "title": "Nested View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nested-view/1.9/nested-view.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nested+View+Plugin"}, "network-monitor": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin checks that slaves can resolve host names.", "gav": "org.jvnet.hudson.plugins:network-monitor:1.1", "name": "network-monitor", "previousTimestamp": "2011-11-02T21:21:52.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-11-02T21:23:54.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "LLmUM0bZA8aUt7UDRDJehDbm4Pc=", "title": "Slave Monitor for network connectivity", "url": "http://updates.jenkins-ci.org/download/plugins/network-monitor/1.1/network-monitor.hpi", "version": "1.1"}, "next-build-number": {"buildDate": "Oct 12, 2009", "dependencies": [], "developers": [{"developerId": "dty", "name": "Dean Yu"}], "excerpt": "This is a simple plugin that changes the next build number Hudson will use for a job.", "gav": "org.jvnet.hudson.plugins:next-build-number:1.0", "labels": ["misc"], "name": "next-build-number", "releaseTimestamp": "2009-10-12T16:47:52.00Z", "requiredCore": "1.327", "scm": "svn.dev.java.net", "sha1": "zHL2fn/oow0DhVkyVqtXEwGgh6Q=", "title": "Next Build Number Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/next-build-number/1.0/next-build-number.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Next+Build+Number+Plugin"}, "next-executions": {"buildDate": "Nov 07, 2012", "dependencies": [], "developers": [{"developerId": "ialbors", "name": "Ignacio Albors"}], "excerpt": "Adds a widget in the sidebar with the next _build_ date for all the scheduled projects. It also creates a column definition.", "gav": "org.jenkins-ci.plugins:next-executions:1.0.5", "labels": ["ui", "listview-column"], "name": "next-executions", "previousTimestamp": "2012-02-26T01:36:58.00Z", "previousVersion": "1.0.4", "releaseTimestamp": "2012-11-08T00:00:16.00Z", "requiredCore": "1.448", "scm": "github.com", "sha1": "9YUI5a6xUlAd4K1xGyZ7U6DqZQU=", "title": "Next Executions", "url": "http://updates.jenkins-ci.org/download/plugins/next-executions/1.0.5/next-executions.hpi", "version": "1.0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Next+Executions"}, "nexus-task-runner": {"buildDate": "Nov 07, 2012", "dependencies": [], "developers": [{"developerId": "quramy", "email": "yosuke.kurami@gmail.com", "name": "Yosuke Kurami"}], "excerpt": "This plugin executes Sonatype Nexus scheduled tasks after your build. ", "gav": "org.jenkins-ci.plugins:nexus-task-runner:0.9.2", "labels": ["external"], "name": "nexus-task-runner", "previousTimestamp": "2012-11-05T08:31:54.00Z", "previousVersion": "0.9.1", "releaseTimestamp": "2012-11-07T06:05:14.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "x8AE0OnWLgmcJ0EEpG9CZfw/7fA=", "title": "Nexus Task Runner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nexus-task-runner/0.9.2/nexus-task-runner.hpi", "version": "0.9.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Nexus+Task+Runner+Plugin"}, "nodejs": {"buildDate": "Aug 13, 2010", "dependencies": [], "developers": [{"developerId": "cliffano"}], "excerpt": "Executes NodeJS script as a build step.", "gav": "org.jvnet.hudson.plugins:nodejs:0.1", "labels": [], "name": "nodejs", "releaseTimestamp": "2010-08-13T23:39:14.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "BleVb3djw0y+z7I/yO8OOZ85UrQ=", "title": "NodeJS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nodejs/0.1/nodejs.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin"}, "nodelabelparameter": {"buildDate": "Dec 09, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "parameterized-trigger", "optional": true, "version": "2.12"}], "developers": [{"developerId": "imod", "name": "Dominik Bartholdi"}], "excerpt": "This plugin adds two new parameter types to job configuration - node and label, this allows to dynamically select the node where a job/project should be executed.", "gav": "org.jenkins-ci.plugins:nodelabelparameter:1.3", "labels": ["slaves", "trigger", "parameter"], "name": "nodelabelparameter", "previousTimestamp": "2012-07-02T22:58:44.00Z", "previousVersion": "1.2.1", "releaseTimestamp": "2012-12-09T23:19:18.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "7MiTTj/N+61jvS7/9pnzyXSDQz8=", "title": "NodeLabel Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nodelabelparameter/1.3/nodelabelparameter.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NodeLabel+Parameter+Plugin"}, "nodenamecolumn": {"buildDate": "Apr 17, 2010", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.323"}], "developers": [{"developerId": "knagired"}], "excerpt": "Adds column showing node name and can be configured in views.", "gav": "org.jvnet.hudson.plugins:nodenamecolumn:1.1", "labels": ["listview-column"], "name": "nodenamecolumn", "previousTimestamp": "2010-02-01T22:09:02.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-04-17T04:59:30.00Z", "requiredCore": "1.323", "scm": "svn.dev.java.net", "sha1": "2H2mVNiHRJyec17oGx0nq7hFyJc=", "title": "Node Name Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nodenamecolumn/1.1/nodenamecolumn.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Node+Name+Column+Plugin"}, "nodeofflinenotification": {"buildDate": "Apr 01, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.9"}], "developers": [{"developerId": "Jens"}], "excerpt": "Get a notification by email if one of your nodes suddenly goes offline ", "gav": "org.jenkins-ci.ruby-plugins:nodeofflinenotification:1.0.3", "labels": [], "name": "nodeofflinenotification", "previousTimestamp": "2012-03-31T23:22:28.00Z", "previousVersion": "1.0.2", "releaseTimestamp": "2012-04-01T13:09:52.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "3e3F4WMYh7ZHYZuc2fNfZqATmP4=", "title": "Node Offline Notification Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nodeofflinenotification/1.0.3/nodeofflinenotification.hpi", "version": "1.0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Node+Offline+Notification+Plugin"}, "nopmdcheck": {"buildDate": "Oct 26, 2012", "dependencies": [], "developers": [{"developerId": "quramy", "email": "yosuke.kurami@gmail.com", "name": "Yosuke Kurami"}], "excerpt": "This plugin checks the keyword 'NOPMD' in your codes. ", "gav": "org.jenkins-ci.plugins:nopmdcheck:0.9", "labels": ["misc"], "name": "nopmdcheck", "releaseTimestamp": "2012-10-26T04:22:38.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "xOSCCk+0dudR2JIXXJOR3C/Vblo=", "title": "nopmdcheck Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nopmdcheck/0.9/nopmdcheck.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/nopmdcheck+Plugin"}, "nopmdverifytrac": {"buildDate": "Oct 26, 2012", "dependencies": [{"name": "nopmdcheck", "optional": false, "version": "0.9"}], "developers": [{"developerId": "yosuke"}], "excerpt": "When you use Trac to tracking issues, this plugin makes a report about whether 'NOPMD' in your codes are right. ", "gav": "org.jenkins-ci.plugins:nopmdverifytrac:0.9", "labels": ["external"], "name": "nopmdverifytrac", "releaseTimestamp": "2012-10-26T04:56:42.00Z", "requiredCore": "1.431", "scm": "github.com", "sha1": "FxaTSxaqdp9mIgxcrDnNDht+zqs=", "title": "nopmdverifytrac Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nopmdverifytrac/0.9/nopmdverifytrac.hpi", "version": "0.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/nopmdverifytrac+Plugin"}, "notification": {"buildDate": "Nov 28, 2011", "dependencies": [], "developers": [{"developerId": "markb", "email": "markb@tikalk.com", "name": "Mark Berner"}], "excerpt": "Allows sending job status notifications via HTTP, TCP or UDP.", "gav": "com.tikalk.hudson.plugins:notification:1.4", "labels": ["notifier"], "name": "notification", "previousTimestamp": "2011-08-26T20:58:26.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-11-28T18:11:46.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "bAnxrIEdbamDJ55eQ8t5cqnSv2k=", "title": "Notification Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/notification/1.4/notification.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Notification+Plugin"}, "notifo": {"buildDate": "Jul 29, 2010", "dependencies": [], "developers": [{"developerId": "csamuel", "email": "csamuel@gmail.com", "name": "Chris Samuel"}], "excerpt": "Integration with the Notifo API to push build notifications to mobile devices.", "gav": "org.jvnet.hudson.plugins:notifo:1.0.1", "labels": ["notifier"], "name": "notifo", "releaseTimestamp": "2010-07-29T20:24:08.00Z", "requiredCore": "1.366", "scm": "github.com", "sha1": "DTMHyiL48RRh0Y8xQ5wbZbno5cI=", "title": "Notifo Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/notifo/1.0.1/notifo.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Notifo+Plugin"}, "nsiqcollector": {"buildDate": "Aug 06, 2011", "dependencies": [], "developers": [{"developerId": "iceize", "email": "iceize@nhn.com", "name": "Oh, Young-eun"}, {"developerId": "junoyoon", "email": "junoyoon@gmail.com", "name": "JunHo Yoon"}], "excerpt": "This plugin shows the lines of code and cyclomatic complexity from from external metric tools named N'SIQ Collector.", "gav": "org.jvnet.hudson.plugins:nsiqcollector:1.3.3", "labels": ["report"], "name": "nsiqcollector", "previousTimestamp": "2010-10-21T15:30:16.00Z", "previousVersion": "1.3.2", "releaseTimestamp": "2011-08-06T12:25:34.00Z", "requiredCore": "1.395", "scm": "svn.jenkins-ci.org", "sha1": "LifvvdE4okdqHY9o5QYG25QerC0=", "title": "NSIQ Collector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nsiqcollector/1.3.3/nsiqcollector.hpi", "version": "1.3.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NSIQ+Collector+Plugin"}, "nunit": {"buildDate": "May 06, 2011", "dependencies": [], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}], "excerpt": "This plugin allows you to publish NUnit test results.", "gav": "org.jvnet.hudson.plugins:nunit:0.14", "labels": ["report"], "name": "nunit", "previousTimestamp": "2011-03-16T03:19:14.00Z", "previousVersion": "0.13", "releaseTimestamp": "2011-05-07T00:22:06.00Z", "requiredCore": "1.380", "scm": "github.com", "sha1": "XmEZuOE7CVue+7vSRG0PvPjSn6o=", "title": "NUnit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/nunit/0.14/nunit.hpi", "version": "0.14", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/NUnit+Plugin"}, "offlineonfailure-plugin": {"buildDate": "Jun 19, 2011", "dependencies": [], "developers": [{"email": "andreas.nilsson@atex.com", "name": "Andreas Nilsson"}, {"developerId": "bitter", "email": "sternevald@imap.cc", "name": "Martin Sternevald"}], "excerpt": "Adds a post build configuration option to bring the executing node offline if the build fails. ", "gav": "org.jenkins-ci.plugins:offlineonfailure-plugin:1.0", "labels": ["post-build"], "name": "offlineonfailure-plugin", "releaseTimestamp": "2011-06-19T19:29:00.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "b24ZX21Mz61by7jVNmGVC+AFs+4=", "title": "Offline Node On Failure Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/offlineonfailure-plugin/1.0/offlineonfailure-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Offline+Node+On+Failure+Plugin"}, "openJDK-native-plugin": {"buildDate": "Mar 01, 2012", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin adds auto installer for OpenJDK from native RPM packages and provides switching between OpenJDK vesrions using Linux alternatives", "gav": "org.jenkinsci.plugins.openjdk_native:openJDK-native-plugin:1.0", "labels": [], "name": "openJDK-native-plugin", "releaseTimestamp": "2012-03-01T15:08:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "WQYSgJjJFOkdl6/p0vOJsrm6+oE=", "title": "OpenJDK native intaller plugin", "url": "http://updates.jenkins-ci.org/download/plugins/openJDK-native-plugin/1.0/openJDK-native-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenJDK+native+intaller+plugin"}, "openid": {"buildDate": "Jul 11, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kkawaguchi@cloudbees.com", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin lets your Jenkins users login to Jenkins through external OpenID providers, without using password.", "gav": "org.jenkins-ci.plugins:openid:1.5", "labels": ["user"], "name": "openid", "previousTimestamp": "2011-10-28T02:06:10.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-07-11T22:58:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "BYqS/3z3ZTYWHeqA91MzpJi2BNQ=", "title": "OpenID plugin", "url": "http://updates.jenkins-ci.org/download/plugins/openid/1.5/openid.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OpenID+plugin"}, "origo-issue-notifier": {"buildDate": "May 18, 2010", "dependencies": [], "developers": [{"developerId": "butcherch", "name": "Patrick Ruckstuhl"}], "excerpt": "This plugin opens or updates an issue on an Origo instance based on the build result.", "gav": "org.jvnet.hudson.plugins:origo-issue-notifier:1.1", "labels": ["notifier"], "name": "origo-issue-notifier", "releaseTimestamp": "2010-05-19T01:11:20.00Z", "requiredCore": "1.343", "scm": "svn.dev.java.net", "sha1": "I+uxIQlOPfGj1YcgmzBzJtLb5dU=", "title": "Origo Issue Notifier", "url": "http://updates.jenkins-ci.org/download/plugins/origo-issue-notifier/1.1/origo-issue-notifier.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Origo+Issue+Notifier"}, "oslc-cm": {"buildDate": "Jul 22, 2011", "dependencies": [], "developers": [{"developerId": "mdhar", "email": "mdhar@free.fr", "name": "Madhumita DHAR"}], "excerpt": "Connects to different remote bug trackers via the OSLC protocol ", "gav": "org.jenkins-ci.plugins:oslc-cm:1.31", "labels": ["notifier"], "name": "oslc-cm", "previousTimestamp": "2011-07-21T04:24:58.00Z", "previousVersion": "1.3", "releaseTimestamp": "2011-07-22T14:36:36.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "NHEf02sMF+mss8oKDA+MPPQOlhM=", "title": "OSLC CM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/oslc-cm/1.31/oslc-cm.hpi", "version": "1.31", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/OSLC+CM+Plugin"}, "pam-auth": {"buildDate": "Jun 05, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:pam-auth:1.0", "name": "pam-auth", "releaseTimestamp": "2012-06-06T00:55:04.00Z", "requiredCore": "1.468", "scm": "github.com", "sha1": "O3+oq5GiTvIQj7tLWkaQviQfRN4=", "title": "pam-auth", "url": "http://updates.jenkins-ci.org/download/plugins/pam-auth/1.0/pam-auth.hpi", "version": "1.0"}, "parameterized-trigger": {"buildDate": "Oct 09, 2012", "dependencies": [{"name": "subversion", "optional": true, "version": "1.25"}], "developers": [{"developerId": "huybrechts", "name": "Tom Huybrechts"}, {"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin lets you trigger new builds when your build has completed, with various ways of specifying parameters for the new build.", "gav": "org.jenkins-ci.plugins:parameterized-trigger:2.16", "labels": ["trigger", "post-build", "builder", "cluster"], "name": "parameterized-trigger", "previousTimestamp": "2012-05-23T19:33:08.00Z", "previousVersion": "2.15", "releaseTimestamp": "2012-10-09T15:14:16.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "1GETw1KLGpdjhjXno7UJLGfw0og=", "title": "Parameterized Trigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/parameterized-trigger/2.16/parameterized-trigger.hpi", "version": "2.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin"}, "patch-parameter": {"buildDate": "Oct 07, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin adds a new parameter type to a parameterized build, where the user can optionally submit a patch file.", "gav": "org.jenkins-ci.plugins:patch-parameter:1.0", "labels": [], "name": "patch-parameter", "releaseTimestamp": "2012-10-07T20:18:04.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "3d0EZUQN45qMbtDnyc6H601eHwg=", "title": "Patch Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/patch-parameter/1.0/patch-parameter.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Patch+Parameter+Plugin"}, "pathignore": {"buildDate": "Nov 17, 2011", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.6"}], "developers": [{"developerId": "jtjerno"}], "excerpt": "This plugin allows SCM-triggered jobs to ignore build requests if only certain paths have changed, or to build if and only if certain paths are changed.", "gav": "org.jenkins-ci.ruby-plugins:pathignore:0.6", "labels": ["scm-related", "buildwrapper"], "name": "pathignore", "previousTimestamp": "2011-11-14T20:24:52.00Z", "previousVersion": "0.5", "releaseTimestamp": "2011-11-18T03:22:06.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "7UG0Wxxa4QuKfSq5DVHlZFs+q/g=", "title": "Pathignore Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pathignore/0.6/pathignore.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pathignore+Plugin"}, "pegdown-formatter": {"buildDate": "Apr 09, 2012", "dependencies": [], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Format descriptions using Markdown syntax. Use simple wiki-like markup instead of HTML. ", "gav": "org.jenkins-ci.plugins:pegdown-formatter:1.3", "labels": ["ui"], "name": "pegdown-formatter", "previousTimestamp": "2011-08-05T01:41:10.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-04-10T01:20:14.00Z", "requiredCore": "1.396", "scm": "github.com", "sha1": "VPm/aCS7FsNgr0KAu1QeijD7B5U=", "title": "PegDown Formatter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pegdown-formatter/1.3/pegdown-formatter.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PegDown+Formatter+Plugin"}, "people-redirector": {"buildDate": "May 11, 2012", "dependencies": [], "developers": [{"developerId": "m2spring", "email": "mspring@cisco.com", "name": "Max Spring"}], "excerpt": "Allows you to integrate with an external user management system.", "gav": "com.cisco.step.jenkins.plugins:people-redirector:1.3", "labels": ["external"], "name": "people-redirector", "previousTimestamp": "2011-10-12T18:36:08.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-05-11T21:17:20.00Z", "requiredCore": "1.415", "scm": "github.com", "sha1": "+UdYkY/5biwQcPFJeGaPDoRFYHE=", "title": "People Redirector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/people-redirector/1.3/people-redirector.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/People+Redirector+Plugin"}, "perforce": {"buildDate": "Nov 28, 2012", "dependencies": [], "developers": [{"developerId": "javadude", "email": "carl.quinn@gmail.com", "name": "Carl Quinn"}, {"developerId": "rpetti", "email": "rob.petti@gmail.com", "name": "Rob Petti"}], "excerpt": "Integrates Jenkins with Perforce SCM Repositories. ", "gav": "org.jvnet.hudson.plugins:perforce:1.3.18", "labels": ["scm"], "name": "perforce", "previousTimestamp": "2012-08-12T17:06:50.00Z", "previousVersion": "1.3.17", "releaseTimestamp": "2012-11-28T17:05:24.00Z", "requiredCore": "1.346", "scm": "github.com", "sha1": "8mVONDubM5mI56JzfiaPMMAHvNg=", "title": "Perforce Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/perforce/1.3.18/perforce.hpi", "version": "1.3.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Perforce+Plugin"}, "performance": {"buildDate": "Apr 11, 2012", "dependencies": [], "developers": [{"developerId": "manolo", "email": "manolo@apache.org", "name": "Manuel Carrasco Monino"}, {"developerId": "vergnes", "email": "vergnes@dev.java.net", "name": "Vergnes"}, {"developerId": "aespy", "email": "aespy@dev.java.net", "name": "Arnaud Espy"}], "excerpt": "This plugin allows you to capture reports from JMeter and JUnit . Hudson will generate graphic charts with the trend report of performance and robustness. It includes the feature of setting the final build status as good, unstable or failed, based on the reported error percentage. ", "gav": "org.jvnet.hudson.plugins:performance:1.8", "labels": ["report"], "name": "performance", "previousTimestamp": "2011-05-16T13:44:10.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-04-11T15:35:04.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "CTieY3sq27/Qk8UI4lWXqQEToXo=", "title": "Performance Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/performance/1.8/performance.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Performance+Plugin"}, "perfpublisher": {"buildDate": "Apr 18, 2010", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.1"}, {"name": "maven-plugin", "optional": false, "version": "1.354"}], "developers": [{"email": "gbossert@gmail.com", "name": "Georges Bossert"}], "excerpt": "This plugin generates global and trend reports for tests results analysis. Based on an open XML tests results format, the plugin parses the generated files and publish statistics, reports and analysis on the current health of the project.", "gav": "org.jvnet.hudson.plugins:perfpublisher:7.97", "labels": ["report"], "name": "perfpublisher", "previousTimestamp": "2010-03-05T13:44:04.00Z", "previousVersion": "7.96", "releaseTimestamp": "2010-04-18T17:59:00.00Z", "requiredCore": "1.354", "scm": "svn.dev.java.net", "sha1": "Ogtvjd5FcJMX+H9/EYeeAhjH300=", "title": "PerfPublisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/perfpublisher/7.97/perfpublisher.hpi", "version": "7.97", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PerfPublisher+Plugin"}, "periodic-reincarnation": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "stefanbrausch", "email": "stefan.brausch@1und1.de", "name": "Stefan Brausch"}, {"developerId": "boev", "email": "iordan.boev@gmail.com", "name": "Yordan Boev"}], "excerpt": "This plugin makes it possible to periodically restart failed jobs according to a number of conditions. ", "gav": "org.jenkins-ci.plugins:periodic-reincarnation:1.1", "labels": ["trigger"], "name": "periodic-reincarnation", "previousTimestamp": "2012-10-29T20:56:38.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-11-19T17:48:22.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "4FbWByvUVPKwLSn3Q7lH3ZUzE+U=", "title": "Periodic Reincarnation Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/periodic-reincarnation/1.1/periodic-reincarnation.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Periodic+Reincarnation+Plugin"}, "periodicbackup": {"buildDate": "Nov 01, 2011", "dependencies": [], "developers": [{"email": "tomasz.blaszczynski@gmail.com", "name": "Tomasz Blaszczynski"}, {"email": "emanuelez@gmail.com", "name": "Emanuele Zattin"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:periodicbackup:1.1", "labels": [], "name": "periodicbackup", "previousTimestamp": "2011-06-03T18:45:54.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-11-01T14:49:48.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "B9WQLdS7TUgj/P/fn9GEuHh8KbY=", "title": "PeriodicBackup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/periodicbackup/1.1/periodicbackup.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PeriodicBackup+Plugin"}, "persona": {"buildDate": "Apr 17, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kohsuke@infradna.com", "name": "Kohsuke Kawaguchi"}, {"developerId": "ssogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin lets you define custom personalities like Chuck Norris or Bruce Schneier just by preparing an XML file and a few image files.", "gav": "org.jenkins-ci.plugins:persona:2.2", "labels": [], "name": "persona", "previousTimestamp": "2012-03-06T02:32:38.00Z", "previousVersion": "2.1", "releaseTimestamp": "2012-04-17T13:31:16.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "/XG536Rbbg4KFD4Iq2DEWd8DwwM=", "title": "Persona Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/persona/2.2/persona.hpi", "version": "2.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Persona+Plugin"}, "phing": {"buildDate": "Mar 20, 2012", "dependencies": [], "developers": [{"developerId": "sogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plugin allows you to use Phing to build PHP projects.", "gav": "org.jenkins-ci.plugins:phing:0.11", "labels": ["builder"], "name": "phing", "previousTimestamp": "2012-03-03T20:37:34.00Z", "previousVersion": "0.10", "releaseTimestamp": "2012-03-20T13:55:06.00Z", "requiredCore": "1.413", "scm": "github.com", "sha1": "PnJ57D+P7J+vQ8PsI89GxQI+Zzs=", "title": "Phing Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/phing/0.11/phing.hpi", "version": "0.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Phing+Plugin"}, "php": {"buildDate": "Oct 11, 2012", "dependencies": [{"name": "violations", "optional": false, "version": "0.7.11"}, {"name": "jdepend", "optional": false, "version": "1.2.3"}, {"name": "maven-plugin", "optional": false, "version": "1.424"}, {"name": "checkstyle", "optional": false, "version": "3.32"}, {"name": "xunit", "optional": false, "version": "1.48"}, {"name": "pmd", "optional": false, "version": "3.33"}, {"name": "cloverphp", "optional": false, "version": "0.3.2"}, {"name": "dry", "optional": false, "version": "2.33"}, {"name": "htmlpublisher", "optional": false, "version": "1.0"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "plot", "optional": false, "version": "1.5"}], "developers": [{"developerId": "nicolas"}], "excerpt": "This plugin installs jenkins plugins suggested by [http://jenkins-php.org/] for PHP developers ", "gav": "org.jenkins-ci.plugins:php:1.0", "labels": [], "name": "php", "releaseTimestamp": "2012-10-11T20:17:50.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "2K9otH75c+GEvMbJ/ulmrJmeLEA=", "title": "PHP Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/php/1.0/php.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PHP+Plugin"}, "piwikanalytics": {"buildDate": "Nov 06, 2009", "dependencies": [], "developers": [{"developerId": "looztra"}], "excerpt": "This plugin decorates all web pages with the Piwik Analytics tracking script. ", "gav": "org.jvnet.hudson.plugins:piwikanalytics:1.0", "labels": ["page-decorator"], "name": "piwikanalytics", "releaseTimestamp": "2009-11-07T03:11:44.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "M96i01+NqiOwu8kJN3vBljfM2NI=", "title": "Piwik Analytics Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/piwikanalytics/1.0/piwikanalytics.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Piwik+Analytics+Plugin"}, "plasticscm-plugin": {"buildDate": "Jan 20, 2012", "dependencies": [], "developers": [{"developerId": "ravelus", "email": "lrodriguez@codicesoftware.com", "name": "Luis Rodriguez Neches"}], "excerpt": "This plugin integrates Plastic SCM source code management to Jenkins.", "gav": "org.jvnet.hudson.plugins:plasticscm-plugin:2.0", "labels": ["scm"], "name": "plasticscm-plugin", "previousTimestamp": "2011-03-29T03:39:36.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-01-20T08:57:20.00Z", "requiredCore": "1.343", "scm": "github.com", "sha1": "d1vmWCEnyyERdiczDOqBCLG9mXQ=", "title": "PlasticSCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/plasticscm-plugin/2.0/plasticscm-plugin.hpi", "version": "2.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PlasticSCM+Plugin"}, "platformlabeler": {"buildDate": "Dec 02, 2009", "dependencies": [], "developers": [{"developerId": "robertc"}], "excerpt": "This plugin adds node labels based on the platform the node is running; they are updated each time the node connects.", "gav": "org.jvnet.hudson.plugins:platformlabeler:1.1", "labels": ["misc"], "name": "platformlabeler", "previousTimestamp": "2009-09-07T21:38:40.00Z", "previousVersion": "1.0", "releaseTimestamp": "2009-12-02T23:48:24.00Z", "requiredCore": "1.323", "scm": "svn.dev.java.net", "sha1": "2Vms3n2RwOiV89sT3cBtgtiQbTM=", "title": "PlatformLabeler Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/platformlabeler/1.1/platformlabeler.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PlatformLabeler+Plugin"}, "play-autotest-plugin": {"buildDate": "Sep 29, 2011", "dependencies": [], "developers": [{"developerId": "ikeike443", "email": "ikeike443@gmail.com", "name": "Takafumi Ikeda"}], "excerpt": "This plugin integrates Play\\! framework to Jenkins. It enables Jenkins to run play commands and to generate test-result view per build looks like Calimoucho -- Play\\! CI server. ", "gav": "org.jenkins-ci.plugins:play-autotest-plugin:0.0.12", "labels": ["post-build", "report", "buildwrapper", "external"], "name": "play-autotest-plugin", "previousTimestamp": "2011-09-28T20:28:24.00Z", "previousVersion": "0.0.11", "releaseTimestamp": "2011-09-29T16:50:18.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "1wRQSkmU4GeeLVIbchTsdNXs488=", "title": "play-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/play-autotest-plugin/0.0.12/play-autotest-plugin.hpi", "version": "0.0.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/play-plugin"}, "plot": {"buildDate": "Jul 10, 2011", "dependencies": [], "developers": [{"developerId": "nidaley", "name": "Nigel Daley"}], "excerpt": "This plugin provides generic plotting (or graphing) capabilities in Jenkins.", "gav": "org.jenkins-ci.plugins:plot:1.5", "labels": ["report", "ui"], "name": "plot", "previousTimestamp": "2010-11-22T00:25:22.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-07-10T16:27:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "FFDY6Dk2pJJyPO5PlTXso/vLGXo=", "title": "Plot Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/plot/1.5/plot.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Plot+Plugin"}, "pmd": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "dashboard-view", "optional": true, "version": "2.2"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin generates the trend report for PMD, an open source static code analysis program.  ", "gav": "org.jvnet.hudson.plugins:pmd:3.33", "labels": ["maven", "report"], "name": "pmd", "previousTimestamp": "2012-09-04T17:04:38.00Z", "previousVersion": "3.32", "releaseTimestamp": "2012-10-05T16:00:46.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "2TYh/c1KpcecGhFr+dX4yhGKuN8=", "title": "PMD Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pmd/3.33/pmd.hpi", "version": "3.33", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PMD+Plugin"}, "polarion": {"buildDate": "Nov 03, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "2.0.1"}], "developers": [{"developerId": "jwray", "name": "Jonny Wray"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin integrates the Polarion WebClient for SVN, an open source, web based interface to Subversion.", "gav": "org.jvnet.hudson.plugins:polarion:1.3", "labels": ["external"], "name": "polarion", "previousTimestamp": "2010-01-29T22:17:40.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-11-03T17:48:18.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "yqnoigUhQZdM/7CiGFtDJzekqOk=", "title": "Polarion Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/polarion/1.3/polarion.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Polarion+Plugin"}, "pollscm": {"buildDate": "Jan 06, 2012", "dependencies": [], "developers": [{"developerId": "vlatombe", "email": "vincent.latombe@gmail.com", "name": "Vincent Latombe"}], "excerpt": "This plugin adds a Poll Now button to your job when Poll SCM option is enabled. ", "gav": "org.jenkins-ci.plugins:pollscm:1.1", "labels": [], "name": "pollscm", "previousTimestamp": "2012-01-06T22:46:46.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-01-06T23:13:32.00Z", "requiredCore": "1.440", "scm": "github.com", "sha1": "5YrGI2DZAohAAvaJ+F38DRXPjZY=", "title": "PollSCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pollscm/1.1/pollscm.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PollSCM+Plugin"}, "port-allocator": {"buildDate": "Mar 29, 2010", "dependencies": [], "developers": [{"developerId": "ramapulavarthi", "name": "Rama Pulavarthi"}, {"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "Assigns unique TCP port addresses to jobs so that jobs executed concurrently won't collide with each other. Also performs clean ups to kill off daemons that are forked by jobs.", "gav": "org.jvnet.hudson.plugins:port-allocator:1.5", "labels": ["misc"], "name": "port-allocator", "previousTimestamp": "2009-12-29T01:39:04.00Z", "previousVersion": "1.4", "releaseTimestamp": "2010-03-29T22:34:08.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "hgpEu3sP2pRfUFBV5dIOKOlflr0=", "title": "Port Allocator Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/port-allocator/1.5/port-allocator.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Port+Allocator+Plugin"}, "postbuild-task": {"buildDate": "Jan 03, 2011", "dependencies": [], "developers": [{"developerId": "shinodkm", "email": "shinodkm@gmail.com", "name": "Shinod Mohandas"}, {"developerId": "castorpilot", "email": "castorpilot@gmail.com", "name": "Fred"}], "excerpt": "This plugin allows the user to execute a shell/batch task depending on the build log output. Java regular expression are allowed.", "gav": "org.jvnet.hudson.plugins:postbuild-task:1.8", "labels": ["post-build", "builder"], "name": "postbuild-task", "previousTimestamp": "2010-06-03T14:42:10.00Z", "previousVersion": "1.7", "releaseTimestamp": "2011-01-04T03:46:56.00Z", "requiredCore": "1.357", "scm": "svn.java.net", "sha1": "BsfymNZesIFBvZtiIe01htpESHI=", "title": "Post build task", "url": "http://updates.jenkins-ci.org/download/plugins/postbuild-task/1.8/postbuild-task.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Post+build+task"}, "postbuildscript": {"buildDate": "Aug 03, 2012", "dependencies": [{"name": "ivy", "optional": true, "version": "1.19"}, {"name": "maven-plugin", "optional": false, "version": "1.409"}], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "PostBuildScript makes it possible to execute a set of scripts at the end of the build. ", "gav": "org.jenkins-ci.plugins:postbuildscript:0.10", "labels": ["post-build"], "name": "postbuildscript", "previousTimestamp": "2012-07-03T01:24:42.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-08-03T18:12:12.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "A1T3WDZEilhyyKTDWP77TqXdSm0=", "title": "PostBuildScript Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/postbuildscript/0.10/postbuildscript.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PostBuildScript+Plugin"}, "powershell": {"buildDate": "Aug 05, 2009", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "Integrates with Windows PowerShell", "gav": "org.jvnet.hudson.plugins:powershell:1.2", "labels": ["builder"], "name": "powershell", "previousTimestamp": "2009-07-01T16:50:40.00Z", "previousVersion": "1.1", "releaseTimestamp": "2009-08-05T22:56:08.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "knBheE891sVmdLu2GnWXWmU+cCc=", "title": "PowerShell Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/powershell/1.2/powershell.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PowerShell+Plugin"}, "preSCMbuildstep": {"buildDate": "Feb 19, 2012", "dependencies": [], "developers": [{"developerId": "cjo9900", "name": "Chris Johnson"}], "excerpt": "This plugin allows build step to run before SCM checkouts ", "gav": "org.jenkins-ci.plugins:preSCMbuildstep:0.2", "labels": ["buildwrapper"], "name": "preSCMbuildstep", "previousTimestamp": "2011-08-24T01:22:26.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-02-19T23:29:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "I8ehGnqC0sUdzqvLST3r4fQRjdA=", "title": "pre-scm-buildstep", "url": "http://updates.jenkins-ci.org/download/plugins/preSCMbuildstep/0.2/preSCMbuildstep.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/pre-scm-buildstep"}, "prereq-buildstep": {"buildDate": "Apr 01, 2011", "dependencies": [], "developers": [{"developerId": "lynggaard", "email": "henrik@hlyh.dk", "name": "Henrik Lynggaard"}], "excerpt": "The Prerequisite build step plug in allows you to verify the state of other jobs and fail the build if needed.", "gav": "org.jvnet.hudson.plugins:prereq-buildstep:1.1", "labels": ["builder"], "name": "prereq-buildstep", "releaseTimestamp": "2011-04-01T19:46:08.00Z", "requiredCore": "1.392", "scm": "bitbucket.org", "sha1": "GJBVXEP3y9sdBrFYIq9/h4YtVFw=", "title": "Prerequisite build step plugin", "url": "http://updates.jenkins-ci.org/download/plugins/prereq-buildstep/1.1/prereq-buildstep.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Prerequisite+build+step+plugin"}, "progress-bar-column-plugin": {"buildDate": "Aug 08, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provide progress bar available for views.", "gav": "org.jenkins-ci.plugins:progress-bar-column-plugin:1.0", "labels": ["listview-column"], "name": "progress-bar-column-plugin", "releaseTimestamp": "2011-08-08T22:46:44.00Z", "requiredCore": "1.421", "scm": "github.com", "sha1": "A6ddrtk90zctZbw5hRyEguLpY08=", "title": "Progress Bar Column Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/progress-bar-column-plugin/1.0/progress-bar-column-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Progress+Bar+Column+Plugin"}, "project-description-setter": {"buildDate": "Jun 12, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Set the project description from a file in the workspace (à la GitHub README.md) ", "gav": "org.jenkins-ci.plugins:project-description-setter:1.1", "labels": ["buildwrapper"], "name": "project-description-setter", "previousTimestamp": "2011-08-06T00:05:08.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-06-13T01:30:28.00Z", "requiredCore": "1.399", "scm": "github.com", "sha1": "vtjFCsAOwGWxR3BjUxtY+i2daBQ=", "title": "Project Description Setter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/project-description-setter/1.1/project-description-setter.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Description+Setter+Plugin"}, "project-health-report": {"buildDate": "May 23, 2011", "dependencies": [], "developers": [{"developerId": "lynggaard", "email": "henrik@hlyh.dk", "name": "Henrik Lynggaard"}], "excerpt": "The project health report plugin  provides a report page on each project where the user can see how many builds failed/passed and which test cases most often break.", "gav": "org.jvnet.hudson.plugins:project-health-report:1.2", "labels": [], "name": "project-health-report", "previousTimestamp": "2011-04-18T18:29:00.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-05-23T22:44:44.00Z", "requiredCore": "1.392", "scm": "bitbucket.org", "sha1": "epc6Y+I9FEkw2Wgt5IS8kYFMUBE=", "title": "Project Health Report Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/project-health-report/1.2/project-health-report.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Health+Report+Plugin"}, "project-stats-plugin": {"buildDate": "Sep 22, 2012", "dependencies": [{"name": "dashboard-view", "optional": false, "version": "2.0"}], "developers": [{"developerId": "mambu", "email": "marco.ambu+jenkins@gmail.com", "name": "Marco Ambu"}], "excerpt": "This plugin provides new dashboard-view portlets and new columns for displaying project statistics for your Jenkins instance. ", "gav": "org.jenkins-ci.plugins:project-stats-plugin:0.4", "labels": ["listview-column", "ui"], "name": "project-stats-plugin", "previousTimestamp": "2011-09-25T15:13:00.00Z", "previousVersion": "0.3", "releaseTimestamp": "2012-09-22T17:18:04.00Z", "requiredCore": "1.459", "scm": "github.com", "sha1": "mIkd2WtsZ/Qn11Pn/JPojLHd7As=", "title": "Project Statistics Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/project-stats-plugin/0.4/project-stats-plugin.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Project+Statistics+Plugin"}, "promoted-builds": {"buildDate": "Oct 30, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.448"}, {"name": "javadoc", "optional": false, "version": "1.0"}], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "petehayes", "name": "Peter Hayes"}], "excerpt": "This plugin allows you to distinguish good builds from bad builds by introducing the notion of 'promotion'.", "gav": "org.jenkins-ci.plugins:promoted-builds:2.8", "labels": ["misc", "ui", "builder"], "name": "promoted-builds", "previousTimestamp": "2012-09-26T23:08:58.00Z", "previousVersion": "2.7", "releaseTimestamp": "2012-10-30T17:38:06.00Z", "requiredCore": "1.448", "scm": "github.com", "sha1": "J+vdJvd6a47gXcIuiDynDWlvbf8=", "title": "Promoted Builds Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/promoted-builds/2.8/promoted-builds.hpi", "version": "2.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin"}, "promoted-builds-simple": {"buildDate": "Mar 29, 2011", "dependencies": [{"name": "copyartifact", "optional": true, "version": "1.14"}, {"name": "maven-plugin", "optional": true, "version": "1.398"}], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "Simpler version of Promoted Builds Plugin, with only manual promotion of builds.", "gav": "org.jenkins-ci.plugins:promoted-builds-simple:1.9", "labels": ["misc", "ui"], "name": "promoted-builds-simple", "previousTimestamp": "2011-02-25T22:11:48.00Z", "previousVersion": "1.8", "releaseTimestamp": "2011-03-30T02:54:50.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Q710UWrUUlaLRkSqOclH5RB9xN8=", "title": "Promoted Builds Simple Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/promoted-builds-simple/1.9/promoted-builds-simple.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Simple+Plugin"}, "prqa-plugin": {"buildDate": "Nov 13, 2012", "dependencies": [], "developers": [{"developerId": "jstruck", "email": "coolers@praqma.net", "name": "Jes Struck"}, {"developerId": "MadsNielsen", "email": "man@praqma.net", "name": "Mads Nielsen"}], "excerpt": "A plugin for doing static code analysis using PRQA. ", "gav": "net.praqma:prqa-plugin:1.1.3", "labels": ["notifier", "report"], "name": "prqa-plugin", "previousTimestamp": "2012-11-09T13:20:26.00Z", "previousVersion": "1.1.2", "releaseTimestamp": "2012-11-13T18:07:54.00Z", "requiredCore": "1.474", "scm": "github.com", "sha1": "QBs61tHuA78J+K2xeCzHweZtkro=", "title": "PRQA Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/prqa-plugin/1.1.3/prqa-plugin.hpi", "version": "1.1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PRQA+Plugin"}, "pry": {"buildDate": "May 31, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin lets you remotely inspect/alter running Jenkins instance through pry. Think of it as the Ruby version of the Groovy shell console", "gav": "org.jenkins-ci.plugins:pry:1.1", "labels": [], "name": "pry", "previousTimestamp": "2012-05-10T10:43:40.00Z", "previousVersion": "1.0", "releaseTimestamp": "2012-05-31T13:23:00.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "13OpWLobyimk1qD6zwnhDHpglh8=", "title": "Pry Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pry/1.1/pry.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Pry+Plugin"}, "publish-over-cifs": {"buildDate": "Jun 05, 2011", "compatibleSinceVersion": "0.1", "dependencies": [], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}, {"developerId": "slide_o_mix", "email": "slide.o.mix@gmail.com", "name": "slide"}], "excerpt": "Send build artifacts to a windows share (CIFS/SMB/samba) ", "gav": "org.jenkins-ci.plugins:publish-over-cifs:0.2", "labels": ["upload"], "name": "publish-over-cifs", "releaseTimestamp": "2011-06-05T10:48:22.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "rvULLcwogegRtp9x7bNOXURCaZ8=", "title": "Publish Over CIFS Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-cifs/0.2/publish-over-cifs.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+CIFS+Plugin"}, "publish-over-ftp": {"buildDate": "Oct 22, 2012", "dependencies": [], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Publish files over FTP ", "gav": "org.jenkins-ci.plugins:publish-over-ftp:1.8", "labels": ["upload"], "name": "publish-over-ftp", "previousTimestamp": "2012-09-11T03:38:54.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-10-22T17:54:20.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "O1EsWuqFiqlRKd5R2muZ0zCrS+c=", "title": "Publish Over FTP Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-ftp/1.8/publish-over-ftp.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+FTP+Plugin"}, "publish-over-ssh": {"buildDate": "Oct 22, 2012", "dependencies": [], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Publish files and/or execute commands over SSH (SCP using SFTP) ", "gav": "org.jenkins-ci.plugins:publish-over-ssh:1.9", "labels": ["upload", "builder"], "name": "publish-over-ssh", "previousTimestamp": "2012-09-11T03:42:24.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-10-22T18:38:26.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "E7315PNWymljPh2Y4AvggySkz1g=", "title": "Publish Over SSH Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/publish-over-ssh/1.9/publish-over-ssh.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Publish+Over+SSH+Plugin"}, "purge-build-queue-plugin": {"buildDate": "Aug 25, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides an easy mechanism to purge the build queue.", "gav": "org.jenkins-ci.plugins:purge-build-queue-plugin:1.0", "labels": ["misc"], "name": "purge-build-queue-plugin", "releaseTimestamp": "2011-08-25T04:32:02.00Z", "requiredCore": "1.425", "scm": "github.com", "sha1": "o1FGXRJoYPDa2gfqzNnXOW4e6Us=", "title": "Purge Build Queue Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/purge-build-queue-plugin/1.0/purge-build-queue-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Purge+Build+Queue+Plugin"}, "pvcs_scm": {"buildDate": "Jul 21, 2010", "dependencies": [], "developers": [{"developerId": "blalor", "email": "blalor@bravo5.org", "name": "Brian Lalor"}], "excerpt": "This plugin provides integration with Serena's PVCS Version Manager SCM.", "gav": "org.jvnet.hudson.plugins:pvcs_scm:1.1", "labels": ["scm"], "name": "pvcs_scm", "previousTimestamp": "2008-11-05T12:36:58.00Z", "previousVersion": "1.0", "releaseTimestamp": "2010-07-21T15:57:40.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "rKiuRk88u5b03+foxUPssjWMils=", "title": "PVCS SCM", "url": "http://updates.jenkins-ci.org/download/plugins/pvcs_scm/1.1/pvcs_scm.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PVCS+SCM"}, "pwauth": {"buildDate": "Dec 21, 2010", "dependencies": [], "developers": [{"developerId": "mallox", "email": "mallox@pyxzl.net", "name": "Ravi Gairola"}], "excerpt": "This plug-in adds authentication via pwauth and supports both \\*nix system users and groups through PAM. ", "gav": "org.jvnet.hudson.plugins:pwauth:0.4", "labels": ["user"], "name": "pwauth", "releaseTimestamp": "2010-12-21T14:18:28.00Z", "requiredCore": "1.389", "scm": "svn.java.net", "sha1": "A/xofYwc8Wz8W3aWAQHubV5qmi8=", "title": "pwauth", "url": "http://updates.jenkins-ci.org/download/plugins/pwauth/0.4/pwauth.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/pwauth"}, "pxe": {"buildDate": "Feb 02, 2010", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin enhances Jenkins to support network-booting PCs for rapid, hands-free installations of various OSes, thereby making new slave installations easier.", "gav": "org.jvnet.hudson.plugins:pxe:1.5", "labels": ["cluster"], "name": "pxe", "previousTimestamp": "2010-01-10T01:32:50.00Z", "previousVersion": "1.4", "releaseTimestamp": "2010-02-02T21:45:18.00Z", "requiredCore": "1.322", "scm": "svn.dev.java.net", "sha1": "dE84kD7kmrxqG+I0jmDFXRevhv4=", "title": "PXE Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/pxe/1.5/pxe.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/PXE+Plugin"}, "python": {"buildDate": "Nov 16, 2011", "dependencies": [], "developers": [{"developerId": "rtyler", "email": "tyler@slide.com", "name": "R. Tyler Ballance"}], "excerpt": "Adds the ability to execute python scripts as build steps.", "gav": "org.jenkins-ci.plugins:python:1.2", "labels": ["builder"], "name": "python", "previousTimestamp": "2010-02-11T03:45:24.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-11-16T17:19:12.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "B6Jb7KKKx0QMBiNr4G9eWsJRfOg=", "title": "Python Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/python/1.2/python.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Python+Plugin"}, "qc": {"buildDate": "Jan 12, 2012", "dependencies": [], "developers": [{"developerId": "tmaurel", "name": "Thomas Maurel"}, {"developerId": "rseguy", "name": "Romain Seguy"}], "excerpt": "This plugin allows Hudson to trigger HP Quality Center test sets.", "gav": "org.jenkins-ci.plugins:qc:1.2.1", "labels": ["report", "builder"], "name": "qc", "previousTimestamp": "2011-12-07T19:12:08.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-01-12T21:45:08.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "hKLzEjb829TBh0EXSHss2qq7o3M=", "title": "Quality Center Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/qc/1.2.1/qc.hpi", "version": "1.2.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Quality+Center+Plugin"}, "r": {"buildDate": "Jul 22, 2012", "dependencies": [], "developers": [{"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}], "excerpt": "A simple plug-in to invoke R interpreter and execute an R script. ", "gav": "org.biouno.r:r:0.2", "labels": ["builder"], "name": "r", "previousTimestamp": "2012-07-10T13:08:46.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-07-22T06:25:44.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "rWowbhQDeeGV4t/Dn8Puc94Qjwg=", "title": "R Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/r/0.2/r.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/R+Plugin"}, "rad-builder": {"buildDate": "Mar 04, 2011", "dependencies": [], "developers": [{"developerId": "rseguy", "email": "romain.seguy@gmail.com", "name": "Romain Seguy"}], "excerpt": "This plugin allows Jenkins to invoke IBM Rational Application Developer as a build step. ", "gav": "org.jvnet.hudson.plugins:rad-builder:1.1.4", "labels": ["builder"], "name": "rad-builder", "previousTimestamp": "2011-02-21T16:14:36.00Z", "previousVersion": "1.1.3", "releaseTimestamp": "2011-03-04T15:37:50.00Z", "requiredCore": "1.375", "scm": "svn.jenkins-ci.org", "sha1": "pM4htrn1zMf51bPf1CAZoIZFPrA=", "title": "RAD Builder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rad-builder/1.1.4/rad-builder.hpi", "version": "1.1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RAD+Builder+Plugin"}, "radiatorviewplugin": {"buildDate": "May 17, 2011", "dependencies": [{"name": "claim", "optional": true, "version": "1.7"}], "developers": [{"developerId": "howama", "email": "mh@tildemh.com", "name": "Mark Howard"}], "excerpt": "Provides a job view displaying project status in a highly visible manner. This is ideal for displaying on a screen on the office wall as a form of Extreme Feedback Device.", "gav": "org.jenkins-ci.plugins:radiatorviewplugin:1.13", "labels": ["report", "ui"], "name": "radiatorviewplugin", "previousTimestamp": "2011-04-20T14:04:38.00Z", "previousVersion": "1.12", "releaseTimestamp": "2011-05-17T13:14:36.00Z", "requiredCore": "1.398", "scm": "svn.jenkins-ci.org", "sha1": "RV2RK68V/SCUnF8JNJus7qjXLNw=", "title": "Radiator View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/radiatorviewplugin/1.13/radiatorviewplugin.hpi", "version": "1.13", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Radiator+View+Plugin"}, "rake": {"buildDate": "Aug 13, 2011", "dependencies": [], "developers": [{"developerId": "david_calavera", "email": "calavera@apache.org", "name": "David Calavera"}], "excerpt": "This plugin allows Jenkins to invoke Rake tasks as build steps.", "gav": "org.jenkins-ci.plugins:rake:1.7.7", "labels": ["builder", "ruby"], "name": "rake", "previousTimestamp": "2011-03-23T03:06:24.00Z", "previousVersion": "1.7.6", "releaseTimestamp": "2011-08-13T15:24:34.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "D3FkVgKpgurCbRzTTXpw/8e0118=", "title": "Rake plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rake/1.7.7/rake.hpi", "version": "1.7.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rake+plugin"}, "random-string-parameter": {"buildDate": "Aug 12, 2012", "dependencies": [], "developers": [{"developerId": "piotrskotnicki", "email": "piotr.skotnicki@gmail.com", "name": "Piotr Skotnicki"}], "excerpt": "Adds a new parameter type called Random String Parameter which inserts a random string that prevents Jenkins from merging multiple job runs into one. ", "gav": "org.jenkins-ci.plugins:random-string-parameter:1.0", "labels": ["parameter"], "name": "random-string-parameter", "releaseTimestamp": "2012-08-12T23:18:58.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "SRTRxyIUjyum+CwnxEMCP9prebY=", "title": "Random String Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/random-string-parameter/1.0/random-string-parameter.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Random+String+Parameter+Plugin"}, "rbenv": {"buildDate": "Nov 27, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}], "developers": [{"developerId": "hsbt"}], "excerpt": "This plugin runs your jobs in the rbenv ", "gav": "org.jenkins-ci.ruby-plugins:rbenv:0.0.6", "labels": [], "name": "rbenv", "previousTimestamp": "2012-06-12T21:42:54.00Z", "previousVersion": "0.0.5", "releaseTimestamp": "2012-11-28T02:35:50.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "2w+ljr5L21WsD6dWhtHjxH4CO5Y=", "title": "rbenv plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rbenv/0.0.6/rbenv.hpi", "version": "0.0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/rbenv+plugin"}, "read-only-configurations": {"buildDate": "Oct 05, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plugin enables to show read-only configurations of job and global Jenkins configurations ", "gav": "org.jenkins-ci.plugins:read-only-configurations:1.7", "labels": [], "name": "read-only-configurations", "previousTimestamp": "2012-10-05T17:40:22.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-10-05T18:35:10.00Z", "requiredCore": "1.425", "scm": "github.com", "sha1": "BwoAhTMVYG38pWv3G8QpmONW+bA=", "title": "Read-only configurations plugin", "url": "http://updates.jenkins-ci.org/download/plugins/read-only-configurations/1.7/read-only-configurations.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Read-only+configurations+plugin"}, "rebuild": {"buildDate": "Nov 13, 2012", "dependencies": [], "developers": [{"developerId": "ragesh_nair", "email": "ragesh.x.nair@sonyericsson.com", "name": "Ragesh Nair"}, {"developerId": "shemeersulaiman", "email": "shemeer.x.sulaiman@sonyericsson.com", "name": "Shemeer Sulaiman"}], "excerpt": "This plug-in allows the user to _rebuild_ a _parametrized build_ without entering the _parameters_ again.It will also allow the user to edit the parameters before rebuilding. ", "gav": "com.sonyericsson.hudson.plugins.rebuild:rebuild:1.16", "labels": ["misc"], "name": "rebuild", "previousTimestamp": "2012-10-11T17:58:36.00Z", "previousVersion": "1.15", "releaseTimestamp": "2012-11-13T20:19:42.00Z", "requiredCore": "1.481", "scm": "github.com", "sha1": "Oc7o/KYGkbMnjtkBnTSFve+GHjU=", "title": "Rebuild Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rebuild/1.16/rebuild.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin"}, "redmine": {"buildDate": "Oct 28, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "2.0.1"}], "developers": [{"developerId": "gaooh", "name": "Akiko Asami"}], "excerpt": "This plugin integrates Redmine into Hudson (there's a plugin for Redmine that integrates Hudson from the Redmine side, too.)", "gav": "org.jenkins-ci.plugins:redmine:0.11", "labels": ["external"], "name": "redmine", "previousTimestamp": "2012-08-17T06:25:00.00Z", "previousVersion": "0.10", "releaseTimestamp": "2012-10-28T19:27:48.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "KFGBYxdGnSPSQwHCno78GCnV0Xo=", "title": "Redmine Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/redmine/0.11/redmine.hpi", "version": "0.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Redmine+Plugin"}, "refit": {"buildDate": "Jul 14, 2011", "dependencies": [], "developers": [{"developerId": "hwellmann", "email": "harald.wellmann@gmx.de", "name": "Harald Wellmann"}], "excerpt": "A plugin for publishing Fit test reports created by reFit, an implementation of the Framework for Integrated Test (Fit). ", "gav": "com.googlecode.refit.jenkins:refit:0.3.1", "labels": ["report"], "name": "refit", "previousTimestamp": "2011-04-06T02:08:44.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-07-15T01:00:36.00Z", "requiredCore": "1.403", "scm": "svn.jenkins-ci.org", "sha1": "IbilFMeyYoX5oHRQE7y39/yu60E=", "title": "reFit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/refit/0.3.1/refit.hpi", "version": "0.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/reFit+Plugin"}, "regexemail": {"buildDate": "Jan 31, 2010", "dependencies": [], "developers": [{"developerId": "justinedelson", "name": "Justin Edelson"}], "excerpt": "This plugin allows you to generate user email addresses from usernames.", "gav": "com.mtvi.plateng.hudson:regexemail:0.3", "labels": ["user"], "name": "regexemail", "previousTimestamp": "2008-06-30T20:38:16.00Z", "previousVersion": "0.2", "releaseTimestamp": "2010-01-31T20:41:44.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "J9gFriK5ue+NWM3WF3P5OG8Kf4U=", "title": "RegEx Email Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/regexemail/0.3/regexemail.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RegEx+Email+Plugin"}, "regression-report-plugin": {"buildDate": "Jun 12, 2012", "dependencies": [], "developers": [{"developerId": "eller86", "name": "Kengo TODA"}], "excerpt": "This plugin sends a mail if your test cases find regression (new failure). ", "gav": "org.jenkins-ci.plugins:regression-report-plugin:1.0", "labels": ["report"], "name": "regression-report-plugin", "releaseTimestamp": "2012-06-12T06:35:34.00Z", "requiredCore": "1.436", "scm": "github.com", "sha1": "GEMfb4MDa+ARzWfR14EHuml1tDc=", "title": "Regression Report Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/regression-report-plugin/1.0/regression-report-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Regression+Report+Plugin"}, "release": {"buildDate": "Sep 20, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.399"}, {"name": "dashboard-view", "optional": true, "version": "2.0"}, {"name": "promoted-builds", "optional": true, "version": "2.0"}], "developers": [{"developerId": "petehayes", "email": "petehayes@gmail.com", "name": "Peter Hayes"}], "excerpt": "This plugin adds the ability to wrap your job with pre\\- and post\\- build steps which are only executed when a manual release build is triggered.", "gav": "org.jenkins-ci.plugins:release:2.3", "labels": ["buildwrapper", "listview-column"], "name": "release", "previousTimestamp": "2011-09-14T00:57:02.00Z", "previousVersion": "2.2", "releaseTimestamp": "2012-09-20T05:21:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "cKamKJumyoeDwr/71brgI5Odtzk=", "title": "Release Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/release/2.3/release.hpi", "version": "2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Release+Plugin"}, "repo": {"buildDate": "Nov 19, 2012", "dependencies": [], "developers": [{"developerId": "bjarkef", "email": "bjarkefh@gmail.com", "name": "Bjarke Freund-Hansen"}, {"developerId": "bklarson", "email": "bklarson@gmail.com", "name": "Brad Larson"}], "excerpt": "This plugin adds Repo ([http://code.google.com/p/git-repo/]) as an SCM provider in Jenkins.", "gav": "org.jenkins-ci.plugins:repo:1.3", "labels": ["scm"], "name": "repo", "previousTimestamp": "2012-04-23T16:59:16.00Z", "previousVersion": "1.2.1", "releaseTimestamp": "2012-11-19T20:55:40.00Z", "requiredCore": "1.350", "scm": "github.com", "sha1": "ce7ZgiClo/HuvwLxpQj/KrJ7vGE=", "title": "Repo Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/repo/1.3/repo.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Repo+Plugin"}, "repository": {"buildDate": "Sep 28, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "git", "optional": false, "version": "1.1.23"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "maven-plugin", "optional": false, "version": "1.466"}], "developers": [{"developerId": "magnayn", "email": "nigel.magnay@gmail.com", "name": "Nigel Magnay"}], "excerpt": "This plug-in exposes project builds as a maven repository so the artifacts can be picked up by downstream builds or other systems.", "gav": "jenkins:repository:0.11", "labels": ["maven"], "name": "repository", "previousTimestamp": "2012-04-05T17:03:16.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-09-28T19:31:12.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "/eJTCcGKH3C4hD6YW3qUvVmekHM=", "title": "Jenkins Maven Repository Server", "url": "http://updates.jenkins-ci.org/download/plugins/repository/0.11/repository.hpi", "version": "0.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Maven+Repository+Server"}, "repository-connector": {"buildDate": "Feb 18, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "imod", "email": "-", "name": "Dominik Bartholdi"}], "excerpt": "Repository Connector adds a build step which allows to resolve artifacts from a maven repository like nexus (without having maven installed). ", "gav": "org.jvnet.hudson.plugins:repository-connector:0.8.2", "labels": ["external", "maven"], "name": "repository-connector", "previousTimestamp": "2011-09-26T21:36:44.00Z", "previousVersion": "0.8.1", "releaseTimestamp": "2012-02-18T23:33:48.00Z", "requiredCore": "1.378", "scm": "github.com", "sha1": "RNX3AdZQ2/qxFI8fchubAo7pwIQ=", "title": "Repository Connector Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/repository-connector/0.8.2/repository-connector.hpi", "version": "0.8.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Repository+Connector+Plugin"}, "reverse-proxy-auth-plugin": {"buildDate": "Mar 26, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kkawaguchi@cloudbees.com", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin lets you delegate the authentication to the reverse proxy that you run in front of Jenkins.", "gav": "org.jenkins-ci.plugins:reverse-proxy-auth-plugin:1.0", "labels": ["user"], "name": "reverse-proxy-auth-plugin", "releaseTimestamp": "2011-03-26T21:32:40.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "CHkHnHHOS+KtezFxqmmI9hBcnmE=", "title": "Reverse Proxy Auth Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/reverse-proxy-auth-plugin/1.0/reverse-proxy-auth-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Reverse+Proxy+Auth+Plugin"}, "reviewboard": {"buildDate": "Feb 17, 2011", "dependencies": [{"name": "perforce", "optional": false, "version": "1.0.28"}], "developers": [{"developerId": "rshelley", "email": "ryan@12gaugemedia.com", "name": "Ryan Shelley"}], "excerpt": "This plugin connects to Reviewboard to create and update Review Requests. Reviewboard is a tool for conducting code reviews and this plugin will allow you to link your SCM updates, when they are pulled for a Jenkins build, to Reviewboard. Note that currently, only the Perforce SCM is supported.", "gav": "org.jvnet.hudson.plugins:reviewboard:1.0.1", "labels": ["notifier"], "name": "reviewboard", "previousTimestamp": "2010-05-04T17:38:06.00Z", "previousVersion": "1.0.0", "releaseTimestamp": "2011-02-17T18:47:32.00Z", "requiredCore": "1.358", "scm": "svn.jenkins-ci.org", "sha1": "teByZj4VXUnhXdL7uEPTrSdqcLg=", "title": "Reviewboard Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/reviewboard/1.0.1/reviewboard.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Reviewboard+Plugin"}, "robot": {"buildDate": "Oct 01, 2012", "dependencies": [{"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "jpiironen", "email": "janne.piironen@gmail.com", "name": "Janne Piironen"}], "excerpt": "This plugin collects and publishes Robot Framework test results", "gav": "org.jenkins-ci.plugins:robot:1.2.3", "labels": ["report"], "name": "robot", "previousTimestamp": "2012-05-09T19:54:56.00Z", "previousVersion": "1.2.2", "releaseTimestamp": "2012-10-01T16:24:12.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ziR0jZJMfZghpNWCRaqjIiPYHrI=", "title": "Robot Framework Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/robot/1.2.3/robot.hpi", "version": "1.2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin"}, "role-strategy": {"buildDate": "Oct 14, 2011", "dependencies": [], "developers": [{"developerId": "tmaurel", "name": "Thomas Maurel"}, {"developerId": "rseguy", "name": "Romain Seguy"}], "excerpt": "Adds a new role-based strategy to manage users' permissions.", "gav": "org.jenkins-ci.plugins:role-strategy:1.1.2", "labels": ["user"], "name": "role-strategy", "previousTimestamp": "2011-09-19T22:53:20.00Z", "previousVersion": "1.1.1", "releaseTimestamp": "2011-10-14T15:12:56.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "OL8aScDTWyM0ReP/fYILTU5Vt0k=", "title": "Role Strategy Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/role-strategy/1.1.2/role-strategy.hpi", "version": "1.1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Role+Strategy+Plugin"}, "rrod": {"buildDate": "Mar 01, 2012", "dependencies": [], "developers": [{"developerId": "danielpetisme", "email": "daniel.petisme@gmail.com", "name": "Daniel Petisme"}], "excerpt": "This plugin adds new actions on jobs for users to request that their jobs are renamed or deleted", "gav": "org.jenkins-ci.plugins:rrod:1.1.0", "labels": ["misc"], "name": "rrod", "previousTimestamp": "2011-10-17T21:19:04.00Z", "previousVersion": "1.0.2", "releaseTimestamp": "2012-03-01T20:41:30.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "BHc6RyGkYHbOqmZpdTP/60k3XMo=", "title": "Request Rename Or Delete Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rrod/1.1.0/rrod.hpi", "version": "1.1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Request+Rename+Or+Delete+Plugin"}, "rtc": {"buildDate": "Dec 12, 2011", "dependencies": [], "developers": [{"developerId": "deluan", "email": "jenkins@deluan.com", "name": "Deluan Quintao"}], "excerpt": "This plugin integrates IBM's Rational Team Concert (RTC) source control to Hudson. ", "gav": "org.jenkins-ci.plugins:rtc:0.3", "labels": ["scm"], "name": "rtc", "previousTimestamp": "2011-11-29T20:30:54.00Z", "previousVersion": "0.2.2", "releaseTimestamp": "2011-12-13T01:18:58.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "u5HX8M8dP83hTcc83Z3tPVKvaNM=", "title": "Rational Team Concert Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rtc/0.3/rtc.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Rational+Team+Concert+Plugin"}, "ruby": {"buildDate": "Jan 31, 2010", "dependencies": [], "developers": [{"developerId": "vivekp", "name": "Vivek Pandey"}], "excerpt": "This plugin will let users use Ruby in the build scripts. ", "gav": "org.jvnet.hudson.plugins:ruby:1.2", "labels": ["builder", "ruby"], "name": "ruby", "previousTimestamp": "2008-01-26T14:20:32.00Z", "previousVersion": "1.1", "releaseTimestamp": "2010-01-31T20:49:38.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "8Mvxy/p9VNOY8+LIlwMv5+/XhP8=", "title": "Ruby Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ruby/1.2/ruby.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ruby+Plugin"}, "ruby-runtime": {"buildDate": "Mar 22, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "Hosts runtime for enabling pure-Ruby plugins", "gav": "org.jenkins-ci.plugins:ruby-runtime:0.10", "name": "ruby-runtime", "previousTimestamp": "2012-02-09T13:44:28.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-03-22T13:55:52.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "MWaCPg4BvdYGfcUaRY45Fb9yBnc=", "title": "ruby-runtime", "url": "http://updates.jenkins-ci.org/download/plugins/ruby-runtime/0.10/ruby-runtime.hpi", "version": "0.10"}, "rubyMetrics": {"buildDate": "Mar 10, 2011", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.397"}, {"name": "rake", "optional": false, "version": "1.7.3"}], "developers": [{"developerId": "david_calavera", "email": "calavera@apache.org", "name": "David Calavera"}], "excerpt": "Ruby metric reports for Jenkins. Rcov, Rails stats, Rails notes and Flog.", "gav": "org.jenkins-ci.plugins:rubyMetrics:1.5.0", "labels": ["report", "ruby"], "name": "rubyMetrics", "previousTimestamp": "2010-11-27T18:31:10.00Z", "previousVersion": "1.4.6", "releaseTimestamp": "2011-03-11T03:33:44.00Z", "requiredCore": "1.397", "scm": "github.com", "sha1": "pIJbY1kwbVpO8Yss6/IC1iqaOFw=", "title": "Ruby metrics plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rubyMetrics/1.5.0/rubyMetrics.hpi", "version": "1.5.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ruby+metrics+plugin"}, "run-condition": {"buildDate": "May 25, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "bap", "email": "bap-jenkins@BapIT.co.uk", "name": "Bap"}], "excerpt": "Core conditions to select whether to execute a build step or publisher. Used by the [Flexible Publish Plugin] and the [Conditional BuildStep Plugin]. ", "gav": "org.jenkins-ci.plugins:run-condition:0.10", "labels": ["misc"], "name": "run-condition", "previousTimestamp": "2012-05-06T23:51:32.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-05-26T00:34:10.00Z", "requiredCore": "1.408", "scm": "github.com", "sha1": "S2616avhln75jKH2/yhK5SLphpw=", "title": "Run Condition Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/run-condition/0.10/run-condition.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Run+Condition+Plugin"}, "rundeck": {"buildDate": "Jan 04, 2012", "compatibleSinceVersion": "2.0", "dependencies": [], "developers": [{"developerId": "vbehar", "name": "Vincent Behar"}], "excerpt": "This plugin is a Notifier that will talk to a RunDeck instance (via its HTTP API) to schedule a job execution on RunDeck after a successful build on Jenkins. It is also a Trigger that will schedule a build on Jenkins after a job execution on RunDeck (using RunDeck WebHook Notification). In addition, it turns Jenkins into an Option provider for RunDeck, if you want to use your Jenkins build artifacts as an option to a RunDeck job. ", "gav": "org.jenkins-ci.plugins:rundeck:2.11", "labels": ["notifier", "external", "trigger"], "name": "rundeck", "previousTimestamp": "2011-10-12T04:06:56.00Z", "previousVersion": "2.10", "releaseTimestamp": "2012-01-05T03:58:46.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "q36Zqr/NnOOGOmiyTgfSzJAruNg=", "title": "RunDeck Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rundeck/2.11/rundeck.hpi", "version": "2.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RunDeck+Plugin"}, "rvm": {"buildDate": "Apr 03, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.7"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin runs your jobs in the RVM managed ruby+gemset of your choice", "gav": "org.jenkins-ci.ruby-plugins:rvm:0.3", "labels": ["ruby"], "name": "rvm", "previousTimestamp": "2012-01-25T01:56:28.00Z", "previousVersion": "0.2", "releaseTimestamp": "2012-04-03T15:19:20.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "2pt70X8VG9X1vcq7VpiDuKcT2gA=", "title": "RVM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/rvm/0.3/rvm.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/RVM+Plugin"}, "s3": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "dougm", "name": "Doug MacEachern"}, {"developerId": "d6y", "name": "Richard Dallaway"}, {"developerId": "longlho", "name": "Long Ho"}, {"developerId": "mikewatt", "name": "Michael Watt"}], "excerpt": "Upload build artifacts to Amazon S3", "gav": "org.jenkins-ci.plugins:s3:0.3.2", "labels": ["upload"], "name": "s3", "previousTimestamp": "2012-09-20T13:06:50.00Z", "previousVersion": "0.3.1", "releaseTimestamp": "2012-11-06T18:44:10.00Z", "requiredCore": "1.434", "scm": "github.com", "sha1": "1S0PpGWCUHT2cxG6khxuWODq6Ic=", "title": "S3 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/s3/0.3.2/s3.hpi", "version": "0.3.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/S3+Plugin"}, "saferestart": {"buildDate": "Sep 07, 2011", "dependencies": [], "developers": [{"developerId": "sogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin allows you to restart Jenkins safely.", "gav": "org.jenkins-ci.plugins:saferestart:0.2", "labels": ["misc"], "name": "saferestart", "previousTimestamp": "2010-10-18T20:53:24.00Z", "previousVersion": "0.1", "releaseTimestamp": "2011-09-08T02:47:20.00Z", "requiredCore": "1.421", "scm": "github.com", "sha1": "pdGEVPrNiv9AervaJ1Xu8IBAQDk=", "title": "SafeRestart Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/saferestart/0.2/saferestart.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SafeRestart+Plugin"}, "sauce-ondemand": {"buildDate": "Dec 05, 2012", "dependencies": [{"name": "copy-to-slave", "optional": false, "version": "1.4"}, {"name": "maven-plugin", "optional": false, "version": "1.467"}, {"name": "javadoc", "optional": false, "version": "1.0"}], "developers": [{"developerId": "ross"}], "excerpt": "This plugin allows you to integrate Sauce OnDemand with Jenkins.", "gav": "org.jenkins-ci.plugins:sauce-ondemand:1.35", "labels": ["buildwrapper"], "name": "sauce-ondemand", "previousTimestamp": "2012-11-27T02:13:34.00Z", "previousVersion": "1.34", "releaseTimestamp": "2012-12-06T00:04:00.00Z", "requiredCore": "1.439", "scm": "github.com", "sha1": "2QWLcRcUlK+kyiru1KP7jX7oYiA=", "title": "Sauce OnDemand Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sauce-ondemand/1.35/sauce-ondemand.hpi", "version": "1.35", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sauce+OnDemand+Plugin"}, "sbt": {"buildDate": "Jul 17, 2012", "dependencies": [], "developers": [{"developerId": "uzilan", "email": "uzi.landsmann@gmail.com", "name": "Uzi Landsmann"}], "excerpt": "This plugin allows building Scala projects using sbt. ", "gav": "org.jenkins-ci.plugins:sbt:1.4", "labels": ["builder"], "name": "sbt", "previousTimestamp": "2011-08-27T13:24:28.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-07-17T20:24:34.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "UXG6GZDyIxGZUZqtVUBeZqhtS7M=", "title": "sbt plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sbt/1.4/sbt.hpi", "version": "1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/sbt+plugin"}, "schedule-failed-builds": {"buildDate": "Dec 28, 2009", "dependencies": [], "developers": [{"developerId": "sfritz", "name": "Stefan Fritz"}], "excerpt": "Allows you to retry failed Hudson builds every n minutes.", "gav": "com.progress.hudson:schedule-failed-builds:1.1", "labels": ["trigger"], "name": "schedule-failed-builds", "previousTimestamp": "2008-09-19T11:23:46.00Z", "previousVersion": "1.0", "releaseTimestamp": "2009-12-29T02:41:02.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "MlP7dxQRuT+IMolVNq5xXpScN1s=", "title": "Retry Failed Builds Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/schedule-failed-builds/1.1/schedule-failed-builds.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Retry+Failed+Builds+Plugin"}, "scm-sync-configuration": {"buildDate": "Oct 28, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.39"}], "developers": [{"developerId": "fcamblor", "email": "fcamblor+jenkinswiki@gmail.com", "name": "Frederic Camblor"}, {"developerId": "bpaquet", "email": "bertrand.paquet@gmail.com", "name": "Bertrand Paquet"}], "excerpt": "Syncs configuration files to a SCM repository and tracks changes done to them ", "gav": "org.jenkins-ci.plugins:scm-sync-configuration:0.0.6.1", "labels": ["misc"], "name": "scm-sync-configuration", "previousTimestamp": "2012-09-18T05:59:22.00Z", "previousVersion": "0.0.6", "releaseTimestamp": "2012-10-29T03:36:56.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "u3SDtmNgc1gQAX2/zgq1gCwtqjc=", "title": "SCM Sync configuration plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scm-sync-configuration/0.0.6.1/scm-sync-configuration.hpi", "version": "0.0.6.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin"}, "scm2job": {"buildDate": "Sep 20, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.39"}, {"name": "git", "optional": false, "version": "1.1.17"}], "developers": [{"developerId": "stefanbrausch", "email": "stefan.brausch@1und1.de", "name": "Stefan Brausch"}, {"developerId": "kstutz", "email": "kathi.stutz@1und1.de", "name": "Kathi Stutz"}], "excerpt": "Finds jobs by their SCM URL. ", "gav": "org.jenkins-ci.plugins:scm2job:2.2", "labels": ["scm-related"], "name": "scm2job", "previousTimestamp": "2012-09-19T19:57:42.00Z", "previousVersion": "2.1", "releaseTimestamp": "2012-09-20T21:57:24.00Z", "requiredCore": "1.424.6", "scm": "github.com", "sha1": "UTloKrMrXCDdmoYtJIpxDqoAI0Q=", "title": "SCM2Job Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scm2job/2.2/scm2job.hpi", "version": "2.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCM2Job+Plugin"}, "scons": {"buildDate": "May 24, 2011", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gbois@dev.java.net", "name": "Gregory Boissinot"}], "excerpt": "This plugin allows Hudson to invoke SCons build script as the main build step.", "gav": "com.thalesgroup.jenkins-ci.plugins:scons:0.4", "labels": ["builder"], "name": "scons", "previousTimestamp": "2011-03-07T01:12:56.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-05-24T05:37:02.00Z", "requiredCore": "1.413", "scm": "github.com", "sha1": "KobvAmnJkmEayv9IHUOY9PCqod8=", "title": "SCons Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scons/0.4/scons.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCons+Plugin"}, "scp": {"buildDate": "Jan 07, 2011", "dependencies": [], "developers": [{"developerId": "ramazanyich2", "name": "Ramil Israfilov"}], "excerpt": "This plugin uploads build artifacts to repository sites using SCP (SSH) protocol.", "gav": "org.jvnet.hudson.plugins:scp:1.8", "labels": ["upload"], "name": "scp", "previousTimestamp": "2010-11-20T15:12:00.00Z", "previousVersion": "1.7", "releaseTimestamp": "2011-01-07T05:05:58.00Z", "requiredCore": "1.389", "scm": "github.com", "sha1": "9mS+ZOeydNbMV07rXC62xNFDwEw=", "title": "SCP plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scp/1.8/scp.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SCP+plugin"}, "screenshot": {"buildDate": "Dec 01, 2009", "dependencies": [], "developers": [{"developerId": "tom"}], "excerpt": "Shows a screenshot of a running build.", "gav": "org.jvnet.hudson.plugins:screenshot:1.1", "labels": ["ui", "buildwrapper"], "name": "screenshot", "previousTimestamp": "2009-11-29T02:18:14.00Z", "previousVersion": "1.0", "releaseTimestamp": "2009-12-02T02:06:30.00Z", "requiredCore": "1.335", "scm": "svn.dev.java.net", "sha1": "14C0JllgeK68CdJb7vPxF8cPu6Y=", "title": "Screenshot Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/screenshot/1.1/screenshot.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Screenshot+Plugin"}, "script-realm": {"buildDate": "Jun 24, 2012", "dependencies": [], "developers": [{"developerId": "imod", "email": "-", "name": "Dominik Bartholdi"}], "excerpt": "This plugin allows you to use a user-written custom script to authenticate the username and password", "gav": "org.jvnet.hudson.plugins:script-realm:1.5", "labels": ["user"], "name": "script-realm", "previousTimestamp": "2011-07-29T23:42:08.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-06-24T22:57:46.00Z", "requiredCore": "1.330", "scm": "github.com", "sha1": "d4ee6ZzSh4OhfkcyY80ZB+0BAR0=", "title": "Script Security Realm", "url": "http://updates.jenkins-ci.org/download/plugins/script-realm/1.5/script-realm.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Realm"}, "script-scm": {"buildDate": "Oct 22, 2012", "dependencies": [], "developers": [{"developerId": "vimil", "name": "vimil"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:script-scm:1.11", "labels": [], "name": "script-scm", "previousTimestamp": "2012-10-19T13:31:46.00Z", "previousVersion": "1.8", "releaseTimestamp": "2012-10-22T16:25:02.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "QYKuWLkppC7rLoOVjQYXD7dqgOM=", "title": "Script SCM Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/script-scm/1.11/script-scm.hpi", "version": "1.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Script+SCM+Plugin"}, "scripted-cloud-plugin": {"buildDate": "Oct 12, 2012", "dependencies": [{"name": "ivy", "optional": true, "version": "1.19"}], "developers": [{"developerId": "hisatti77", "email": "hisatti77@gmail.com", "name": "Satinder Singh"}], "excerpt": "Add script based slave VM management to Jenkins to use virtual machines as slaves ", "gav": "org.jenkins-ci.plugins:scripted-cloud-plugin:0.12", "labels": ["slaves"], "name": "scripted-cloud-plugin", "previousTimestamp": "2012-10-06T01:32:22.00Z", "previousVersion": "0.11", "releaseTimestamp": "2012-10-12T21:47:14.00Z", "requiredCore": "1.464", "scm": "github.com", "sha1": "sy4QBfyjx6SJda+uayHVfK0gt0M=", "title": "Scripted Cloud plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scripted-cloud-plugin/0.12/scripted-cloud-plugin.hpi", "version": "0.12", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scripted+Cloud+plugin"}, "scriptler": {"buildDate": "Nov 19, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.17"}, {"name": "git-server", "optional": false, "version": "1.1"}, {"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "imod", "email": "-", "name": "Dominik Bartholdi"}], "excerpt": "Scriptler allows you to store/edit groovy scripts and execute it on any of the slaves/nodes... no need to copy/paste groovy code anymore. ", "gav": "org.jenkins-ci.plugins:scriptler:2.5.1", "labels": ["slaves", "misc", "groovy-related"], "name": "scriptler", "previousTimestamp": "2012-11-08T02:24:04.00Z", "previousVersion": "2.5", "releaseTimestamp": "2012-11-20T04:12:30.00Z", "requiredCore": "1.451", "scm": "github.com", "sha1": "GxSE6MZdqwLuW/yTKmFgVsZXj64=", "title": "Scriptler Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scriptler/2.5.1/scriptler.hpi", "version": "2.5.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Scriptler+Plugin"}, "scripttrigger": {"buildDate": "Jul 25, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "ScriptTrigger makes it possible to monitor an environment with a script.", "gav": "org.jenkins-ci.plugins:scripttrigger:0.21", "labels": ["trigger"], "name": "scripttrigger", "previousTimestamp": "2012-06-16T15:07:10.00Z", "previousVersion": "0.20", "releaseTimestamp": "2012-07-25T05:43:14.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "HNmeh5otHjenQ1WuLyNOpmrx6lw=", "title": "ScriptTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/scripttrigger/0.21/scripttrigger.hpi", "version": "0.21", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ScriptTrigger+Plugin"}, "search-all-results-plugin": {"buildDate": "Jun 25, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plugin enables to show all searched results (not only suggestion) and categorization. ", "gav": "org.jenkins-ci.plugins:search-all-results-plugin:1.0", "labels": [], "name": "search-all-results-plugin", "releaseTimestamp": "2012-06-25T13:36:52.00Z", "requiredCore": "1.471", "scm": "github.com", "sha1": "qG6sd4kHUFvw52HatIL7tN6wsx0=", "title": "All searched results plugin", "url": "http://updates.jenkins-ci.org/download/plugins/search-all-results-plugin/1.0/search-all-results-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/All+searched+results+plugin"}, "secret": {"buildDate": "May 06, 2010", "dependencies": [], "developers": [{"developerId": "jglick", "email": "jesse.glick@sun.com", "name": "Jesse Glick"}], "excerpt": "Lets you upload secret files to be used by a build.", "gav": "org.jvnet.hudson.plugins:secret:1.6", "labels": ["buildwrapper"], "name": "secret", "previousTimestamp": "2010-02-15T23:13:44.00Z", "previousVersion": "1.5", "releaseTimestamp": "2010-05-06T20:27:12.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "SOj2X0iOJ+7RnNKAR0kJjghgkuk=", "title": "Build Secret Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/secret/1.6/secret.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Build+Secret+Plugin"}, "sectioned-view": {"buildDate": "Dec 04, 2011", "dependencies": [], "developers": [{"developerId": "tbingaman", "email": "timothy.bingaman@gmail.com", "name": "Timothy Bingaman"}], "excerpt": "This plugin provides a new view implementation that can be divided into sections. Each section can display different information about the selected jobs. An extension point is also provided to define new types of sections.", "gav": "org.jvnet.hudson.plugins:sectioned-view:1.16", "labels": ["ui"], "name": "sectioned-view", "previousTimestamp": "2011-03-23T15:05:28.00Z", "previousVersion": "1.15", "releaseTimestamp": "2011-12-04T21:36:38.00Z", "requiredCore": "1.388", "scm": "github.com", "sha1": "4tvOl5TCgbhQom8a2OJsyrFYxgc=", "title": "Sectioned View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sectioned-view/1.16/sectioned-view.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sectioned+View+Plugin"}, "selection-tasks-plugin": {"buildDate": "Feb 28, 2011", "dependencies": [], "developers": [{"developerId": "nzhelyakov", "email": "nzhelyakov@gmail.com", "name": "Nikita Zhelyakov"}, {"email": "tzolotuhin@gmail.com", "name": "Timur Zolotuhin"}], "excerpt": "This plugin adds new variable. You may select several tasks (for example, Selenium tests) for run. ", "gav": "org.jvnet.hudson.plugins:selection-tasks-plugin:1.0", "labels": ["must-be-labeled"], "name": "selection-tasks-plugin", "releaseTimestamp": "2011-03-01T00:18:24.00Z", "requiredCore": "1.366", "scm": "svn.jenkins-ci.org", "sha1": "C6EJvWUCaKmzwjSXb8sl642HveE=", "title": "Selection Tasks Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/selection-tasks-plugin/1.0/selection-tasks-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selection+Tasks+Plugin"}, "selenium": {"buildDate": "Sep 05, 2012", "dependencies": [], "developers": [{"developerId": "darkrift", "email": "lavoie.richard@gmail.com", "name": "Richard Lavoie"}], "excerpt": "This plugin turns your Jenkins cluster into a Selenium2 Grid cluster", "gav": "org.jenkins-ci.plugins:selenium:2.2", "labels": ["cluster"], "name": "selenium", "previousTimestamp": "2012-09-04T00:49:44.00Z", "previousVersion": "2.1", "releaseTimestamp": "2012-09-05T04:29:56.00Z", "requiredCore": "1.478", "scm": "github.com", "sha1": "SrwEsRYa46Xp9ooP8HMEfYJkEIk=", "title": "Selenium Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/selenium/2.2/selenium.hpi", "version": "2.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Plugin"}, "selenium-aes": {"buildDate": "Jan 03, 2011", "dependencies": [], "developers": [{"developerId": "onozaty"}], "excerpt": "This plugin is for continuous regression test by Selenium Auto Exec Server (AES).", "gav": "org.jvnet.hudson.plugins:selenium-aes:0.5", "labels": ["builder", "report"], "name": "selenium-aes", "previousTimestamp": "2010-02-05T14:56:38.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-01-03T22:28:08.00Z", "requiredCore": "1.391", "scm": "svn.java.net", "sha1": "LGfTbg0/TYuS3CwT6y6wMOV5PBw=", "title": "Selenium AES Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/selenium-aes/0.5/selenium-aes.hpi", "version": "0.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Selenium+AES+Plugin"}, "seleniumhq": {"buildDate": "Jul 16, 2010", "dependencies": [], "developers": [{"developerId": "pascal_martin", "name": "Pascal Martin"}], "excerpt": "This plugin allows you to run and load HTML Selenese suite result generate by Selenium Server from Seleniumhq. Jenkins will generate the trend report of test result. The Seleniumhq plug in can be downloaded here.", "gav": "org.jvnet.hudson.plugins:seleniumhq:0.4", "labels": ["builder", "report"], "name": "seleniumhq", "previousTimestamp": "2010-07-11T00:46:32.00Z", "previousVersion": "0.3", "releaseTimestamp": "2010-07-16T19:16:38.00Z", "requiredCore": "1.366", "scm": "svn.dev.java.net", "sha1": "qhJVAttsNzozQT2TWKgmi9LJ1+M=", "title": "Seleniumhq Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/seleniumhq/0.4/seleniumhq.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Seleniumhq+Plugin"}, "seleniumhtmlreport": {"buildDate": "Nov 03, 2011", "dependencies": [], "developers": [{"developerId": "m211", "name": "Marco Machmer"}], "excerpt": "This plugin visualizes the results of selenium tests. ", "gav": "org.jenkins-ci.plugins:seleniumhtmlreport:0.94", "labels": ["report"], "name": "seleniumhtmlreport", "previousTimestamp": "2011-05-24T12:13:08.00Z", "previousVersion": "0.93", "releaseTimestamp": "2011-11-03T13:03:10.00Z", "requiredCore": "1.405", "scm": "github.com", "sha1": "rsBIrOiQiqj6/MOxMCTFt6WsmnQ=", "title": "seleniumhtmlreport Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/seleniumhtmlreport/0.94/seleniumhtmlreport.hpi", "version": "0.94", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/seleniumhtmlreport+Plugin"}, "seleniumrc-plugin": {"buildDate": "Mar 02, 2011", "dependencies": [], "developers": [{"developerId": "nzhelyakov", "email": "nzhelyakov@gmail.com", "name": "Nikita Zhelyakov"}], "excerpt": "This plugin allows you to create Selenium server instance for each project build. ", "gav": "org.jvnet.hudson.plugins:seleniumrc-plugin:1.0", "labels": ["buildwrapper", "must-be-labeled"], "name": "seleniumrc-plugin", "releaseTimestamp": "2011-03-02T05:27:40.00Z", "requiredCore": "1.366", "scm": "svn.jenkins-ci.org", "sha1": "ULZBFhnLxv1sGK6Rnojt6mQzXAs=", "title": "SeleniumRC Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/seleniumrc-plugin/1.0/seleniumrc-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SeleniumRC+Plugin"}, "serenity": {"buildDate": "May 13, 2010", "dependencies": [], "developers": [{"developerId": "michael.couck", "email": "michael.couck@gmail.com", "name": "Michael Couck"}], "excerpt": "Serenity is a Java code coverage, complexity and dependency library that uses dynamic instrumentation, with a friendly Hudson ui.", "gav": "org.jvnet.hudson.plugins:serenity:0.4", "labels": ["report"], "name": "serenity", "previousTimestamp": "2010-03-16T16:31:58.00Z", "previousVersion": "0.3", "releaseTimestamp": "2010-05-13T16:56:30.00Z", "requiredCore": "1.350", "scm": "svn.dev.java.net", "sha1": "NTYMV3iNwIEfH+czfKB0ZuUlPu0=", "title": "Serenity Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/serenity/0.4/serenity.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Serenity+Plugin"}, "sfee": {"buildDate": "Aug 12, 2010", "dependencies": [{"name": "description-setter", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.361"}], "developers": [{"developerId": "awpyv"}], "excerpt": "Authenticate users and publish build artifacts relying on a Collabnet Source Forge Enterprise Edition (SFEE) server.", "gav": "org.jvnet.hudson.plugins:sfee:1.0.4", "labels": ["external", "upload", "user"], "name": "sfee", "previousTimestamp": "2009-10-19T16:57:10.00Z", "previousVersion": "1.0.3", "releaseTimestamp": "2010-08-12T15:57:48.00Z", "requiredCore": "1.361", "scm": "svn.dev.java.net", "sha1": "FcCj+/e5eOeKMwYXCZhDLCu5dzM=", "title": "SFEE Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sfee/1.0.4/sfee.hpi", "version": "1.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SFEE+Plugin"}, "shared-objects": {"buildDate": "Aug 26, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.444"}, {"name": "envinject", "optional": false, "version": "1.68"}], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to share objects (script file, source file, tool installation, ...) from an environment in Jenkins and manage dynamically these objects through environment variables with the [JENKINS:EnvInject Plugin] during the job build.", "gav": "org.jenkins-ci.plugins:shared-objects:0.42", "labels": [], "name": "shared-objects", "previousTimestamp": "2012-07-14T03:01:28.00Z", "previousVersion": "0.41", "releaseTimestamp": "2012-08-26T21:07:12.00Z", "requiredCore": "1.444", "scm": "github.com", "sha1": "ep4oE3heWCkgid0fxsr2ZYZrLA4=", "title": "SharedObjects Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/shared-objects/0.42/shared-objects.hpi", "version": "0.42", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SharedObjects+Plugin"}, "shelve-project-plugin": {"buildDate": "Aug 06, 2011", "dependencies": [], "developers": [{"developerId": "ashlux", "email": "ashlux@gmail.com", "name": "Ash Lux"}], "excerpt": "This plugin lets you shelve projects so that they can easily be resurrected.", "gav": "org.jenkins-ci.plugins:shelve-project-plugin:1.3", "labels": ["ui", "misc"], "name": "shelve-project-plugin", "previousTimestamp": "2011-02-08T22:54:40.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-08-06T13:33:42.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "jBzsK2886A0JCi2OC9QJulUb50E=", "title": "Shelve Project Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/shelve-project-plugin/1.3/shelve-project-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Shelve+Project+Plugin"}, "shiningpanda": {"buildDate": "Nov 28, 2012", "dependencies": [], "developers": [{"developerId": "omansion", "email": "olivier.mansion@shiningpanda.com", "name": "Olivier Mansion"}, {"developerId": "atabary", "email": "alexis.tabary@shiningpanda.com", "name": "Alexis Tabary"}], "excerpt": "This plugin adds Python support to Jenkins with some useful builders (Python builder, virtualenv builder, tox builder...) and the ability to use a Python axis in multi-configuration projects (for testing on multiple versions of Python).", "gav": "org.jenkins-ci.plugins:shiningpanda:0.17", "labels": ["builder"], "name": "shiningpanda", "previousTimestamp": "2012-11-22T01:39:48.00Z", "previousVersion": "0.16", "releaseTimestamp": "2012-11-29T03:14:22.00Z", "requiredCore": "1.429", "scm": "github.com", "sha1": "56nVRQW6czBiaQlfPBpXsFLD0Vk=", "title": "ShiningPanda Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/shiningpanda/0.17/shiningpanda.hpi", "version": "0.17", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ShiningPanda+Plugin"}, "show-build-parameters": {"buildDate": "Mar 06, 2011", "dependencies": [], "developers": [{"developerId": "petehayes", "name": "Peter Hayes"}], "excerpt": "Show the parameters used for a build on the main build page ", "gav": "org.jenkins-ci.plugins:show-build-parameters:1.0", "labels": ["ui"], "name": "show-build-parameters", "releaseTimestamp": "2011-03-06T15:20:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ae5bAwfMkHzoDBgsyAA1yIMRucA=", "title": "Show Build Parameters Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/show-build-parameters/1.0/show-build-parameters.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Show+Build+Parameters+Plugin"}, "sicci_for_xcode": {"buildDate": "Feb 09, 2011", "dependencies": [], "developers": [{"developerId": "bene", "email": "benedikt@biallowons.de", "name": "Benedikt Biallowons"}], "excerpt": "This plugin integrates support for Xcode projects.", "gav": "org.jvnet.hudson.plugins:sicci_for_xcode:0.0.8", "labels": ["builder", "ios"], "name": "sicci_for_xcode", "previousTimestamp": "2011-02-01T17:56:54.00Z", "previousVersion": "0.0.7", "releaseTimestamp": "2011-02-09T14:20:04.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "OWTxzIrYsIkdjE+phvc1GQRkwqI=", "title": "SICCI for Xcode Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sicci_for_xcode/0.0.8/sicci_for_xcode.hpi", "version": "0.0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SICCI+for+Xcode+Plugin"}, "sidebar-link": {"buildDate": "Jul 24, 2011", "dependencies": [], "developers": [{"developerId": "mindless", "name": "Alan Harder"}], "excerpt": "Add links in the sidebar of the Jenkins main page, view tabs and project pages.", "gav": "org.jenkins-ci.plugins:sidebar-link:1.6", "labels": ["ui"], "name": "sidebar-link", "previousTimestamp": "2011-01-20T12:37:14.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-07-24T12:26:02.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "95DL2vYrkbhW4FomEUtbIj3TgAg=", "title": "Sidebar-Link Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sidebar-link/1.6/sidebar-link.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sidebar-Link+Plugin"}, "signal-killer": {"buildDate": "Feb 10, 2011", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "  This plugin extends ProcessKiller extension point and sends signal (currentlly SIGKILL) to given job via native GNU C library call.   ", "gav": "hudson.plugins.signal_killer:signal-killer:1.0", "labels": ["misc"], "name": "signal-killer", "releaseTimestamp": "2011-02-10T19:29:14.00Z", "requiredCore": "1.391", "scm": "github.com", "sha1": "mJIImiIigV6xPXAg5QdKk3CGBlM=", "title": "Signal killer", "url": "http://updates.jenkins-ci.org/download/plugins/signal-killer/1.0/signal-killer.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Signal+killer"}, "simple-theme-plugin": {"buildDate": "Jul 29, 2011", "dependencies": [], "developers": [{"developerId": "mallowlabs", "email": "mallowlabs@gmail.com", "name": "mallowlabs"}], "excerpt": "A plugin for Jenkins that supports custom CSS & JavaScript. You can customize Jenkins's appearance (ex. his gentle face on the background). ", "gav": "org.codefirst.jenkins.simplethemeplugin:simple-theme-plugin:0.2", "labels": ["ui"], "name": "simple-theme-plugin", "releaseTimestamp": "2011-07-29T19:14:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "bC5ilH3xsYurk2R+y8vCDWBjtsU=", "title": "Simple Theme Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/simple-theme-plugin/0.2/simple-theme-plugin.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Simple+Theme+Plugin"}, "simpleclearcase": {"buildDate": "Mar 14, 2012", "dependencies": [], "developers": [{"developerId": "sata_", "email": "sam@tavakoli.se", "name": "Sam Tavakoli"}], "excerpt": "Integrates Jenkins with ClearCase.", "gav": "jenkins.plugins:simpleclearcase:1.2.2", "labels": [], "name": "simpleclearcase", "previousTimestamp": "2012-03-13T19:19:44.00Z", "previousVersion": "1.2.1", "releaseTimestamp": "2012-03-14T17:43:10.00Z", "requiredCore": "1.452", "scm": "github.com", "sha1": "DCOw3J21RcGMpwtYEeSNFkXW9Ng=", "title": "SimpleClearCase-Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/simpleclearcase/1.2.2/simpleclearcase.hpi", "version": "1.2.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SimpleClearCase-Plugin"}, "simpleupdatesite": {"buildDate": "Sep 17, 2011", "dependencies": [], "developers": [{"developerId": "junoyoon", "email": "junoyoon@gmail.com", "name": "JunHo Yoon"}], "excerpt": "This plugin make Jenkins connect to the custom support site which provide custom plugin update info and announcements. ", "gav": "org.jenkins-ci.plugins:simpleupdatesite:1.1.2", "labels": ["misc"], "name": "simpleupdatesite", "releaseTimestamp": "2011-09-17T05:28:12.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "v0mCSfELSnPdpf1433omqFqRs8s=", "title": "SimpleUpdateSite Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/simpleupdatesite/1.1.2/simpleupdatesite.hpi", "version": "1.1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SimpleUpdateSite+Plugin"}, "sitemonitor": {"buildDate": "Nov 01, 2011", "dependencies": [], "developers": [{"developerId": "cliffano", "email": "blah@cliffano.com", "name": "Cliffano Subagio"}], "excerpt": "Monitors web site up/down status.", "gav": "org.jvnet.hudson.plugins:sitemonitor:0.4", "labels": ["post-build"], "name": "sitemonitor", "previousTimestamp": "2011-02-14T14:48:12.00Z", "previousVersion": "0.2", "releaseTimestamp": "2011-11-01T23:09:56.00Z", "requiredCore": "1.434", "scm": "github.com", "sha1": "vwH3TH44voPzWr+k7Ovhe5rqi3A=", "title": "SiteMonitor Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sitemonitor/0.4/sitemonitor.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SiteMonitor+Plugin"}, "skip-certificate-check": {"buildDate": "Sep 07, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "This is a plugin that makes JVM bypass all the HTTPS certificate checks. Convenient if you deal with self-signed certificates and so on. Use with caution.", "gav": "org.jenkins-ci.plugins:skip-certificate-check:1.0", "labels": ["misc"], "name": "skip-certificate-check", "releaseTimestamp": "2011-09-07T15:52:54.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "THcV5kg0L/LR3ID4vTQZxX6Lywc=", "title": "Skip Certificate Check plugin", "url": "http://updates.jenkins-ci.org/download/plugins/skip-certificate-check/1.0/skip-certificate-check.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Skip+Certificate+Check+plugin"}, "skype-notifier": {"buildDate": "May 14, 2011", "dependencies": [{"name": "instant-messaging", "optional": false, "version": "1.16"}], "developers": [{"developerId": "jbh", "email": "jarlebh@gmail.com", "name": "Jarle Hjortland"}], "excerpt": "Integrates Jenkins with Skype for instant messaging. Requires extra manual installation steps\\!\\!\\! Note that you also need to install the instant-messaging plugin.", "gav": "org.jenkins-ci.plugins:skype-notifier:1.1.0", "labels": ["notifier"], "name": "skype-notifier", "previousTimestamp": "2011-05-07T01:49:12.00Z", "previousVersion": "1.0.1", "releaseTimestamp": "2011-05-15T00:22:34.00Z", "requiredCore": "1.404", "scm": "github.com", "sha1": "0/aVziykcHu6OkRmUGXj7GZ00H8=", "title": "Skype Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/skype-notifier/1.1.0/skype-notifier.hpi", "version": "1.1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin"}, "sladiator-notifier": {"buildDate": "Jun 29, 2012", "dependencies": [], "developers": [{"developerId": "mkemme", "email": "martins.kemme@gmail.com", "name": "Martins Kemme"}], "excerpt": "Sends build status notifications to the SLAdiator monitoring application ([http://sladiator.com]). ", "gav": "org.jenkins-ci.plugins:sladiator-notifier:1.0.4", "labels": ["notifier"], "name": "sladiator-notifier", "previousTimestamp": "2012-04-19T19:33:22.00Z", "previousVersion": "1.0.2", "releaseTimestamp": "2012-06-29T17:47:08.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "tg+vi33M6Hi8ZvtOvK3lr9uKov0=", "title": "SLAdiator plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sladiator-notifier/1.0.4/sladiator-notifier.hpi", "version": "1.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SLAdiator+plugin"}, "slave-prerequisites": {"buildDate": "Feb 29, 2012", "dependencies": [], "developers": [{"developerId": "ndeloof", "email": "nicolas.deloof@gmail.com", "name": "Nicolas De Loof"}], "excerpt": "This plugin allows to check prerequisites on slave before a job can run a build on it", "gav": "org.jenkins-ci.plugins:slave-prerequisites:1.0", "labels": [], "name": "slave-prerequisites", "releaseTimestamp": "2012-02-29T19:16:14.00Z", "requiredCore": "1.452", "scm": "github.com", "sha1": "IEhASdw3rTtil5vgK5z1TlRQMkc=", "title": "Slave Prerequisites Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/slave-prerequisites/1.0/slave-prerequisites.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Prerequisites+Plugin"}, "slave-setup": {"buildDate": "Jul 02, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "ffromm", "name": "Frederik Fromm"}], "excerpt": "This plugin prepares slaves for build execution by letting you copy files and execute scripts before the slave gets used.", "gav": "org.jenkins-ci.plugins:slave-setup:1.6", "labels": ["cluster", "slaves"], "name": "slave-setup", "previousTimestamp": "2012-06-18T16:46:12.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-07-02T16:00:42.00Z", "requiredCore": "1.442", "scm": "github.com", "sha1": "maUWMsiiRdk9MirQaGl2jLuAVJY=", "title": "Slave Setup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/slave-setup/1.6/slave-setup.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Setup+Plugin"}, "slave-squatter": {"buildDate": "Aug 07, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin enables administrators to reserve executors to be used outside Jenkins.", "gav": "org.jenkins-ci.plugins:slave-squatter:1.2", "labels": ["slaves"], "name": "slave-squatter", "previousTimestamp": "2010-09-29T21:33:50.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-08-07T13:15:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ohVYgUUtofZvBLAeiqHyMtokkPI=", "title": "Slave Squatter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/slave-squatter/1.2/slave-squatter.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Slave+Squatter+Plugin"}, "slave-status": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "douglassquirrel", "name": "Douglas Squirrel"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Monitor the status of Hudson slaves.", "gav": "org.jvnet.hudson.plugins:slave-status:1.6", "labels": ["slaves"], "name": "slave-status", "previousTimestamp": "2011-11-03T01:19:42.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-11-03T01:21:06.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "p5HHzKUcrMyQHn/fnB3MuYaCmCI=", "title": "slave-status", "url": "http://updates.jenkins-ci.org/download/plugins/slave-status/1.6/slave-status.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/slave-status"}, "sloccount": {"buildDate": "Jun 16, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.447"}], "developers": [{"developerId": "npiguet", "name": "Nicolas Piguet"}, {"developerId": "ohtake", "name": "OHTAKE Tomohiro"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}, {"developerId": "ssogabe", "email": "s.sogabe@gmail.com", "name": "Seiji Sogabe"}], "excerpt": "This plug-in generates the trend report for SLOCCount, an open source program which counts the number of lines of codes in over 25 different languages, including C/C++, Ada, COBOL, Fortran, SQL, Ruby, Python, etc...", "gav": "hudson.plugins.sloccount:sloccount:1.8", "labels": ["report"], "name": "sloccount", "previousTimestamp": "2012-05-20T18:20:00.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-06-17T03:39:46.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "Ox4DjkgFPtOaE0C2Hj4HVjbb+AI=", "title": "SLOCCount Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sloccount/1.8/sloccount.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SLOCCount+Plugin"}, "smart-jenkins": {"buildDate": "Aug 01, 2011", "dependencies": [], "developers": [{"developerId": "future-azure", "email": "future.azure@gmail.com", "name": "Yi Hu"}, {"name": "Wenting Gu"}], "excerpt": "This plugin reduces the electricity consumption by shutting down idle slaves and re-schedules jobs to avoid the rush hours of electricity. ", "gav": "org.jenkins-ci.plugins:smart-jenkins:1.0", "labels": ["slaves"], "name": "smart-jenkins", "releaseTimestamp": "2011-08-01T15:48:26.00Z", "requiredCore": "1.417", "scm": "github.com", "sha1": "spKQWs6C87Z7X5CTeXmgsntLCbc=", "title": "Smart Jenkins", "url": "http://updates.jenkins-ci.org/download/plugins/smart-jenkins/1.0/smart-jenkins.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Smart+Jenkins"}, "snsnotify": {"buildDate": "Mar 21, 2012", "dependencies": [], "developers": [{"developerId": "mikewatt", "name": "Michael Watt"}], "excerpt": "Send build notifications to an AWS SNS Topic.", "gav": "org.jenkins-ci.plugins:snsnotify:1.6", "labels": ["notifier"], "name": "snsnotify", "previousTimestamp": "2011-10-03T17:48:04.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-03-21T21:11:34.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "iAfGQgpuLIEDApbdd+B7qErW0zA=", "title": "Amazon SNS Notifier", "url": "http://updates.jenkins-ci.org/download/plugins/snsnotify/1.6/snsnotify.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Amazon+SNS+Notifier"}, "sonar": {"buildDate": "Nov 27, 2012", "compatibleSinceVersion": "1.2", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.344"}], "developers": [{"developerId": "godin", "email": "mandrikov@gmail.com", "name": "Evgeny Mandrikov"}, {"developerId": "sbrandhof", "email": "simon.brandhof@gmail.com", "name": "Simon Brandhof"}, {"developerId": "dgageot", "email": "david@gageot.net", "name": "David Gageot"}, {"developerId": "henryju", "email": "henryju@yahoo.fr", "name": "Julien Henry"}], "excerpt": "Quickly benefit from Sonar, an open-source dashboard based on many analysis tools like Checkstyle, PMD and Cobertura.", "gav": "org.jvnet.hudson.plugins:sonar:2.0.1", "labels": ["external", "report"], "name": "sonar", "previousTimestamp": "2012-10-19T15:50:30.00Z", "previousVersion": "2.0", "releaseTimestamp": "2012-11-27T21:07:32.00Z", "requiredCore": "1.344", "scm": "github.com", "sha1": "j8CRD1/JxtbdYu0zE3eYG/Pvsmo=", "title": "Sonar plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sonar/2.0.1/sonar.hpi", "version": "2.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sonar+plugin"}, "sonatype-ci": {"buildDate": "Sep 28, 2012", "dependencies": [], "developers": [{"developerId": "mcculls", "name": "Stuart McCulloch"}], "excerpt": "Insight for CI analyzes every component in every build, including dependencies, to help you find and fix license, security and quality problems quickly. ", "gav": "org.jenkins-ci.plugins:sonatype-ci:1.2", "labels": ["report"], "name": "sonatype-ci", "previousTimestamp": "2012-09-28T01:54:26.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-09-29T00:50:26.00Z", "requiredCore": "1.395", "scm": "github.com", "sha1": "sswgv6TMI2hZlBeNkxAwKIOFd4k=", "title": "Sonatype CI Plugins", "url": "http://updates.jenkins-ci.org/download/plugins/sonatype-ci/1.2/sonatype-ci.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Sonatype+CI+Plugins"}, "sounds": {"buildDate": "Sep 01, 2011", "dependencies": [], "developers": [{"developerId": "oxcafebabe", "email": "edward@hurst-frost.net", "name": "Edward Hurst-Frost"}], "excerpt": "This plugin allows Jenkins to play arbitrary audio clips as build actions and notifications.", "gav": "org.jvnet.hudson.plugins:sounds:0.4", "labels": ["notifier"], "name": "sounds", "previousTimestamp": "2011-03-02T02:57:06.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-09-01T23:18:48.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "+rqcWfpyf7fJTmGlaTckYqbBWlU=", "title": "Jenkins Sounds plugin", "url": "http://updates.jenkins-ci.org/download/plugins/sounds/0.4/sounds.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Sounds+plugin"}, "speaks": {"buildDate": "Dec 02, 2009", "dependencies": [], "developers": [{"developerId": "oxcafebabe", "email": "edward@hurst-frost.net", "name": "Edward Hurst-Frost"}], "excerpt": "This plugin gives Hudson a voice using FreeTTS.", "gav": "org.jvnet.hudson.plugins:speaks:0.1.1", "labels": ["notifier"], "name": "speaks", "previousTimestamp": "2009-11-29T18:50:18.00Z", "previousVersion": "0.1", "releaseTimestamp": "2009-12-02T22:00:12.00Z", "requiredCore": "1.324", "scm": "svn.dev.java.net", "sha1": "oBZkkzqSmjunMN0L4U6k8saZbxI=", "title": "Hudson Speaks! Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/speaks/0.1.1/speaks.hpi", "version": "0.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Hudson+Speaks%21+Plugin"}, "ssh": {"buildDate": "Sep 24, 2012", "dependencies": [], "developers": [{"developerId": "edmund_wagner", "name": "Edmund Wagner"}], "excerpt": "You can use the SSH Plugin to run shell commands on a remote machine via ssh.", "gav": "org.jvnet.hudson.plugins:ssh:2.3", "labels": ["buildwrapper"], "name": "ssh", "previousTimestamp": "2012-09-04T03:25:44.00Z", "previousVersion": "2.2", "releaseTimestamp": "2012-09-24T23:51:14.00Z", "requiredCore": "1.358", "scm": "github.com", "sha1": "9Vc+y7i515bRVRrD9qvaPNKGzb8=", "title": "SSH plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ssh/2.3/ssh.hpi", "version": "2.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+plugin"}, "ssh-agent": {"buildDate": "Nov 01, 2012", "dependencies": [{"name": "ssh-credentials", "optional": false, "version": "0.2"}, {"name": "credentials", "optional": false, "version": "1.3"}], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin allows you to provide SSH credentials to builds via a ssh-agent in Jenkins.", "gav": "org.jenkins-ci.plugins:ssh-agent:1.0", "labels": [], "name": "ssh-agent", "previousTimestamp": "2012-10-26T16:52:18.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-11-01T16:51:20.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "u9I3nWyNE5qS9tvCfCFy+wWT8+U=", "title": "SSH Agent Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ssh-agent/1.0/ssh-agent.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Agent+Plugin"}, "ssh-credentials": {"buildDate": "Oct 25, 2012", "dependencies": [{"name": "credentials", "optional": false, "version": "1.3"}], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}], "excerpt": "This plugin allows you to store SSH credentials in Jenkins.", "gav": "org.jenkins-ci.plugins:ssh-credentials:0.2", "labels": [], "name": "ssh-credentials", "previousTimestamp": "2012-02-28T21:02:48.00Z", "previousVersion": "0.1", "releaseTimestamp": "2012-10-25T20:06:42.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "ouTKUZtIvH376nqrgIXLB3AKvwo=", "title": "SSH Credentials Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ssh-credentials/0.2/ssh-credentials.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Credentials+Plugin"}, "ssh-slaves": {"buildDate": "Dec 07, 2012", "dependencies": [], "developers": [{"developerId": "stephenconnolly", "name": "Stephen Connolly"}, {"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "This plugin allows you to manage slaves running on \\*nix machines over SSH.", "gav": "org.jenkins-ci.plugins:ssh-slaves:0.22", "labels": ["slaves"], "name": "ssh-slaves", "previousTimestamp": "2011-10-27T11:04:30.00Z", "previousVersion": "0.21", "releaseTimestamp": "2012-12-07T22:15:02.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "mEw1H66P+r3ZT23kZDOgOj7gtc0=", "title": "SSH Slaves plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ssh-slaves/0.22/ssh-slaves.hpi", "version": "0.22", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin"}, "stackhammer": {"buildDate": "Sep 24, 2012", "dependencies": [], "developers": [{"developerId": "thallgren", "email": "thomas@tada.se", "name": "Thomas Hallgren"}], "excerpt": "This plugin integrates Jenkins with Cloudsmith Stack Hammer to validate and/or deploy Puppet configurations (stacks) stored in a repository at GitHub. ", "gav": "org.jenkins-ci.plugins:stackhammer:1.0.6", "labels": ["external"], "name": "stackhammer", "previousTimestamp": "2012-09-06T20:24:38.00Z", "previousVersion": "1.0.5", "releaseTimestamp": "2012-09-25T02:10:00.00Z", "requiredCore": "1.420", "scm": "github.com", "sha1": "ELccKHSaHuTf2CzQnnJ3ojTa/78=", "title": "Stack Hammer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/stackhammer/1.0.6/stackhammer.hpi", "version": "1.0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Stack+Hammer+Plugin"}, "staf": {"buildDate": "Jan 09, 2010", "dependencies": [], "developers": [{"developerId": "smithgcovert", "email": "covert@mighty.sytes.net", "name": "Gregory Covert Smith"}], "excerpt": "This plugin allows Hudson to invoke a STAF command or launch a STAX job as a build step. ", "gav": "org.jvnet.hudson.plugins:staf:0.1", "labels": ["builder"], "name": "staf", "releaseTimestamp": "2010-01-10T01:50:36.00Z", "requiredCore": "1.339", "scm": "svn.dev.java.net", "sha1": "krhnfgtef6WRV5B0dUQl3NkfKqQ=", "title": "STAF - STAX Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/staf/0.1/staf.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/STAF+-+STAX+Plugin"}, "starteam": {"buildDate": "Jul 18, 2012", "dependencies": [], "developers": [{"developerId": "ilkka", "email": "ilkka.s.laukkanen@gmail.com", "name": "Ilkka Laukkanen"}, {"developerId": "pamdirac", "email": "john@mcnair.org", "name": "John McNair"}, {"developerId": "chunyang", "email": "wangchunyang@gmail.com", "name": "Chunyang Wang"}, {"developerId": "jan_ruzicka", "email": "jan_ruzicka@dev.java.net", "name": "Jan Ruzicka"}, {"developerId": "robwiss", "email": "robwiss@gmail.com", "name": "Rob Wissmann"}, {"developerId": "vyazelenko", "email": "vyazelenko@yahoo.com", "name": "Dmitry Vyazelenko"}], "excerpt": "This plugin integrates Hudson with StarTeam, Borland's crossplatform SCM solution.", "gav": "hudson.plugins:starteam:0.6.8", "labels": ["scm"], "name": "starteam", "previousTimestamp": "2011-03-29T16:03:44.00Z", "previousVersion": "0.6.7", "releaseTimestamp": "2012-07-18T14:22:58.00Z", "requiredCore": "1.345", "scm": "github.com", "sha1": "jdHmS74QHf3JsOy7nCZ7FDEUgQw=", "title": "StarTeam", "url": "http://updates.jenkins-ci.org/download/plugins/starteam/0.6.8/starteam.hpi", "version": "0.6.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/StarTeam"}, "started-by-envvar": {"buildDate": "Oct 20, 2011", "dependencies": [], "developers": [{"developerId": "Tom"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:started-by-envvar:1.0", "name": "started-by-envvar", "releaseTimestamp": "2011-10-21T02:08:12.00Z", "requiredCore": "1.409.2", "scm": "github.com", "sha1": "QOvQ8y1L4z1lgH2QvYRUnYJnEco=", "title": "Started-By Environment Variable Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/started-by-envvar/1.0/started-by-envvar.hpi", "version": "1.0"}, "startup-trigger-plugin": {"buildDate": "Feb 08, 2011", "dependencies": [], "developers": [{"developerId": "ashlux", "email": "ashlux@gmail.com", "name": "Ash Lux"}], "excerpt": "The Startup Trigger plugin allows you to trigger a build when Jenkins is first started.", "gav": "org.jenkins-ci.plugins:startup-trigger-plugin:1.1", "labels": ["trigger"], "name": "startup-trigger-plugin", "previousTimestamp": "2011-02-05T21:29:12.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-02-08T22:34:22.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "FpBTI1Dtg10dlgEn+O+2D8W6LJ4=", "title": "Startup Trigger", "url": "http://updates.jenkins-ci.org/download/plugins/startup-trigger-plugin/1.1/startup-trigger-plugin.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Startup+Trigger"}, "status-view": {"buildDate": "Jun 04, 2010", "dependencies": [], "developers": [{"developerId": "mindless", "email": "mindless@dev.java.net", "name": "Alan Harder"}], "excerpt": "View type to show jobs filtered by the status of the last completed build.", "gav": "org.jvnet.hudson.plugins:status-view:1.0", "labels": ["ui"], "name": "status-view", "releaseTimestamp": "2010-06-04T20:58:06.00Z", "requiredCore": "1.342", "scm": "svn.dev.java.net", "sha1": "QThzZO+jlzyS38OAlwK+W6WH2Bk=", "title": "Status View Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/status-view/1.0/status-view.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Status+View+Plugin"}, "statusmonitor": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"developerId": "ashlux", "email": "ashlux@gmail.com", "name": "Ash Lux"}, {"name": "redsolo"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin shows the state of selected jobs visually on a single screen.", "gav": "org.jvnet.hudson.plugins:statusmonitor:1.3", "labels": ["notifier"], "name": "statusmonitor", "previousTimestamp": "2009-12-31T22:46:00.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-11-04T13:18:10.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "SZL+F985IGKx0PT5eNc/fzcVYow=", "title": "Status Monitor Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/statusmonitor/1.3/statusmonitor.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Status+Monitor+Plugin"}, "storable-configs-plugin": {"buildDate": "Feb 28, 2011", "dependencies": [{"name": "selection-tasks-plugin", "optional": true, "version": "1.0"}], "developers": [{"developerId": "nzhelyakov", "email": "nzhelyakov@gmail.com", "name": "Nikita Zhelyakov"}], "excerpt": "This plugin allows you to save and load set of job parameters. ", "gav": "org.jvnet.hudson.plugins:storable-configs-plugin:1.0", "labels": ["misc"], "name": "storable-configs-plugin", "releaseTimestamp": "2011-03-01T01:38:02.00Z", "requiredCore": "1.366", "scm": "svn.jenkins-ci.org", "sha1": "OdMAq62DknBGvL419fo+kNGzWh8=", "title": "Storable Configs Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/storable-configs-plugin/1.0/storable-configs-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Storable+Configs+Plugin"}, "strawboss": {"buildDate": "Nov 02, 2011", "dependencies": [], "developers": [{"developerId": "morgandev", "email": "morgandev@gmail.com", "name": "Scott Morgan"}], "excerpt": "Strawboss supports the same features as Jenkins external job monitor with added support for sending email notifications and triggering other jobs. ", "gav": "org.jenkins-ci.plugins:strawboss:1.1", "labels": ["notifier", "misc"], "name": "strawboss", "releaseTimestamp": "2011-11-03T03:03:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "hW+QUrwqr7XV9BQdxGw2RW+41hk=", "title": "Strawboss Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/strawboss/1.1/strawboss.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Strawboss+Plugin"}, "subversion": {"buildDate": "Sep 24, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke abayer dodok1 dty huybrechts mindless pgweiss stephenconnolly rseguy kutzi etc", "name": "Many"}], "excerpt": "This plugin adds the Subversion support (via SVNKit) to Jenkins.", "gav": "org.jenkins-ci.plugins:subversion:1.43", "labels": ["scm"], "name": "subversion", "previousTimestamp": "2012-06-23T00:14:36.00Z", "previousVersion": "1.42", "releaseTimestamp": "2012-09-24T13:33:50.00Z", "requiredCore": "1.405", "scm": "github.com", "sha1": "sBoPcO7yGOESuAemPE/r6x7ea3Q=", "title": "Subversion Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/subversion/1.43/subversion.hpi", "version": "1.43", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin"}, "suite-test-groups-publisher": {"buildDate": "Oct 21, 2012", "dependencies": [], "developers": [{"developerId": "vimil", "email": "vimilsaju@yahoo.com", "name": "Vimil Saju"}], "excerpt": "", "gav": "org.jenkins-ci.plugins:suite-test-groups-publisher:1.13", "name": "suite-test-groups-publisher", "previousTimestamp": "2012-10-13T17:15:12.00Z", "previousVersion": "1.12", "releaseTimestamp": "2012-10-21T16:11:20.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "5XrazBJW6IFKRmTMmQTpz7zaz4g=", "title": "suite-test-groups-publisher", "url": "http://updates.jenkins-ci.org/download/plugins/suite-test-groups-publisher/1.13/suite-test-groups-publisher.hpi", "version": "1.13"}, "summary_report": {"buildDate": "Dec 10, 2012", "dependencies": [], "developers": [{"developerId": "deruyter", "email": "tderuyte@gmail.com", "name": "Deruyter Thomas"}], "excerpt": "Extend build and project page with extended results in XML format", "gav": "org.jenkins-ci.plugins:summary_report:1.7", "labels": ["report"], "name": "summary_report", "previousTimestamp": "2012-09-12T19:27:28.00Z", "previousVersion": "1.5", "releaseTimestamp": "2012-12-10T20:18:36.00Z", "requiredCore": "1.470", "scm": "github.com", "sha1": "EJ7w6GRNmsTHaPAvS0xlZyQC6cA=", "title": "Summary Display Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/summary_report/1.7/summary_report.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Summary+Display+Plugin"}, "svn-release-mgr": {"buildDate": "Nov 03, 2010", "dependencies": [{"name": "subversion", "optional": false, "version": "1.20"}], "developers": [{"developerId": "mindless"}], "excerpt": "This plugin allows you to set up a job in Hudson for building specific revisions of a project. ", "gav": "org.jvnet.hudson.plugins:svn-release-mgr:1.2", "labels": ["scm-related"], "name": "svn-release-mgr", "previousTimestamp": "2010-03-02T13:27:22.00Z", "previousVersion": "1.1", "releaseTimestamp": "2010-11-03T16:55:44.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "5q/nDzmuttNPJKmHCgKm+nuIeRo=", "title": "Subversion Release Manager", "url": "http://updates.jenkins-ci.org/download/plugins/svn-release-mgr/1.2/svn-release-mgr.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Release+Manager"}, "svn-revert-plugin": {"buildDate": "Sep 10, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.37"}, {"name": "claim", "optional": true, "version": "1.7"}], "developers": [{"developerId": "ki82", "email": "akerstrom.christian@gmail.com", "name": "Christian Ã…kerström"}, {"developerId": "davidparsson", "email": "david.parsson@gmail.com", "name": "David Pärsson"}], "excerpt": "Automatically reverts SVN commits for a build if build status is changed from successful to unstable.", "gav": "org.jenkins-ci.plugins:svn-revert-plugin:1.3", "labels": ["scm-related", "post-build"], "name": "svn-revert-plugin", "previousTimestamp": "2012-09-05T19:11:18.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-09-10T15:48:22.00Z", "requiredCore": "1.444", "scm": "github.com", "sha1": "Hy5wQTFuyu97RzYj5DphUzVrY7w=", "title": "SVN Revert Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/svn-revert-plugin/1.3/svn-revert-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Revert+Plugin"}, "svn-tag": {"buildDate": "Nov 03, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.34"}], "developers": [{"developerId": "k2nakamura", "email": "kenjin@clazzsoft.com", "name": "Kenji Nakamura"}], "excerpt": "This plugin automatically performs subversion tagging (technically speaking svn copy) on successful build.", "gav": "org.jenkins-ci.plugins:svn-tag:1.16", "labels": ["scm-related", "post-build"], "name": "svn-tag", "previousTimestamp": "2011-07-27T17:41:42.00Z", "previousVersion": "1.15", "releaseTimestamp": "2011-11-04T02:19:06.00Z", "requiredCore": "1.421", "scm": "github.com", "sha1": "XQvchAI26eFmR4vF0pNQtN30ybI=", "title": "Subversion Tagging Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/svn-tag/1.16/svn-tag.hpi", "version": "1.16", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Tagging+Plugin"}, "svn-workspace-cleaner": {"buildDate": "May 11, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.37"}], "developers": [{"developerId": "davidparsson", "email": "david.parsson@gmail.com", "name": "David Pärsson"}], "excerpt": "Automatically removes SVN modules from workspaces when the modules are removed from the job's SVN configuration.", "gav": "org.jenkins-ci.plugins:svn-workspace-cleaner:1.0", "labels": ["scm-related", "buildwrapper"], "name": "svn-workspace-cleaner", "releaseTimestamp": "2012-05-11T18:03:36.00Z", "requiredCore": "1.444", "scm": "github.com", "sha1": "nsr2PiZr2fnY8mTDAfHR44WnBGA=", "title": "SVN Workspace Cleaner", "url": "http://updates.jenkins-ci.org/download/plugins/svn-workspace-cleaner/1.0/svn-workspace-cleaner.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Workspace+Cleaner"}, "svncompat13": {"buildDate": "Nov 19, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.1"}], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin forces the built-in SVNKit library to use the Subversion 1.3 working copy format (instead of the most recent one it supports).", "gav": "org.jvnet.hudson.plugins:svncompat13:1.2", "labels": ["scm-related"], "name": "svncompat13", "previousTimestamp": "2008-07-29T01:13:00.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-11-19T15:27:28.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "Bjq5bod/k2kbz9Q8GyWDzfkycZ0=", "title": "SVNCompat13 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/svncompat13/1.2/svncompat13.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat13+Plugin"}, "svncompat14": {"buildDate": "Nov 19, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.3"}], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin forces the built-in SVNKit library to use the Subversion 1.4 working copy format (instead of the most recent one it supports).", "gav": "org.jvnet.hudson.plugins:svncompat14:1.1", "labels": ["scm-related"], "name": "svncompat14", "previousTimestamp": "2008-07-30T18:11:24.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-11-19T23:29:54.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "nORj9bJ8VRMi1UXP+7PqT4DspYk=", "title": "SVNCompat14 Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/svncompat14/1.1/svncompat14.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVNCompat14+Plugin"}, "svnmerge": {"buildDate": "Apr 14, 2012", "dependencies": [{"name": "subversion", "optional": false, "version": "1.25"}], "developers": [{"developerId": "kohsuke"}], "excerpt": "This plugin automates feature/personal branch workflow on Jenkins", "gav": "org.jenkins-ci.plugins:svnmerge:1.2", "labels": ["scm-related"], "name": "svnmerge", "previousTimestamp": "2011-10-01T20:19:04.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-04-14T17:28:10.00Z", "requiredCore": "1.426", "scm": "github.com", "sha1": "ZFyFuAuVG0WuBfVLttf/VxedmXo=", "title": "Subversion Merge Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/svnmerge/1.2/svnmerge.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Subversion+Merge+Plugin"}, "svnpublisher": {"buildDate": "Jan 10, 2010", "dependencies": [{"name": "subversion", "optional": false, "version": "1.8"}], "developers": [{"developerId": "brentsmith", "name": "Brent Smith"}], "excerpt": "This plugin allows you to upload artifacts to a subversion repository. This is done via a delete/import of the items requested.", "gav": "com.mtvi.plateng.subversion:svnpublisher:0.1", "labels": ["upload"], "name": "svnpublisher", "releaseTimestamp": "2010-01-10T23:16:52.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "AnWSoTU78viv60MrJy62OjJxRjo=", "title": "SVN Publisher", "url": "http://updates.jenkins-ci.org/download/plugins/svnpublisher/0.1/svnpublisher.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/SVN+Publisher"}, "swarm": {"buildDate": "Nov 22, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin enables slaves to auto-discover nearby Jenkins master and join it automatically, thereby forming an ad-hoc cluster.", "gav": "org.jenkins-ci.plugins:swarm:1.8", "labels": ["cluster"], "name": "swarm", "previousTimestamp": "2012-03-19T00:35:56.00Z", "previousVersion": "1.7", "releaseTimestamp": "2012-11-23T04:23:36.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Qqc5EcIZLimXHsPnKqcPv1j0Gog=", "title": "Swarm Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/swarm/1.8/swarm.hpi", "version": "1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Swarm+Plugin"}, "synergy": {"buildDate": "Aug 16, 2011", "dependencies": [], "developers": [{"developerId": "mendozak"}], "excerpt": "This plugin provide integrations with IBM Rational CM/Synergy 6.5a Version Manager SCM", "gav": "org.jvnet.hudson.plugins:synergy:1.6", "labels": ["scm"], "name": "synergy", "previousTimestamp": "2009-06-03T04:48:10.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-08-16T15:26:04.00Z", "requiredCore": "1.319", "scm": "github.com", "sha1": "fs6VXYlDV8r9/5krmv12D8wRRNM=", "title": "Synergy Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/synergy/1.6/synergy.hpi", "version": "1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Synergy+Plugin"}, "systemloadaverage-monitor": {"buildDate": "Aug 13, 2011", "dependencies": [], "developers": [{"developerId": "stefanbrausch", "email": "stefanbrausch@dev.java.net", "name": "Stefan Brausch"}], "excerpt": "Use to display the System Load Average of unix nodes.", "gav": "org.jvnet.hudson.plugins:systemloadaverage-monitor:1.2", "labels": ["slaves"], "name": "systemloadaverage-monitor", "previousTimestamp": "2010-02-12T22:17:58.00Z", "previousVersion": "1.1", "releaseTimestamp": "2011-08-13T15:48:06.00Z", "requiredCore": "1.395", "scm": "github.com", "sha1": "4g0Wp80C+xGOCyphSZNMYjBjA4Q=", "title": "System Load Average Monitor Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/systemloadaverage-monitor/1.2/systemloadaverage-monitor.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/System+Load+Average+Monitor+Plugin"}, "tap": {"buildDate": "Oct 20, 2012", "dependencies": [], "developers": [{"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}], "excerpt": "This plug-in adds support to TAP test result files to Jenkins. It lets you specify an ant-like pattern for a directory that contains your TAP files. ", "gav": "org.tap4j:tap:1.7", "labels": ["report"], "name": "tap", "previousTimestamp": "2012-10-19T16:52:00.00Z", "previousVersion": "1.6", "releaseTimestamp": "2012-10-20T22:31:20.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Z0ntq0pM0lg6djKO1UIMHOc0eY0=", "title": "TAP Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tap/1.7/tap.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TAP+Plugin"}, "tasks": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "dashboard-view", "optional": true, "version": "2.2"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin scans the workspace files for open tasks and generates a trend report.", "gav": "org.jvnet.hudson.plugins:tasks:4.35", "labels": ["report", "maven"], "name": "tasks", "previousTimestamp": "2012-09-04T17:18:28.00Z", "previousVersion": "4.34", "releaseTimestamp": "2012-10-05T16:06:52.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "7e2sxEyB0g5tB4oBcb22VV+f7ac=", "title": "Task Scanner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tasks/4.35/tasks.hpi", "version": "4.35", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Task+Scanner+Plugin"}, "tattletale-plugin": {"buildDate": "May 29, 2012", "dependencies": [], "developers": [{"developerId": "vtunka", "name": "Vaclav Tunka"}], "excerpt": "This plugin generates Tattletale reports, mostly useful for jar file analysis. ", "gav": "org.jenkins-ci.plugins:tattletale-plugin:0.3", "labels": ["report"], "name": "tattletale-plugin", "releaseTimestamp": "2012-05-30T02:55:06.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "1EpOcO03OEAzSZzAh/dnV8of5e4=", "title": "Tattletale Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tattletale-plugin/0.3/tattletale-plugin.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tattletale+Plugin"}, "template-project": {"buildDate": "Aug 15, 2011", "dependencies": [], "developers": [{"developerId": "huybrechts", "name": "Tom Huybrechts"}], "excerpt": "This plugin lets you use builders, publishers and SCM settings from another project.", "gav": "org.jenkins-ci.plugins:template-project:1.3", "labels": ["scm", "notifier", "builder"], "name": "template-project", "previousTimestamp": "2010-02-12T04:53:04.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-08-15T11:45:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "QmwHW/bPwAbNIdyX35bcvcO9uco=", "title": "Template Project Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/template-project/1.3/template-project.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Template+Project+Plugin"}, "template-workflows": {"buildDate": "Aug 15, 2012", "dependencies": [], "developers": [{"developerId": "shaib", "email": "shai.bhur@gmail.com", "name": "Shai Ben-Hur"}], "excerpt": "", "gav": "org.jenkins.plugin.templateWorkflows:template-workflows:1.2", "labels": ["templates-workflows"], "name": "template-workflows", "releaseTimestamp": "2012-08-16T00:48:42.00Z", "requiredCore": "1.477", "scm": "github.com", "sha1": "pYV90D4T2R9iQDj6JEZfjau9X/A=", "title": "Template Workflows Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/template-workflows/1.2/template-workflows.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Template+Workflows+Plugin"}, "tepco": {"buildDate": "Mar 25, 2011", "dependencies": [], "developers": [{"developerId": "kiy0taka", "name": "Kiyotaka Oku"}], "excerpt": "This plugin displays TEPCO electric usage condition.", "gav": "org.jenkins-ci.plugins:tepco:0.1", "labels": ["misc"], "name": "tepco", "releaseTimestamp": "2011-03-25T13:33:50.00Z", "requiredCore": "1.401", "scm": "github.com", "sha1": "ummdAW42/ryCVZbRmx27UvFHYvw=", "title": "TEPCO Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tepco/0.1/tepco.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TEPCO+Plugin"}, "tepco-epuw": {"buildDate": "May 25, 2011", "dependencies": [], "developers": [{"developerId": "future-azure", "email": "future.azure@gmail.com", "name": "Yi Hu"}], "excerpt": "This plugin shows current TEPCO electric power usage and a graph of daily usage. ", "gav": "org.jenkins-ci.plugins:tepco-epuw:1.0", "labels": ["misc"], "name": "tepco-epuw", "releaseTimestamp": "2011-05-25T06:07:50.00Z", "requiredCore": "1.411", "scm": "github.com", "sha1": "9Yn1hFxnJVQ9DFCKjP2maqsAbMw=", "title": "TEPCO Electric Power Usage Widget", "url": "http://updates.jenkins-ci.org/download/plugins/tepco-epuw/1.0/tepco-epuw.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TEPCO+Electric+Power+Usage+Widget"}, "terminal": {"buildDate": "Mar 01, 2011", "dependencies": [{"name": "jquery-ui", "optional": false, "version": "1.0.1"}, {"name": "jquery", "optional": false, "version": "1.0.1"}], "developers": [{"developerId": "kiy0taka", "name": "Kiyotaka Oku"}], "excerpt": "This plugin allows you to execute OS commands.", "gav": "org.jenkins-ci.plugins:terminal:1.3", "labels": ["misc"], "name": "terminal", "previousTimestamp": "2011-02-23T03:02:12.00Z", "previousVersion": "1.2", "releaseTimestamp": "2011-03-01T20:27:18.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "gvgSI+r1Gc4SsuihjGHouf+XfF0=", "title": "Terminal Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/terminal/1.3/terminal.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Terminal+Plugin"}, "terminate-ssh-processes-plugin": {"buildDate": "May 31, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "email": "lvotypko@redhat.com", "name": "Lucie Votypkova"}], "excerpt": "This plugin check if there is some ssh process associated with slave during before its new connection ", "gav": "org.jenkins-ci.plugins:terminate-ssh-processes-plugin:1.0", "labels": [], "name": "terminate-ssh-processes-plugin", "releaseTimestamp": "2012-05-31T19:57:30.00Z", "requiredCore": "1.430", "scm": "github.com", "sha1": "RQHrZsJbpU8TpJVTdXHyBddJYMc=", "title": "Ssh processes check plugin", "url": "http://updates.jenkins-ci.org/download/plugins/terminate-ssh-processes-plugin/1.0/terminate-ssh-processes-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Ssh+processes+check+plugin"}, "testabilityexplorer": {"buildDate": "May 29, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.437"}], "developers": [{"developerId": "reikje", "name": "Reik Schatz"}, {"developerId": "vsbmeza", "name": "Marton Meszaros"}], "excerpt": "This plugin generates trend reports for the Testability Explorer, an open source program which uses byte-code analysis to look for testability pitfalls in Java code.  ", "gav": "org.jenkins-ci.plugins:testabilityexplorer:0.4", "labels": ["report"], "name": "testabilityexplorer", "previousTimestamp": "2009-12-29T21:48:38.00Z", "previousVersion": "0.3", "releaseTimestamp": "2012-05-29T21:59:16.00Z", "requiredCore": "1.437", "scm": "svn.jenkins-ci.org", "sha1": "0PMfy3eqPw9Gu/HEs1VyBIF/7Ro=", "title": "Testability Explorer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testabilityexplorer/0.4/testabilityexplorer.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Testability+Explorer+Plugin"}, "testflight": {"buildDate": "Jan 12, 2012", "dependencies": [], "developers": [{"developerId": "jweinberg", "email": "joshuacweinberg@gmail.com", "name": "Joshua Weinberg"}], "excerpt": "This plugin uses the Testflight upload API to allow for uploading to www.testflightapp.com", "gav": "org.jenkins-ci.plugins:testflight:1.3.1", "labels": ["upload", "ios"], "name": "testflight", "previousTimestamp": "2012-01-12T14:04:02.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-01-12T14:10:04.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Hzj7RxPteN6Lw1HE2cTVkpHe93I=", "title": "Testflight Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testflight/1.3.1/testflight.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Testflight+Plugin"}, "testingbot": {"buildDate": "Jul 21, 2012", "dependencies": [], "developers": [{"developerId": "testingbot", "email": "info@testingbot.com", "name": "Jochen Delabie"}], "excerpt": "This plugin allows for integration of TestingBot Selenium in Jenkins.", "gav": "testingbot:testingbot:1.5", "labels": ["buildwrapper"], "name": "testingbot", "previousTimestamp": "2012-05-05T17:11:14.00Z", "previousVersion": "1.4", "releaseTimestamp": "2012-07-21T20:06:38.00Z", "requiredCore": "1.462", "scm": "github.com", "sha1": "8/f1NwIAdsl+mBr3FsMEKAqurAg=", "title": "TestingBot Selenium Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testingbot/1.5/testingbot.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestingBot+Selenium+Plugin"}, "testlink": {"buildDate": "Oct 20, 2012", "dependencies": [], "developers": [{"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}, {"developerId": "cesar1983", "email": "cesar.fa@gmail.com", "name": "Cesar Fernandes de Almeida"}, {"developerId": "floreal", "email": "ftoumikian@april.org", "name": "Floreal Toumikian"}, {"developerId": "orenault", "email": "orenault@gmail.com", "name": "Olivier Renault"}, {"developerId": "omerkel", "email": "Merkel.Oliver@web.de", "name": "Oliver Merkel"}, {"developerId": "yachoor", "email": "jchorko@gmail.com", "name": "Janusz Chorko"}], "excerpt": "This plug-in integrates Jenkins and TestLink and generates reports on automated test execution. ith this plug-in you can manage your tests in TestLink, schedule and control in Jenkins, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, PHPUnit, among others). ", "gav": "org.jenkins-ci.plugins:testlink:3.1.8", "labels": ["builder"], "name": "testlink", "previousTimestamp": "2012-09-19T16:47:34.00Z", "previousVersion": "3.1.7", "releaseTimestamp": "2012-10-20T22:50:28.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "oTCM64GRngaPR8PILDewmyY6jRw=", "title": "TestLink Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testlink/3.1.8/testlink.hpi", "version": "3.1.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TestLink+Plugin"}, "testng-plugin": {"buildDate": "Feb 14, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.403"}], "developers": [{"developerId": "nalin_makar", "email": "nalin.makar@gmail.com", "name": "Nalin Makar"}, {"developerId": "farshidce", "email": "farshid.ghods@gmail.com", "name": "Farshid Ghods"}], "excerpt": "This plugin allows you to publish TestNG results.", "gav": "org.jenkins-ci.plugins:testng-plugin:0.32", "labels": ["report"], "name": "testng-plugin", "previousTimestamp": "2012-02-01T04:45:48.00Z", "previousVersion": "0.31", "releaseTimestamp": "2012-02-15T02:37:04.00Z", "requiredCore": "1.403", "scm": "github.com", "sha1": "0dyoXaDIwM4tb+Yr8Uv/vHsrzvg=", "title": "testng-plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testng-plugin/0.32/testng-plugin.hpi", "version": "0.32", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/testng-plugin"}, "testopia": {"buildDate": "Oct 14, 2012", "dependencies": [], "developers": [{"developerId": "tooh", "email": "florijn.peter@gmail.com", "name": "Peter Florijn"}, {"developerId": "kinow", "email": "brunodepaulak@yahoo.com.br", "name": "Bruno P. Kinoshita"}], "excerpt": "This plug-in integrates *Jenkins* with Testopia and generates reports on automated test execution. With this plug-in you can manage your tests in Testopia, schedule and control in *Jenkins*, and execute using your favorite test execution tool (TestPartner, Selenium, TestNG, Perl modules, prove, PHPUnit, among others).", "gav": "jenkins.plugins.testopia:testopia:1.2", "labels": [], "name": "testopia", "previousTimestamp": "2012-09-09T18:46:40.00Z", "previousVersion": "1.1", "releaseTimestamp": "2012-10-15T02:45:18.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "HMBEGPIslD/Wxt7z33zFxAlbZ1I=", "title": "Testopia Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/testopia/1.2/testopia.hpi", "version": "1.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Testopia+Plugin"}, "text-finder": {"buildDate": "Feb 13, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"name": "Santiago Pericas-Geertsen"}], "excerpt": "This plugin lets you search keywords in the files you specified and use that to downgrade a \"successful\" build to be unstable or a failure.", "gav": "org.jvnet.hudson.plugins:text-finder:1.9", "labels": ["post-build"], "name": "text-finder", "previousTimestamp": "2010-02-06T14:17:58.00Z", "previousVersion": "1.8", "releaseTimestamp": "2011-02-14T03:49:46.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "PWK0FuWWvlZIm6AN3UkB15C257Q=", "title": "Text-finder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/text-finder/1.9/text-finder.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Text-finder+Plugin"}, "text-finder-run-condition": {"buildDate": "Jul 13, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}, {"name": "run-condition", "optional": false, "version": "0.10"}], "developers": [{"developerId": "cjo9900", "name": "Chris Johnson"}], "excerpt": "Text Finder run condition to select whether to execute a build step or publisher. Used by the [Run Condition Plugin]. ", "gav": "org.jenkins-ci.plugins:text-finder-run-condition:0.1", "labels": ["misc", "runcondition"], "name": "text-finder-run-condition", "releaseTimestamp": "2012-07-13T21:30:02.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "MELbWymaMLgpY4L5+iYtLbOHqYM=", "title": "Text Finder Run Condition Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/text-finder-run-condition/0.1/text-finder-run-condition.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Text+Finder+Run+Condition+Plugin"}, "tfs": {"buildDate": "Sep 17, 2011", "dependencies": [], "developers": [{"developerId": "redsolo", "email": "eramfelt@gmail.com", "name": "Erik Ramfelt"}], "excerpt": "This plugin integrates Microsoft Team Foundation Server source control to Hudson.", "gav": "org.jvnet.hudson.plugins:tfs:1.20", "labels": ["scm"], "name": "tfs", "previousTimestamp": "2011-09-06T03:13:16.00Z", "previousVersion": "1.19", "releaseTimestamp": "2011-09-17T17:16:34.00Z", "requiredCore": "1.324", "scm": "github.com", "sha1": "I9ye7HA3YiDy6BtRyzAoUlq/D/I=", "title": "Team Foundation Server Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tfs/1.20/tfs.hpi", "version": "1.20", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Team+Foundation+Server+Plugin"}, "thinBackup": {"buildDate": "Jul 25, 2012", "dependencies": [], "developers": [{"developerId": "tofuatjava", "email": "tfuerer.javanet@gmail.com", "name": "Thomas Fuerer"}, {"developerId": "alienllama", "email": "alienllama@gmail.com", "name": "Matthias Steinkogler"}], "excerpt": "This plugin simply backs up the global and job specific configurations (not the archive or the workspace). ", "gav": "org.jvnet.hudson.plugins:thinBackup:1.6.2", "labels": ["misc"], "name": "thinBackup", "previousTimestamp": "2012-06-23T16:46:20.00Z", "previousVersion": "1.6.1", "releaseTimestamp": "2012-07-25T23:08:10.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "6SBPZkLreb/prk3V/OaaK9Y1GHM=", "title": "thinBackup", "url": "http://updates.jenkins-ci.org/download/plugins/thinBackup/1.6.2/thinBackup.hpi", "version": "1.6.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/thinBackup"}, "thread-dump-action-plugin": {"buildDate": "Mar 03, 2012", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides an easy mechanism to obtain a Jenkins thread dump.", "gav": "org.jenkins-ci.plugins:thread-dump-action-plugin:1.0", "labels": ["misc"], "name": "thread-dump-action-plugin", "releaseTimestamp": "2012-03-04T02:13:42.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Y9bzNdNigix2G0qnQCepFNRqkjk=", "title": "Thread Dump Action Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/thread-dump-action-plugin/1.0/thread-dump-action-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Thread+Dump+Action+Plugin"}, "throttle-concurrents": {"buildDate": "May 04, 2012", "dependencies": [], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}], "excerpt": "This plugin allows for throttling the number of concurrent builds of a project running per node or globally.", "gav": "org.jenkins-ci.plugins:throttle-concurrents:1.7.2", "labels": ["slaves", "cluster", "buildwrapper"], "name": "throttle-concurrents", "previousTimestamp": "2011-11-09T15:05:34.00Z", "previousVersion": "1.7.1", "releaseTimestamp": "2012-05-04T13:53:06.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "007nHNkK9mTvhD1hJ1VBDXS8uRk=", "title": "Throttle Concurrent Builds Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/throttle-concurrents/1.7.2/throttle-concurrents.hpi", "version": "1.7.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin"}, "thucydides": {"buildDate": "Oct 07, 2012", "dependencies": [], "developers": [{"developerId": "hwellmann", "email": "harald.wellmann@gmx.de", "name": "Harald Wellmann"}], "excerpt": "A plugin for publishing web test reports created by Thucydides. ", "gav": "net.thucydides.jenkins:thucydides:0.1", "labels": ["report"], "name": "thucydides", "releaseTimestamp": "2012-10-08T03:40:48.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "5+nhQAxBWEC8y/q0gEHKHzmrpIY=", "title": "Thucydides Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/thucydides/0.1/thucydides.hpi", "version": "0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Thucydides+Plugin"}, "timestamper": {"buildDate": "Sep 30, 2012", "dependencies": [], "developers": [{"developerId": "stevengbrown", "email": "StevenGBrown@gmail.com", "name": "Steven Brown"}], "excerpt": "Adds timestamps to the Console Output. ", "gav": "org.jenkins-ci.plugins:timestamper:1.3.2", "labels": ["buildwrapper"], "name": "timestamper", "previousTimestamp": "2012-09-09T02:17:52.00Z", "previousVersion": "1.3.1", "releaseTimestamp": "2012-09-30T04:13:36.00Z", "requiredCore": "1.461", "scm": "github.com", "sha1": "+KHrQd7kZKvSP/071DJwmTz0g74=", "title": "Timestamper", "url": "http://updates.jenkins-ci.org/download/plugins/timestamper/1.3.2/timestamper.hpi", "version": "1.3.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Timestamper"}, "tmpcleaner": {"buildDate": "Dec 29, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "name": "Kohsuke Kawaguchi"}, {"developerId": "olamy", "name": "Olivier Lamy"}], "excerpt": "This plugin allows you to cleanup JVM temporary files.", "gav": "org.jenkins-ci.plugins:tmpcleaner:1.1", "labels": ["misc"], "name": "tmpcleaner", "previousTimestamp": "2010-02-02T03:46:56.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-12-29T21:28:36.00Z", "requiredCore": "1.424.1", "scm": "github.com", "sha1": "Ot5wgIjftgBiMFcQrDAdd9bXFYo=", "title": "Tmp Cleaner Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tmpcleaner/1.1/tmpcleaner.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tmp+Cleaner+Plugin"}, "token-macro": {"buildDate": "Nov 29, 2011", "dependencies": [], "developers": [{"developerId": "kohsuke", "email": "kkawaguchi@cloudbees.com", "name": "Kohsuke Kawaguchi"}], "excerpt": "This plugin adds reusable macro expansion capability for other plugins to use", "gav": "org.jenkins-ci.plugins:token-macro:1.5.1", "labels": [], "name": "token-macro", "previousTimestamp": "2011-11-28T20:12:16.00Z", "previousVersion": "1.5", "releaseTimestamp": "2011-11-30T04:26:00.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "Wxu+pvIbkr7slJWqlC/Ulc6Sc7o=", "title": "Token Macro Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/token-macro/1.5.1/token-macro.hpi", "version": "1.5.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Token+Macro+Plugin"}, "toolenv": {"buildDate": "Feb 15, 2010", "dependencies": [], "developers": [{"developerId": "jglick", "email": "jesse.glick@sun.com", "name": "Jesse Glick"}], "excerpt": "Lets you use \"tools\" in unusual ways, such as from shell scripts.", "gav": "org.jvnet.hudson.plugins:toolenv:1.0", "labels": ["buildwrapper"], "name": "toolenv", "releaseTimestamp": "2010-02-16T02:24:08.00Z", "requiredCore": "1.346", "scm": "svn.dev.java.net", "sha1": "y4LbFJ1Ck0D4mIaWb/k56VR2Bo0=", "title": "Tool Environment Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/toolenv/1.0/toolenv.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tool+Environment+Plugin"}, "trac": {"buildDate": "Feb 08, 2012", "dependencies": [{"name": "git", "optional": true, "version": "1.1.14"}, {"name": "subversion", "optional": false, "version": "1.3"}], "developers": [{"developerId": "kohsuke", "email": "kk@kohsuke.org", "name": "Kohsuke Kawaguchi"}, {"developerId": "bradfritz", "name": "Brad Fritz"}, {"developerId": "pgweiss", "name": "Paul Weiss"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}, {"developerId": "gerd_zanker", "email": "gerd.zanker@googlemail.com", "name": "Gerd Zanker"}], "excerpt": "This plugin creates links from Hudson projects to Trac instances.", "gav": "org.jenkins-ci.plugins:trac:1.13", "labels": ["external"], "name": "trac", "previousTimestamp": "2011-11-04T16:10:46.00Z", "previousVersion": "1.12", "releaseTimestamp": "2012-02-09T01:55:48.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "z8tyrD9yYpCGZ0TEnoNgYNGax40=", "title": "Trac Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/trac/1.13/trac.hpi", "version": "1.13", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Trac+Plugin"}, "trac-publisher-plugin": {"buildDate": "Aug 11, 2012", "dependencies": [], "developers": [{"developerId": "batkinson", "email": "brent.atkinson@gmail.com", "name": "Brent Atkinson"}], "excerpt": "This plug-in adds a publisher that posts build links to Trac tickets referenced in built scm revisions. ", "gav": "org.jenkins-ci.plugins:trac-publisher-plugin:1.3", "labels": ["external"], "name": "trac-publisher-plugin", "previousTimestamp": "2011-12-05T01:49:42.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-08-11T13:24:50.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "NfLwrghh5zE+e7pEeU7oiPbsAsU=", "title": "Trac Publisher Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/trac-publisher-plugin/1.3/trac-publisher-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Trac+Publisher+Plugin"}, "tracking-svn": {"buildDate": "Jan 03, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.17"}], "developers": [{"developerId": "huybrechts", "name": "Tom Huybrechts"}], "excerpt": "Lets one project track the Subversion revisions that are checked out for another project. ", "gav": "org.jvnet.hudson.plugins:tracking-svn:1.1", "labels": ["scm-related"], "name": "tracking-svn", "previousTimestamp": "2009-11-28T20:43:08.00Z", "previousVersion": "1.0", "releaseTimestamp": "2011-01-03T23:40:04.00Z", "requiredCore": "1.357", "scm": "svn.java.net", "sha1": "8iLbn7AAHUQil0wS4BUjG4160lU=", "title": "Tracking SVN Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tracking-svn/1.1/tracking-svn.hpi", "version": "1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Tracking+SVN+Plugin"}, "translation": {"buildDate": "Nov 06, 2012", "dependencies": [], "developers": [{"developerId": "jglick"}], "excerpt": "This plugin adds an additional dialog box in every page, which enables people to contribute localizations for the messages they are seeing in the current page.", "gav": "org.jenkins-ci.plugins:translation:1.10", "labels": ["ui"], "name": "translation", "previousTimestamp": "2012-03-20T19:10:34.00Z", "previousVersion": "1.9", "releaseTimestamp": "2012-11-06T15:54:48.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Jgz4LRtsJe+yxH1OhUMnBSm/nZA=", "title": "Translation Assistance Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/translation/1.10/translation.hpi", "version": "1.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Translation+Assistance+Plugin"}, "tuxdroid": {"buildDate": "Nov 04, 2011", "dependencies": [], "developers": [{"developerId": "taillant", "name": "Jean-Marc Taillant"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Allows to publish the result of a build to a TuxDroid community.", "gav": "org.jvnet.hudson.plugins:tuxdroid:1.7", "labels": ["notifier"], "name": "tuxdroid", "previousTimestamp": "2010-02-11T01:34:02.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-11-04T14:11:28.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "G3Nk2Swa7PIHuHiTBP5ttfEfTDA=", "title": "TuxDroid Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/tuxdroid/1.7/tuxdroid.hpi", "version": "1.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/TuxDroid+Plugin"}, "twitter": {"buildDate": "Sep 16, 2010", "dependencies": [], "developers": [{"developerId": "cactusman"}], "excerpt": "This plugin posts build results to Twitter.", "gav": "org.jvnet.hudson.plugins:twitter:0.6", "labels": ["notifier"], "name": "twitter", "previousTimestamp": "2009-10-31T06:59:18.00Z", "previousVersion": "0.4", "releaseTimestamp": "2010-09-17T02:48:24.00Z", "requiredCore": "1.365", "scm": "svn.dev.java.net", "sha1": "wYiA7y0nIGzUukeMW9gAo3VyVhg=", "title": "Twitter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/twitter/0.6/twitter.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Twitter+Plugin"}, "ui-samples-plugin": {"buildDate": "Dec 09, 2012", "dependencies": [], "developers": [{"developerId": "kohsuke"}], "excerpt": "", "gav": "org.jenkins-ci.main:ui-samples-plugin:1.493", "name": "ui-samples-plugin", "previousTimestamp": "2012-11-26T03:46:40.00Z", "previousVersion": "1.492", "releaseTimestamp": "2012-12-09T13:00:40.00Z", "requiredCore": "1.493", "scm": "github.com", "sha1": "geONmY6J/jQL8obzBwd8tk9kjgM=", "title": "Jenkins UI sample plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ui-samples-plugin/1.493/ui-samples-plugin.hpi", "version": "1.493"}, "unicorn": {"buildDate": "Aug 08, 2011", "dependencies": [], "developers": [{"developerId": "nej", "email": "jernejz@gmail.com", "name": "Jernej Zorec"}], "excerpt": "This plugin uses W3C's Unified Validator, which helps improve the quality of Web pages by performing a variety of checks.", "gav": "si.nej.hudson.plugins:unicorn:0.1.1", "labels": ["builder"], "name": "unicorn", "previousTimestamp": "2011-02-14T04:31:48.00Z", "previousVersion": "0.1.0", "releaseTimestamp": "2011-08-08T05:11:46.00Z", "requiredCore": "1.377", "scm": "github.com", "sha1": "CRsQG3baoeQSvbxfxLbWOXvK9ZA=", "title": "Unicorn Validation Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/unicorn/0.1.1/unicorn.hpi", "version": "0.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unicorn+Validation+Plugin"}, "unity-asset-server": {"buildDate": "Sep 27, 2010", "dependencies": [], "developers": [{"developerId": "mbrunken"}], "excerpt": "This plugin allows you to use Unity Asset Server as a SCM.", "gav": "org.jvnet.hudson.plugins:unity-asset-server:1.1.1", "labels": ["scm"], "name": "unity-asset-server", "previousTimestamp": "2010-09-23T21:42:32.00Z", "previousVersion": "1.1.0", "releaseTimestamp": "2010-09-27T15:30:50.00Z", "requiredCore": "1.318", "scm": "svn.dev.java.net", "sha1": "3Bqn+CLdG3vFmXgD+svECx04N+Q=", "title": "Unity Asset Server Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/unity-asset-server/1.1.1/unity-asset-server.hpi", "version": "1.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unity+Asset+Server+Plugin"}, "unity3d-plugin": {"buildDate": "Jun 13, 2012", "dependencies": [], "developers": [{"developerId": "lacostej", "email": "jerome.lacoste@gmail.com", "name": "Jerome Lacoste"}], "excerpt": "Unity3d is a powerful 3d game creation editor and engine that runs on Mac and Windows. This plugin adds the ability to call the Unity3d Editor from the command line to automate build and packaging of Unity3d applications. ", "gav": "org.jenkins-ci.plugins:unity3d-plugin:0.3", "labels": ["builder"], "name": "unity3d-plugin", "previousTimestamp": "2012-01-31T04:25:50.00Z", "previousVersion": "0.2", "releaseTimestamp": "2012-06-14T02:39:10.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "wagB1YreyAG/pCVCmdaoUBgW2LU=", "title": "Unity3dBuilder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/unity3d-plugin/0.3/unity3d-plugin.hpi", "version": "0.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unity3dBuilder+Plugin"}, "unreliable-slave-plugin": {"buildDate": "Aug 06, 2012", "dependencies": [], "developers": [{"developerId": "lvotypko", "name": "Lucie Votypkova"}], "excerpt": "This plugin creates statistic about failed jobs which failed on slave and after configured count of failures try slave reconnect of put offline and send notification ", "gav": "jenkinsci:unreliable-slave-plugin:1.0", "labels": [], "name": "unreliable-slave-plugin", "releaseTimestamp": "2012-08-06T18:35:42.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "Wos9SW6SQN+eeE7oYWHHmEdJzb4=", "title": "Unreliable slave plugin", "url": "http://updates.jenkins-ci.org/download/plugins/unreliable-slave-plugin/1.0/unreliable-slave-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Unreliable+slave+plugin"}, "urltrigger": {"buildDate": "Oct 26, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "URLTrigger plug-in makes it possible to monitor changes of the response got from an URL invocation.", "gav": "org.jenkins-ci.plugins:urltrigger:0.26", "labels": ["trigger"], "name": "urltrigger", "previousTimestamp": "2012-10-21T19:31:40.00Z", "previousVersion": "0.25", "releaseTimestamp": "2012-10-27T01:52:10.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "MFNZ9Gxymfj6OlIi29Wl3S42HsE=", "title": "URLTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/urltrigger/0.26/urltrigger.hpi", "version": "0.26", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/URLTrigger+Plugin"}, "utplsql": {"buildDate": "Feb 13, 2011", "dependencies": [], "developers": [{"developerId": "kusemuckl", "email": "nils@kusemuckl.de", "name": "Nils op den Winkel"}], "excerpt": "a tool to parse the output of utplsql", "gav": "hudson.plugins.utplsql:utplsql:0.4", "labels": ["report"], "name": "utplsql", "previousTimestamp": "2010-06-12T12:37:12.00Z", "previousVersion": "0.3", "releaseTimestamp": "2011-02-14T03:19:30.00Z", "requiredCore": "1.377", "scm": "svn.jenkins-ci.org", "sha1": "DaBYf/zwXOvkO6fB3IBPM9TzuRg=", "title": "utplsql Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/utplsql/0.4/utplsql.hpi", "version": "0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/utplsql+Plugin"}, "vagrant": {"buildDate": "Mar 15, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.9"}], "developers": [{"developerId": "tyler"}], "excerpt": "This plugin allows booting of Vagrant virtual machines, provisioning them and also executing scripts inside of them", "gav": "org.jenkins-ci.ruby-plugins:vagrant:0.1.4", "labels": ["buildwrapper", "builder"], "name": "vagrant", "previousTimestamp": "2012-03-15T18:11:10.00Z", "previousVersion": "0.1.3", "releaseTimestamp": "2012-03-15T20:25:16.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "V1FTJ8ZENLI4dDTpFlb03zN3lHE=", "title": "Vagrant Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/vagrant/0.1.4/vagrant.hpi", "version": "0.1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vagrant+Plugin"}, "valgrind": {"buildDate": "Oct 23, 2012", "dependencies": [], "developers": [{"developerId": "eXistence", "email": "johannes.ohlemacher@googlemail.com", "name": "Johannes Ohlemacher"}], "excerpt": "Integrates Valgrind in Jenkins.", "gav": "org.jenkins-ci.plugins:valgrind:0.18", "labels": ["report", "builder"], "name": "valgrind", "previousTimestamp": "2012-09-24T22:19:30.00Z", "previousVersion": "0.17", "releaseTimestamp": "2012-10-23T15:46:18.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "Pfe9ploNzcXO1REtgHoZF9C99GI=", "title": "Valgrind Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/valgrind/0.18/valgrind.hpi", "version": "0.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Valgrind+Plugin"}, "validating-string-parameter": {"buildDate": "Sep 13, 2011", "dependencies": [], "developers": [{"developerId": "petehayes", "email": "petehayes@gmail.com", "name": "Peter Hayes"}], "excerpt": "The validating string parameter plugin contributes a new parameter type to Jenkins that supports regular expression validation of the user's entered parameter.", "gav": "org.jenkins-ci.plugins:validating-string-parameter:2.2", "labels": ["misc", "parameter"], "name": "validating-string-parameter", "previousTimestamp": "2011-02-28T02:39:04.00Z", "previousVersion": "2.1", "releaseTimestamp": "2011-09-14T00:43:10.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "RiHAzMCWWkyIBJZu3HOrV5MnVfc=", "title": "Validating String Parameter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/validating-string-parameter/2.2/validating-string-parameter.hpi", "version": "2.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Validating+String+Parameter+Plugin"}, "vboxwrapper": {"buildDate": "Oct 23, 2012", "dependencies": [], "developers": [{"developerId": "theirix", "email": "theirix@gmail.com", "name": "Eugene Seliverstov"}], "excerpt": "Plugin provides a build wrapper for starting and stopping slaves on the virtual machine", "gav": "org.jenkins-ci.plugins:vboxwrapper:1.0", "labels": ["buildwrapper"], "name": "vboxwrapper", "releaseTimestamp": "2012-10-23T08:21:12.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "Sz10e02cq+PZ/YMkedVfod9ofnk=", "title": "VBoxWrapper", "url": "http://updates.jenkins-ci.org/download/plugins/vboxwrapper/1.0/vboxwrapper.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VBoxWrapper"}, "versioncolumn": {"buildDate": "Sep 03, 2011", "dependencies": [], "developers": [{"developerId": "ssogabe", "name": "Seiji Sogabe"}], "excerpt": "This plugin shows the version of slave on \"Manage Nodes\" page and make the node offline if it uses old slave.jar. ", "gav": "org.jenkins-ci.plugins:versioncolumn:0.2", "labels": ["listview-column"], "name": "versioncolumn", "previousTimestamp": "2011-03-19T20:21:52.00Z", "previousVersion": "0.1", "releaseTimestamp": "2011-09-03T13:24:36.00Z", "requiredCore": "1.401", "scm": "github.com", "sha1": "rRRI1En1DfCnZAORNb6j2Xm+6GY=", "title": "VersionColumn Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/versioncolumn/0.2/versioncolumn.hpi", "version": "0.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VersionColumn+Plugin"}, "versionnumber": {"buildDate": "Dec 19, 2011", "dependencies": [], "developers": [{"developerId": "abayer", "email": "andrew.bayer@gmail.com", "name": "Andrew Bayer"}, {"developerId": "cchabanois", "email": "cchabanois@gmail.com", "name": "Cedric Chabanois"}], "excerpt": "This plugin creates a new version number and stores it in the environment variable whose name you specify in the configuration.", "gav": "org.jvnet.hudson.tools:versionnumber:1.4.1", "labels": ["buildwrapper"], "name": "versionnumber", "previousTimestamp": "2011-12-18T00:54:00.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-12-20T03:14:00.00Z", "requiredCore": "1.404", "scm": "github.com", "sha1": "dL5PdGT2sE2GoJWxBRh0CIOSL8Q=", "title": "Version Number Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/versionnumber/1.4.1/versionnumber.hpi", "version": "1.4.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Version+Number+Plugin"}, "vertx": {"buildDate": "Nov 24, 2012", "dependencies": [], "developers": [{"developerId": "blalor", "email": "blalor@bravo5.org", "name": "Brian Lalor"}], "excerpt": "Vert.x embedder for Jenkins", "gav": "org.bravo5.jenkins.plugins:vertx:1.0.1", "labels": ["misc", "external", "notifier"], "name": "vertx", "previousTimestamp": "2012-11-20T03:14:18.00Z", "previousVersion": "1.0.0", "releaseTimestamp": "2012-11-25T03:01:38.00Z", "requiredCore": "1.482", "scm": "github.com", "sha1": "pPJP92OlNpoPHGxP9aZzupcKuGo=", "title": "Vert.x Embedder", "url": "http://updates.jenkins-ci.org/download/plugins/vertx/1.0.1/vertx.hpi", "version": "1.0.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Vert.x+Embedder"}, "view-job-filters": {"buildDate": "May 25, 2012", "dependencies": [{"name": "cvs", "optional": true, "version": "1.1"}, {"name": "subversion", "optional": true, "version": "1.11"}, {"name": "git", "optional": true, "version": "1.1.9"}, {"name": "email-ext", "optional": true, "version": "2.7"}, {"name": "m2-extra-steps", "optional": true, "version": "1.1.3"}, {"name": "maven-plugin", "optional": false, "version": "1.395"}], "developers": [{"developerId": "jacob_robertson", "email": "jacob.robertson.work@gmail.com", "name": "Jacob Robertson"}], "excerpt": "Create smart views with exactly the jobs you want. Your smart views can automatically include or exclude jobs by using things like the SCM path or type, the job type, build statuses or trends or triggers, relevance to the logged-in user, email recipients, Maven configuration, job parameterization, and user permissions. Mix and match filters to narrow down to exactly what you want. ", "gav": "org.jvnet.hudson.plugins:view-job-filters:1.22", "labels": ["ui", "scm-related", "maven", "user"], "name": "view-job-filters", "previousTimestamp": "2012-05-23T15:53:20.00Z", "previousVersion": "1.21.1", "releaseTimestamp": "2012-05-25T12:37:04.00Z", "requiredCore": "1.398", "scm": "svn.jenkins-ci.org", "sha1": "p7m4eUF24aHhFWnPqrVTbnIuvbk=", "title": "View Job Filters", "url": "http://updates.jenkins-ci.org/download/plugins/view-job-filters/1.22/view-job-filters.hpi", "version": "1.22", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/View+Job+Filters"}, "viewVC": {"buildDate": "Nov 03, 2011", "dependencies": [{"name": "subversion", "optional": false, "version": "1.3"}], "developers": [{"name": "Mike Salnikov"}, {"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "This plugin integrates ViewVC browser interface for CVS and Subversion with Hudson.", "gav": "org.jvnet.hudson.plugins:viewVC:1.5", "labels": ["scm-related"], "name": "viewVC", "previousTimestamp": "2011-11-03T18:20:06.00Z", "previousVersion": "1.4", "releaseTimestamp": "2011-11-03T18:22:26.00Z", "requiredCore": "1.392", "scm": "github.com", "sha1": "qgCO5wqAdFBTUFFS44kqB09eoAg=", "title": "ViewVC Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/viewVC/1.5/viewVC.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ViewVC+Plugin"}, "violations": {"buildDate": "Sep 08, 2012", "dependencies": [{"name": "maven-plugin", "optional": false, "version": "1.399"}], "developers": [{"developerId": "peterkittreilly", "name": "Peter Reilly"}], "excerpt": "This plug-in generates reports static code violation detectors such as checkstyle, pmd, cpd, findbugs, codenarc, fxcop, stylecop and simian. ", "gav": "org.jenkins-ci.plugins:violations:0.7.11", "labels": ["maven", "report"], "name": "violations", "previousTimestamp": "2011-08-08T16:13:38.00Z", "previousVersion": "0.7.10", "releaseTimestamp": "2012-09-08T17:31:26.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "UuXzsT6UDHmYxIKcHycTkHZXsvg=", "title": "Violations", "url": "http://updates.jenkins-ci.org/download/plugins/violations/0.7.11/violations.hpi", "version": "0.7.11", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Violations"}, "virtualbox": {"buildDate": "Oct 07, 2012", "dependencies": [], "developers": [{"developerId": "godin", "name": "Evgeny Mandrikov"}, {"developerId": "choas", "name": "Lars Gregori"}, {"developerId": "hgomez", "name": "Henri Gomez"}], "excerpt": "This plugin integrates Jenkins with VirtualBox (version 3, 4.0, 4.1 and 4.2) virtual machine.", "gav": "org.jenkins-ci.plugins:virtualbox:0.6", "labels": ["slaves", "buildwrapper"], "name": "virtualbox", "previousTimestamp": "2012-09-22T02:44:02.00Z", "previousVersion": "0.5", "releaseTimestamp": "2012-10-08T01:14:52.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "VF05k+pFUby9fssNm7H6yfGAazU=", "title": "VirtualBox Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/virtualbox/0.6/virtualbox.hpi", "version": "0.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VirtualBox+Plugin"}, "vmware": {"buildDate": "Apr 09, 2008", "dependencies": [], "developers": [{"developerId": "connollys"}], "excerpt": "This plugin allows you to start a VMware Virtual Machine before a build and stop it again after the build completes.", "gav": "org.jvnet.hudson.plugins:vmware:0.8", "labels": ["buildwrapper"], "name": "vmware", "previousTimestamp": "2008-02-27T17:27:22.00Z", "previousVersion": "0.7", "releaseTimestamp": "2008-04-09T13:15:54.00Z", "requiredCore": "1.206", "scm": "svn.dev.java.net", "sha1": "O9T9nyEMzQJv7k7j9u+uag0Lesw=", "title": "VMware plugin", "url": "http://updates.jenkins-ci.org/download/plugins/vmware/0.8/vmware.hpi", "version": "0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/VMware+plugin"}, "vsphere-cloud": {"buildDate": "May 25, 2012", "dependencies": [], "developers": [{"developerId": "jswager", "email": "jswager@alohaoi.com", "name": "Jason Swager"}], "excerpt": "Add VMware vSphere support to Jenkins to use virtual machines as slaves ", "gav": "org.jenkins-ci.plugins:vsphere-cloud:0.10", "labels": ["cluster", "slaves"], "name": "vsphere-cloud", "previousTimestamp": "2012-05-07T14:05:32.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-05-25T13:05:48.00Z", "requiredCore": "1.464", "scm": "github.com", "sha1": "yNgfIMFTECk8fXkI0kJgauT+syQ=", "title": "vSphere Cloud Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/vsphere-cloud/0.10/vsphere-cloud.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/vSphere+Cloud+Plugin"}, "vss": {"buildDate": "Aug 08, 2011", "dependencies": [], "developers": [{"developerId": "rioch", "name": "Jon Black"}], "excerpt": "This plugin integrates Hudson with Microsoft Visual SourceSafe ", "gav": "org.jenkins-ci.plugins:vss:1.9", "labels": ["scm"], "name": "vss", "previousTimestamp": "2010-09-19T22:06:44.00Z", "previousVersion": "1.8", "releaseTimestamp": "2011-08-08T15:37:28.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "z7LRaabPUDNZpuDs7rAEafW4EOM=", "title": "Visual SourceSafe Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/vss/1.9/vss.hpi", "version": "1.9", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Visual+SourceSafe+Plugin"}, "warnings": {"buildDate": "Oct 05, 2012", "dependencies": [{"name": "dashboard-view", "optional": true, "version": "2.2"}, {"name": "analysis-core", "optional": false, "version": "1.48"}, {"name": "maven-plugin", "optional": true, "version": "1.409"}, {"name": "violations", "optional": true, "version": "0.7.10"}, {"name": "token-macro", "optional": true, "version": "1.5.1"}], "developers": [{"developerId": "drulli", "email": "ullrich.hafner@gmail.com", "name": "Ulli Hafner"}], "excerpt": "This plugin generates the trend report for compiler warnings in the console log or in log files. ", "gav": "org.jvnet.hudson.plugins:warnings:4.18", "labels": ["maven", "report"], "name": "warnings", "previousTimestamp": "2012-09-10T22:59:10.00Z", "previousVersion": "4.17", "releaseTimestamp": "2012-10-05T16:09:32.00Z", "requiredCore": "1.409", "scm": "github.com", "sha1": "bcwfanowEEGzTEG2bWBiMGxx2OY=", "title": "Warnings Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/warnings/4.18/warnings.hpi", "version": "4.18", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin"}, "was-builder": {"buildDate": "Oct 20, 2011", "dependencies": [], "developers": [{"developerId": "rseguy", "email": "romain.seguy@gmail.com", "name": "Romain Seguy"}], "excerpt": "This plugin allows Jenkins to invoke IBM WebSphere Application Server's *wsadmin* as a build step.", "gav": "org.jenkins-ci.plugins:was-builder:1.6.1", "labels": ["builder"], "name": "was-builder", "previousTimestamp": "2011-08-07T14:05:02.00Z", "previousVersion": "1.6", "releaseTimestamp": "2011-10-20T14:19:58.00Z", "requiredCore": "1.409", "scm": "svn.jenkins-ci.org", "sha1": "ZjWAGywEpaL+0rhmyGNmBS5yyVg=", "title": "WAS Builder Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/was-builder/1.6.1/was-builder.hpi", "version": "1.6.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WAS+Builder+Plugin"}, "weblogic-deployer-plugin": {"buildDate": "Aug 13, 2012", "dependencies": [{"name": "javadoc", "optional": false, "version": "1.0"}, {"name": "maven-plugin", "optional": false, "version": "1.445"}], "developers": [{"developerId": "RaphC", "email": "rcr@orange.fr", "name": "Raphael CHAUMIER"}], "excerpt": "This plugin deploy artifacts built on Jenkins to a weblogic target (managed server, cluster ...) as an application or a library component.", "gav": "org.jenkins-ci.plugins:weblogic-deployer-plugin:1.3", "labels": ["upload"], "name": "weblogic-deployer-plugin", "previousTimestamp": "2012-08-03T02:55:06.00Z", "previousVersion": "1.2", "releaseTimestamp": "2012-08-13T15:10:08.00Z", "requiredCore": "1.445", "scm": "github.com", "sha1": "29LRrlQIYYCvuOKhmrDw1/h9WMw=", "title": "WebLogic Deployer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/weblogic-deployer-plugin/1.3/weblogic-deployer-plugin.hpi", "version": "1.3", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebLogic+Deployer+Plugin"}, "websocket": {"buildDate": "Apr 16, 2012", "dependencies": [], "developers": [{"developerId": "mzp", "email": "mzp@ocaml.jp", "name": "MIZUNO Hiroki"}], "excerpt": "This plugin notifies build results via Websocket. ", "gav": "org.codefirst.jenkins.wsnotifier:websocket:1.0.4", "labels": ["notifier"], "name": "websocket", "previousTimestamp": "2011-12-22T02:42:40.00Z", "previousVersion": "1.0.3", "releaseTimestamp": "2012-04-17T03:24:28.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "AfxgPKM9HbT8gcM1DREHhWP15ZE=", "title": "Websocket Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/websocket/1.0.4/websocket.hpi", "version": "1.0.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Websocket+Plugin"}, "webtestpresenter": {"buildDate": "Jan 15, 2010", "dependencies": [], "developers": [{"developerId": "aambrose", "name": "Adam Ambrose"}], "excerpt": "This plugin publishes the reports generated by the Canoo WebTest tool for each build.", "gav": "org.jvnet.hudson.plugins:webtestpresenter:0.23", "labels": ["report"], "name": "webtestpresenter", "previousTimestamp": "2008-07-13T21:48:18.00Z", "previousVersion": "0.22", "releaseTimestamp": "2010-01-16T03:53:06.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "NcPT6lv6p4WnZU43WeB8mZ59rc4=", "title": "WebTest Presenter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/webtestpresenter/0.23/webtestpresenter.hpi", "version": "0.23", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/WebTest+Presenter+Plugin"}, "whitesource": {"buildDate": "Oct 28, 2012", "dependencies": [{"name": "git", "optional": true, "version": "1.1.14"}, {"name": "maven-plugin", "optional": false, "version": "1.466"}, {"name": "javadoc", "optional": false, "version": "1.0"}], "developers": [{"developerId": "edoshor", "email": "edo.shor@whitesourcesoftware.com", "name": "Edo Shor"}, {"developerId": "sramakrishna", "email": "ramakrishna.sharvirala@gmail.com", "name": "Ramakrishna Sharvirala"}], "excerpt": "The plugin brings automatic open source management to Jenkins users. ", "gav": "org.jenkins-ci.plugins:whitesource:1.0", "labels": ["report", "external"], "name": "whitesource", "releaseTimestamp": "2012-10-28T20:49:24.00Z", "requiredCore": "1.466", "scm": "github.com", "sha1": "LwObWjeNtTiWHq4Q2h/Rcm2r/JQ=", "title": "Whitesource Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/whitesource/1.0/whitesource.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Whitesource+Plugin"}, "windmill": {"buildDate": "Feb 06, 2010", "dependencies": [], "developers": [{"developerId": "admc", "name": "Adam Christian"}], "excerpt": "This plugin allows you to configure and run Windmill functional tests.", "gav": "org.jvnet.hudson.plugins:windmill:1.5", "labels": ["external"], "name": "windmill", "previousTimestamp": "2009-06-25T20:40:46.00Z", "previousVersion": "1.4", "releaseTimestamp": "2010-02-06T13:59:22.00Z", "requiredCore": "1.319", "scm": "svn.dev.java.net", "sha1": "npNnBKCCpnFCi+Tsw/QA1mQyyyI=", "title": "Windmill Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/windmill/1.5/windmill.hpi", "version": "1.5", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Windmill+Plugin"}, "ws-cleanup": {"buildDate": "Jul 17, 2012", "dependencies": [], "developers": [{"developerId": "vjuranek", "name": "Vojtech Juranek"}], "excerpt": "This plugin deletes the workspace before the build or when a build is finished and artifacts saved.", "gav": "org.jenkins-ci.plugins:ws-cleanup:0.10", "labels": ["post-build", "buildwrapper"], "name": "ws-cleanup", "previousTimestamp": "2012-07-16T00:16:06.00Z", "previousVersion": "0.9", "releaseTimestamp": "2012-07-17T12:33:36.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "mVyDxN2UnpD37CyW0jVGzyVLzro=", "title": "Workspace Cleanup Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/ws-cleanup/0.10/ws-cleanup.hpi", "version": "0.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Workspace+Cleanup+Plugin"}, "xcode-plugin": {"buildDate": "Mar 27, 2012", "dependencies": [{"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "rayhilton", "email": "ray.hilton@gmail.com", "name": "Ray Yamamoto Hilton"}, {"developerId": "aheritier", "email": "aheritier@apache.org", "name": "Arnaud Heritier"}], "excerpt": "This plugin adds the ability to call Xcode command line tools to automate build and packaging iOS applications (iPhone, iPad, ...).", "gav": "org.jenkins-ci.plugins:xcode-plugin:1.3.1", "labels": ["builder", "ios"], "name": "xcode-plugin", "previousTimestamp": "2012-01-21T04:39:04.00Z", "previousVersion": "1.3", "releaseTimestamp": "2012-03-27T15:20:08.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "xowe0SZoM1pTFOwlco3MFywYxKA=", "title": "Xcode Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xcode-plugin/1.3.1/xcode-plugin.hpi", "version": "1.3.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin"}, "xfpanel": {"buildDate": "Aug 30, 2012", "dependencies": [{"name": "claim", "optional": false, "version": "1.7"}], "developers": [{"developerId": "jrenaut", "email": "julienrenaut@gmail.com", "name": "Julien RENAUT"}, {"developerId": "hoodja", "email": "hoodja@gmail.com", "name": "James Hood"}], "excerpt": "This plugin provides an eXtreme Feedback Panel that can be used to expose the status of a selected number of Jobs.", "gav": "org.jenkins-ci.plugins:xfpanel:1.1.4", "labels": ["report", "ui"], "name": "xfpanel", "previousTimestamp": "2012-08-28T17:18:10.00Z", "previousVersion": "1.1.3", "releaseTimestamp": "2012-08-30T13:20:34.00Z", "requiredCore": "1.475", "scm": "github.com", "sha1": "xQPIXSG7CItRv27Ilps7SzNZaGc=", "title": "eXtreme Feedback Panel Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xfpanel/1.1.4/xfpanel.hpi", "version": "1.1.4", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/eXtreme+Feedback+Panel+Plugin"}, "xframe-filter-plugin": {"buildDate": "Sep 27, 2011", "dependencies": [], "developers": [{"developerId": "jieryn", "email": "jieryn@gmail.com", "name": "Jesse Farinacci"}], "excerpt": "Provides a very simple filter which adds a response header indicating how frame/iframe requests should be handled.", "gav": "org.jenkins-ci.plugins:xframe-filter-plugin:1.0", "labels": ["page-decorator", "misc"], "name": "xframe-filter-plugin", "releaseTimestamp": "2011-09-27T14:26:38.00Z", "requiredCore": "1.429", "scm": "github.com", "sha1": "2gp6AD6zeY8gei7owGX4JiQu5yI=", "title": "XFrame Filter Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xframe-filter-plugin/1.0/xframe-filter-plugin.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XFrame+Filter+Plugin"}, "xpath-config-viewer": {"buildDate": "May 21, 2012", "dependencies": [], "developers": [{"developerId": "ffromm", "email": "frederik.fromm@gmail.com", "name": "Frederik Fromm"}], "excerpt": "This plugin adds a new link \"XPath Configuration Viewer\" to the Jenkins Managagement page. It provides a simple and easy way to check job configurations having a huge number of jobs.", "gav": "org.jenkins-ci.plugins:xpath-config-viewer:1.1.1", "labels": ["misc"], "name": "xpath-config-viewer", "previousTimestamp": "2012-03-07T13:35:10.00Z", "previousVersion": "1.1.0", "releaseTimestamp": "2012-05-21T22:03:38.00Z", "requiredCore": "1.424", "scm": "github.com", "sha1": "DSL/usWSQU9THJRxm1rd5Uw2Yi4=", "title": "XPath Configuration Viewer", "url": "http://updates.jenkins-ci.org/download/plugins/xpath-config-viewer/1.1.1/xpath-config-viewer.hpi", "version": "1.1.1", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XPath+Configuration+Viewer"}, "xpdev": {"buildDate": "Jun 26, 2012", "dependencies": [{"name": "git", "optional": false, "version": "1.1.17"}, {"name": "mercurial", "optional": false, "version": "1.41"}, {"name": "subversion", "optional": false, "version": "1.40"}], "developers": [{"developerId": "ndeloof", "name": "Nicolas De Loof"}], "excerpt": "", "gav": "com.cloudbees.jenkins.plugins:xpdev:1.0", "labels": [], "name": "xpdev", "releaseTimestamp": "2012-06-26T15:42:22.00Z", "requiredCore": "1.447", "scm": "github.com", "sha1": "jtb/FToA+IR4YXH/lTCNu6uBW5Y=", "title": "XP-Dev plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xpdev/1.0/xpdev.hpi", "version": "1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XP-Dev+plugin"}, "xshell": {"buildDate": "Apr 11, 2012", "dependencies": [], "developers": [{"developerId": "mambu", "email": "marco.ambu+jenkins@gmail.com", "name": "Marco Ambu"}], "excerpt": "This plugin defines a new build type to execute a shell command in a cross-platform environment.", "gav": "org.jenkins-ci.plugins:xshell:0.8", "labels": ["builder"], "name": "xshell", "previousTimestamp": "2011-12-29T14:06:08.00Z", "previousVersion": "0.7", "releaseTimestamp": "2012-04-11T23:05:22.00Z", "requiredCore": "1.459", "scm": "github.com", "sha1": "75P8ZCPx1gUmfdn3yDtkcfv4nQU=", "title": "XShell Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xshell/0.8/xshell.hpi", "version": "0.8", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XShell+Plugin"}, "xtrigger": {"buildDate": "Jul 28, 2012", "dependencies": [{"name": "ivytrigger", "optional": false, "version": "0.22"}, {"name": "buildresult-trigger", "optional": false, "version": "0.8"}, {"name": "scripttrigger", "optional": false, "version": "0.21"}, {"name": "urltrigger", "optional": false, "version": "0.24"}, {"name": "fstrigger", "optional": false, "version": "0.33"}], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "The XTrigger plugin makes it possible to monitor different environments (filesystem, jobs result, url response, binary repository and so on) and triggers a build if there is at least one change between two checks.", "gav": "org.jenkins-ci.plugins:xtrigger:0.53", "labels": ["trigger"], "name": "xtrigger", "previousTimestamp": "2012-07-25T05:48:36.00Z", "previousVersion": "0.52", "releaseTimestamp": "2012-07-28T04:28:14.00Z", "requiredCore": "1.461", "scm": "github.com", "sha1": "KnVb1JdGNwPSPYtKWE4/GRu9wR8=", "title": "XTrigger Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xtrigger/0.53/xtrigger.hpi", "version": "0.53", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/XTrigger+Plugin"}, "xunit": {"buildDate": "Nov 15, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "email": "gregory.boissinot@gmail.com", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to publish the test results of an execution of a testing tool in Jenkins.", "gav": "org.jenkins-ci.plugins:xunit:1.51", "labels": ["report"], "name": "xunit", "previousTimestamp": "2012-10-28T19:47:28.00Z", "previousVersion": "1.50", "releaseTimestamp": "2012-11-16T03:29:28.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "OCZ/P3WoUEFY46U4BLHmBX959HE=", "title": "xUnit Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xunit/1.51/xunit.hpi", "version": "1.51", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/xUnit+Plugin"}, "xvfb": {"buildDate": "Dec 09, 2012", "dependencies": [], "developers": [{"developerId": "zregvart", "email": "zregvart+xvfbjenkins@gmail.com", "name": "Zoran Regvart"}], "excerpt": "Lets you control Xvfb virtual frame buffer X11 server with each build. It starts Xvfb before the build starts, and stops it with the build. This is very useful if your build requires X11 access, for instance runs tests that require GUI. ", "gav": "org.jenkins-ci.plugins:xvfb:1.0.7", "labels": ["buildwrapper", "xvfb"], "name": "xvfb", "previousTimestamp": "2012-11-05T21:29:48.00Z", "previousVersion": "1.0.6", "releaseTimestamp": "2012-12-09T22:02:50.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "xvjq4QhP8vwy8uFkvoKFrbMg2vs=", "title": "Xvfb Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xvfb/1.0.7/xvfb.hpi", "version": "1.0.7", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin"}, "xvnc": {"buildDate": "Jul 19, 2010", "dependencies": [], "developers": [{"developerId": "jglick", "email": "jglick@dev.java.net", "name": "Jesse Glick"}], "excerpt": "This plugin lets you run an Xvnc session during a build. This is handy if your build includes UI testing that needs a display available. ", "gav": "org.jvnet.hudson.plugins:xvnc:1.10", "labels": ["buildwrapper"], "name": "xvnc", "previousTimestamp": "2010-06-21T21:56:56.00Z", "previousVersion": "1.9", "releaseTimestamp": "2010-07-19T16:30:16.00Z", "requiredCore": "1.367", "scm": "svn.dev.java.net", "sha1": "WWb7foXJ/b2XN+P3Oj9sdMuluAs=", "title": "Xvnc Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/xvnc/1.10/xvnc.hpi", "version": "1.10", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Xvnc+Plugin"}, "yammer": {"buildDate": "Jun 24, 2012", "dependencies": [{"name": "ruby-runtime", "optional": false, "version": "0.10"}, {"name": "token-macro", "optional": false, "version": "1.5.1"}], "developers": [{"developerId": "matthewriley"}], "excerpt": "Sends build notifications to Yammer.", "gav": "org.jenkins-ci.ruby-plugins:yammer:0.1.0", "labels": ["notifier"], "name": "yammer", "previousTimestamp": "2012-06-16T13:06:54.00Z", "previousVersion": "0.0.9", "releaseTimestamp": "2012-06-24T17:15:50.00Z", "requiredCore": "1.432", "scm": "github.com", "sha1": "TDIP0bT1BxtPTk+MXtZThc0BzMw=", "title": "Yammer Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/yammer/0.1.0/yammer.hpi", "version": "0.1.0", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Yammer+Plugin"}, "zentimestamp": {"buildDate": "Mar 10, 2012", "dependencies": [], "developers": [{"developerId": "gbois", "name": "Gregory Boissinot"}], "excerpt": "This plugin makes it possible to change the Jenkins build timestamp format (provided by the Jenkins BUILD_ID variable). ", "gav": "org.jenkins-ci.plugins:zentimestamp:3.2", "labels": ["buildwrapper"], "name": "zentimestamp", "previousTimestamp": "2012-03-07T06:19:08.00Z", "previousVersion": "3.1", "releaseTimestamp": "2012-03-11T03:07:40.00Z", "requiredCore": "1.410", "scm": "github.com", "sha1": "FWWOFxUNKWjmW2Skj8CTfIoPbtE=", "title": "ZenTimestamp Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/zentimestamp/3.2/zentimestamp.hpi", "version": "3.2", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/ZenTimestamp+Plugin"}, "zubhium": {"buildDate": "Aug 15, 2012", "dependencies": [], "developers": [{"developerId": "derFunk", "email": "mail@derfunk.com", "name": "Andreas Katzig"}], "excerpt": "This plugin uses the Zubhium upload API to allow uploading your Android .apk files to www.Zubhium.com ", "gav": "org.jenkins-ci.plugins:zubhium:0.1.6", "labels": ["upload", "android"], "name": "zubhium", "previousTimestamp": "2012-08-12T19:45:38.00Z", "previousVersion": "0.1.5", "releaseTimestamp": "2012-08-15T17:16:34.00Z", "requiredCore": "1.398", "scm": "github.com", "sha1": "F1InB9TBBOnv3K8gF/XGJPklCZI=", "title": "Zubhium Plugin", "url": "http://updates.jenkins-ci.org/download/plugins/zubhium/0.1.6/zubhium.hpi", "version": "0.1.6", "wiki": "https://wiki.jenkins-ci.org/display/JENKINS/Zubhium+Plugin"}}, "signature": {"certificates": ["MIIDezCCAmMCBQDerb7xMA0GCSqGSIb3DQEBBAUAMIGKMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEaMBgGA1UEAxMRS29oc3VrZSBLYXdhZ3VjaGkxHTAbBgkqhkiG9w0BCQEWDmtrQGtvaHN1a2Uub3JnMB4XDTEyMDQxOTA5MjEwMVoXDTEzMDQxOTA5MjEwMVoweDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExGDAWBgNVBAoTD0plbmtpbnMgUHJvamVjdDEeMBwGA1UECxMVRGVmYXVsdCBVcGRhdGUgQ2VudGVyMRowGAYDVQQDExFLb2hzdWtlIEthd2FndWNoaTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANRDu439lC/Ie+LlQ42vYICZZ9aIA8+poXhJLt1Mhosz+zFGCdljWTvO3/wxNx7uA053YTIKu73cSAxVjWK8Qfhv19hKXNKe7wvHZF0y6VbSKqKctjXsm/4nWrGr61FTIxr3LcM3byx/vJ0tykQmiDc5/oov7MmUpBLSg1yCyO70t1/NxyYy7xCreU2G1x2w+RxFakfIaLK9r33FcFH+mrEzQZHxoxlg3AuLn1WDz9+mRMvCEEZU6AQh07gBG8f8dOV9ot2vaknkF+w4OTsDdUdXY5sNghr6yQTLU8++0u/f9N8j+cP07C39OWnIjloBt3WVuhSuw83IqOJHoYh85wUCAwEAATANBgkqhkiG9w0BAQQFAAOCAQEAYTNwxggebhQaZwitsj1tfPpV7T6gQ6m/Bo/hV9OpvvP3jolZ79OFB79gg6HZbhZUwdBtHMWHiwMI/+DoAWgDQpRgFapTZmEtu/4LREXmgl9aTWDkiQ5M+7PCrowwkH8Jwwk+8cqiaCrrKkLUYsQkVqAUUD5EtxOgz6X7lH3nnALpo5A00Tvt3V0Q0vfiiPsSZiQ3go709dA6nrToPimEOBLgPPZw/A2gCQ8GbfB4vl0Zl5Yy7gPf36kMurG90XxbhmEZH75Hv9oERsD7Cr3z97fRTDxickg4cXTsdRwmqbCvFpXpMs6Vqyz2IsoysFqpP1FgFqPgFJYaFjBea0CPIQ=="], "correct_digest": "pTYuBfN/pgIiGO9xlkntZdQyegY=", "correct_signature": "SBTn2NIGuNKlBLf05zf3sLJgSjERu9AwATzER6mECOMy/UWRnARAnyWFdBCTdEWkm7VGg6jbnyl+jXQ6c7qzidEaZx3J7jJ/SQowEgfADZIiCb2S5j0tuEe+RpHkA1tK/jlAV/q9EdqrQvoHtjKrRDUuzsP8x2wcbV6zq4DaXkvvaxZLd3UaztHkEnwJ4HWachjKS7kAQFVchkoJEiP0bgZoIAANQ5bRW2KPdQ95u8H4rEni1uhtdsPWUC6D9HwlZApszszMv/CtOJcd6FxOckFar6CnhR+xtvA3CBJW/iUORhkTilETxpBDJdf+ht+ElTm0Eg4wWztzEGO3A5dREQ==", "digest": "h4o1evJPTwIFjASQ1zi1XHf7UoU=", "signature": "hcIXlPtlzVlzGrKOiMRv/4esERt/5LY6mPAK3CMB2hof6/RyH2hG/FfaqocOi2klv4zilzRwl/J++Fm90WMalYp2CbllNv7KjYJCllCANcc2hBWeaCgnWqD1gL1CoVU8gEyUY1XG8gnwLwaL9YdZvg4BSNkV4L/WMJOuy6O7qHLGVrz3CDt+BehJevT6mgeRfDdIN3FwLRn0qCxuVGmw0K+I8tguAfBF1MIvJoHH23i6nO5g0ELDlZrGGcbnxP+0HPgx5G4rhErYY7B/qrON1ozMGcVWD6o1jj+pQAF0gQEq1ZkVWWrA1LTX98H5KE28/TWH1ql/YHu8zjj4F2KXPA=="}, "updateCenterVersion": "1"} \ No newline at end of file diff --git a/work/updates/hudson.tasks.Ant.AntInstaller b/work/updates/hudson.tasks.Ant.AntInstaller new file mode 100644 index 0000000..e78c801 --- /dev/null +++ b/work/updates/hudson.tasks.Ant.AntInstaller @@ -0,0 +1 @@ +{"list": [{"id": "1.8.4", "name": "1.8.4", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.4-bin.zip"}, {"id": "1.8.3", "name": "1.8.3", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.3-bin.zip"}, {"id": "1.8.2", "name": "1.8.2", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.2-bin.zip"}, {"id": "1.8.1", "name": "1.8.1", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.1-bin.zip"}, {"id": "1.8.0", "name": "1.8.0", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.0-bin.zip"}, {"id": "1.7.1", "name": "1.7.1", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.7.1-bin.zip"}, {"id": "1.7.0", "name": "1.7.0", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip"}, {"id": "1.6.5", "name": "1.6.5", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip"}, {"id": "1.6.4", "name": "1.6.4", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.zip"}, {"id": "1.6.3", "name": "1.6.3", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.zip"}, {"id": "1.6.2", "name": "1.6.2", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.2-bin.zip"}, {"id": "1.6.1", "name": "1.6.1", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.1-bin.zip"}, {"id": "1.6.0", "name": "1.6.0", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.0-bin.zip"}, {"id": "1.5.4", "name": "1.5.4", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.5.4-bin.zip"}, {"id": "1.5.2", "name": "1.5.2", "url": "http://archive.apache.org/dist/ant/binaries/apache-ant-1.5.2-bin.zip"}, {"id": "1.5.1", "name": "1.5.1", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.5.1-bin.zip"}, {"id": "1.5", "name": "1.5", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.5-bin.zip"}, {"id": "1.4.1", "name": "1.4.1", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.4.1-bin.zip"}, {"id": "1.4", "name": "1.4", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.4-bin.zip"}, {"id": "1.3", "name": "1.3", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.3-bin.zip"}, {"id": "1.2", "name": "1.2", "url": "http://archive.apache.org/dist/ant/binaries/jakarta-ant-1.2-bin.zip"}]} \ No newline at end of file diff --git a/work/updates/hudson.tasks.Maven.MavenInstaller b/work/updates/hudson.tasks.Maven.MavenInstaller new file mode 100644 index 0000000..b30477a --- /dev/null +++ b/work/updates/hudson.tasks.Maven.MavenInstaller @@ -0,0 +1 @@ +{"list": [{"id": "3.0.4", "name": "3.0.4", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-3.0.4-bin.zip"}, {"id": "3.0.3", "name": "3.0.3", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-3.0.3-bin.zip"}, {"id": "3.0.2", "name": "3.0.2", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-3.0.2-bin.zip"}, {"id": "3.0.1", "name": "3.0.1", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-3.0.1-bin.zip"}, {"id": "3.0", "name": "3.0", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-3.0-bin.zip"}, {"id": "2.2.1", "name": "2.2.1", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.2.1-bin.zip"}, {"id": "2.2.0", "name": "2.2.0", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.2.0-bin.zip"}, {"id": "2.1.0", "name": "2.1.0", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.1.0-bin.zip"}, {"id": "2.0.11", "name": "2.0.11", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.0.11-bin.zip"}, {"id": "2.0.10", "name": "2.0.10", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.0.10-bin.zip"}, {"id": "2.0.9", "name": "2.0.9", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.0.9-bin.zip"}, {"id": "2.0.8", "name": "2.0.8", "url": "http://archive.apache.org/dist/maven/binaries/apache-maven-2.0.8-bin.zip"}, {"id": "2.0.7", "name": "2.0.7", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.7-bin.zip"}, {"id": "2.0.6", "name": "2.0.6", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.6-bin.zip"}, {"id": "2.0.5", "name": "2.0.5", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.5-bin.zip"}, {"id": "2.0.4", "name": "2.0.4", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.4-bin.zip"}, {"id": "2.0.3", "name": "2.0.3", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.3-bin.zip"}, {"id": "2.0.2", "name": "2.0.2", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.2-bin.zip"}, {"id": "2.0.1", "name": "2.0.1", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0.1-bin.zip"}, {"id": "2.0", "name": "2.0", "url": "http://archive.apache.org/dist/maven/binaries/maven-2.0-bin.zip"}, {"id": "1.1", "name": "1.1", "url": "http://archive.apache.org/dist/maven/binaries/maven-1.1.zip"}, {"id": "1.0.2", "name": "1.0.2", "url": "http://archive.apache.org/dist/maven/binaries/maven-1.0.2.zip"}, {"id": "1.0.1", "name": "1.0.1", "url": "http://archive.apache.org/dist/maven/binaries/maven-1.0.1.zip"}, {"id": "1.0", "name": "1.0", "url": "http://archive.apache.org/dist/maven/binaries/maven-1.0.zip"}]} \ No newline at end of file diff --git a/work/updates/hudson.tools.JDKInstaller b/work/updates/hudson.tools.JDKInstaller new file mode 100644 index 0000000..fda82d3 --- /dev/null +++ b/work/updates/hudson.tools.JDKInstaller @@ -0,0 +1 @@ +{"data": [{"name": "JDK 7", "releases": [{"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-linux-arm.tar.gz", "name": "jdk-7u9-linux-arm.tar.gz", "title": "Linux ARM"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-linux-i586.tar.gz", "name": "jdk-7u9-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-linux-x64.tar.gz", "name": "jdk-7u9-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-macosx-x64.dmg", "name": "jdk-7u9-macosx-x64.dmg", "title": "Mac OS X"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-solaris-i586.tar.gz", "name": "jdk-7u9-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-solaris-sparc.tar.gz", "name": "jdk-7u9-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-solaris-sparcv9.tar.gz", "name": "jdk-7u9-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-solaris-x64.tar.gz", "name": "jdk-7u9-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-windows-i586.exe", "name": "jdk-7u9-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u9-b05/jdk-7u9-windows-x64.exe", "name": "jdk-7u9-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u9-oth-JPR", "title": "Java SE Development Kit 7u9"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-linux-arm-sfp.tar.gz", "name": "jdk-7u7-linux-arm-sfp.tar.gz", "title": "Linux ARM"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-linux-i586.tar.gz", "name": "jdk-7u7-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-linux-x64.tar.gz", "name": "jdk-7u7-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-macosx-x64.dmg", "name": "jdk-7u7-macosx-x64.dmg", "title": "Mac OS X x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-solaris-i586.tar.gz", "name": "jdk-7u7-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-solaris-sparc.tar.gz", "name": "jdk-7u7-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-solaris-sparcv9.tar.gz", "name": "jdk-7u7-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b10/jdk-7u7-solaris-x64.tar.gz", "name": "jdk-7u7-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b11/jdk-7u7-windows-i586.exe", "name": "jdk-7u7-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u7-b11/jdk-7u7-windows-x64.exe", "name": "jdk-7u7-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u7-oth-JPR", "title": "Java SE Development Kit 7u7"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-linux-arm-sfp.tar.gz", "name": "jdk-7u6-linux-arm-sfp.tar.gz", "title": "Linux ARM"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-linux-i586.tar.gz", "name": "jdk-7u6-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-linux-x64.tar.gz", "name": "jdk-7u6-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-macosx-x64.dmg", "name": "jdk-7u6-macosx-x64.dmg", "title": "Mac OS X x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-solaris-i586.tar.gz", "name": "jdk-7u6-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-solaris-sparc.tar.gz", "name": "jdk-7u6-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-solaris-sparcv9.tar.gz", "name": "jdk-7u6-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-solaris-x64.tar.gz", "name": "jdk-7u6-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-windows-i586.exe", "name": "jdk-7u6-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u6-b24/jdk-7u6-windows-x64.exe", "name": "jdk-7u6-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u6-oth-JPR", "title": "Java SE Development Kit 7u6"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-linux-i586.tar.gz", "name": "jdk-7u5-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-linux-x64.tar.gz", "name": "jdk-7u5-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-macosx-x64.dmg", "name": "jdk-7u5-macosx-x64.dmg", "title": "Mac OS X x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-solaris-i586.tar.gz", "name": "jdk-7u5-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-solaris-sparc.tar.gz", "name": "jdk-7u5-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-solaris-sparcv9.tar.gz", "name": "jdk-7u5-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-solaris-x64.tar.gz", "name": "jdk-7u5-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-windows-i586.exe", "name": "jdk-7u5-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u5-b06/jdk-7u5-windows-x64.exe", "name": "jdk-7u5-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u5-oth-JPR", "title": "Java SE Development Kit 7u5"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-linux-i586.tar.gz", "name": "jdk-7u4-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-linux-x64.tar.gz", "name": "jdk-7u4-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b21/jdk-7u4-macosx-x64.dmg", "name": "jdk-7u4-macosx-x64.dmg", "title": "Macosx-x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-solaris-i586.tar.gz", "name": "jdk-7u4-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-solaris-sparc.tar.gz", "name": "jdk-7u4-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-solaris-sparcv9.tar.gz", "name": "jdk-7u4-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b20/jdk-7u4-solaris-x64.tar.gz", "name": "jdk-7u4-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b22/jdk-7u4-windows-i586.exe", "name": "jdk-7u4-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u4-b22/jdk-7u4-windows-x64.exe", "name": "jdk-7u4-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u4-oth-JPR", "title": "Java SE Development Kit 7u4"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-linux-i586.tar.gz", "name": "jdk-7u3-linux-i586.tar.gz", "title": "Linux x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-linux-x64.tar.gz", "name": "jdk-7u3-linux-x64.tar.gz", "title": "Linux x64 (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-solaris-i586.tar.gz", "name": "jdk-7u3-solaris-i586.tar.gz", "title": "Solaris x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-solaris-sparc.tar.gz", "name": "jdk-7u3-solaris-sparc.tar.gz", "title": "Solaris SPARC (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-solaris-sparcv9.tar.gz", "name": "jdk-7u3-solaris-sparcv9.tar.gz", "title": "Solaris SPARC (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b04/jdk-7u3-solaris-x64.tar.gz", "name": "jdk-7u3-solaris-x64.tar.gz", "title": "Solaris x64 (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b05/jdk-7u3-windows-i586.exe", "name": "jdk-7u3-windows-i586.exe", "title": "Windows x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u3-b05/jdk-7u3-windows-x64.exe", "name": "jdk-7u3-windows-x64.exe", "title": "Windows x64 (64-bit)"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u3-oth-JPR", "title": "Java SE Development Kit 7u3"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-linux-i586.tar.gz", "name": "jdk-7u2-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-linux-x64.tar.gz", "name": "jdk-7u2-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-solaris-i586.tar.gz", "name": "jdk-7u2-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-solaris-sparc.tar.gz", "name": "jdk-7u2-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-solaris-sparcv9.tar.gz", "name": "jdk-7u2-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-solaris-x64.tar.gz", "name": "jdk-7u2-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-windows-i586.exe", "name": "jdk-7u2-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u2-b13/jdk-7u2-windows-x64.exe", "name": "jdk-7u2-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u2-oth-JPR", "title": "Java SE Development Kit 7u2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-linux-i586.tar.gz", "name": "jdk-7u1-linux-i586.tar.gz", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-linux-x64.tar.gz", "name": "jdk-7u1-linux-x64.tar.gz", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-solaris-i586.tar.gz", "name": "jdk-7u1-solaris-i586.tar.gz", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-solaris-sparc.tar.gz", "name": "jdk-7u1-solaris-sparc.tar.gz", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-solaris-sparcv9.tar.gz", "name": "jdk-7u1-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-solaris-x64.tar.gz", "name": "jdk-7u1-solaris-x64.tar.gz", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-windows-i586.exe", "name": "jdk-7u1-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7u1-b08/jdk-7u1-windows-x64.exe", "name": "jdk-7u1-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7u1-oth-JPR", "title": "Java SE Development Kit 7u1"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-linux-i586.tar.gz", "name": "jdk-7-linux-i586.tar.gz", "title": "Linux x86 - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-linux-x64.tar.gz", "name": "jdk-7-linux-x64.tar.gz", "title": "Linux x64 - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-solaris-i586.tar.gz", "name": "jdk-7-solaris-i586.tar.gz", "title": "Solaris x86 - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-solaris-sparc.tar.gz", "name": "jdk-7-solaris-sparc.tar.gz", "title": "Solaris SPARC - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-solaris-sparcv9.tar.gz", "name": "jdk-7-solaris-sparcv9.tar.gz", "title": "Solaris SPARC 64-bit - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-solaris-x64.tar.gz", "name": "jdk-7-solaris-x64.tar.gz", "title": "Solaris x64 - Compressed Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-windows-i586.exe", "name": "jdk-7-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/7/jdk-7-windows-x64.exe", "name": "jdk-7-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-7-oth-JPR", "title": "Java SE Development Kit 7"}]}, {"name": "JDK 6", "releases": [{"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-linux-i586.bin", "name": "jdk-6u37-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-linux-x64.bin", "name": "jdk-6u37-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-solaris-i586.sh", "name": "jdk-6u37-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-solaris-sparc.sh", "name": "jdk-6u37-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-solaris-sparcv9.sh", "name": "jdk-6u37-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-solaris-x64.sh", "name": "jdk-6u37-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-windows-i586.exe", "name": "jdk-6u37-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u37-b06/jdk-6u37-windows-x64.exe", "name": "jdk-6u37-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u37-oth-JPR", "title": "Java SE Development Kit 6u37"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-linux-i586.bin", "name": "jdk-6u35-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-linux-x64.bin", "name": "jdk-6u35-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-solaris-i586.sh", "name": "jdk-6u35-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-solaris-sparc.sh", "name": "jdk-6u35-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-solaris-sparcv9.sh", "name": "jdk-6u35-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-solaris-x64.sh", "name": "jdk-6u35-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-windows-i586.exe", "name": "jdk-6u35-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u35-b10/jdk-6u35-windows-x64.exe", "name": "jdk-6u35-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u35-oth-JPR", "title": "Java SE Development Kit 6u35"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-linux-i586.bin", "name": "jdk-6u34-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-linux-x64.bin", "name": "jdk-6u34-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-solaris-i586.sh", "name": "jdk-6u34-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-solaris-sparc.sh", "name": "jdk-6u34-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-solaris-sparcv9.sh", "name": "jdk-6u34-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-solaris-x64.sh", "name": "jdk-6u34-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-windows-i586.exe", "name": "jdk-6u34-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-windows-x64.exe", "name": "jdk-6u34-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u34-oth-JPR", "title": "Java SE Development Kit 6u34"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-linux-i586.bin", "name": "jdk-6u33-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn-pub/java/jdk/6u33-b03/jdk-6u33-linux-ia64.bin", "name": "jdk-6u33-linux-ia64.bin", "title": "Linux Intel Itanium"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-linux-x64.bin", "name": "jdk-6u33-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-solaris-i586.sh", "name": "jdk-6u33-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-solaris-sparc.sh", "name": "jdk-6u33-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-solaris-sparcv9.sh", "name": "jdk-6u33-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b04/jdk-6u33-solaris-x64.sh", "name": "jdk-6u33-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b05/jdk-6u33-windows-i586.exe", "name": "jdk-6u33-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn-pub/java/jdk/6u33-b03/jdk-6u33-windows-ia64.exe", "name": "jdk-6u33-windows-ia64.exe", "title": "Windows Intel Itanium"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u33-b05/jdk-6u33-windows-x64.exe", "name": "jdk-6u33-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u33-oth-JPR", "title": "Java SE Development Kit 6u33"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-linux-i586.bin", "name": "jdk-6u32-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-linux-x64.bin", "name": "jdk-6u32-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-solaris-i586.sh", "name": "jdk-6u32-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-solaris-sparc.sh", "name": "jdk-6u32-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-solaris-sparcv9.sh", "name": "jdk-6u32-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-solaris-x64.sh", "name": "jdk-6u32-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-windows-i586.exe", "name": "jdk-6u32-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u32-b05/jdk-6u32-windows-x64.exe", "name": "jdk-6u32-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u32-oth-JPR", "title": "Java SE Development Kit 6u32"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-linux-i586.bin", "name": "jdk-6u31-linux-i586.bin", "title": "Linux x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-linux-ia64.bin", "name": "jdk-6u31-linux-ia64.bin", "title": "Linux Intel Itanium (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-linux-x64.bin", "name": "jdk-6u31-linux-x64.bin", "title": "Linux x64 (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-solaris-i586.sh", "name": "jdk-6u31-solaris-i586.sh", "title": "Solaris x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-solaris-sparc.sh", "name": "jdk-6u31-solaris-sparc.sh", "title": "Solaris SPARC (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-solaris-sparcv9.sh", "name": "jdk-6u31-solaris-sparcv9.sh", "title": "Solaris SPARC (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b04/jdk-6u31-solaris-x64.sh", "name": "jdk-6u31-solaris-x64.sh", "title": "Solaris x64 (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b05/jdk-6u31-windows-i586.exe", "name": "jdk-6u31-windows-i586.exe", "title": "Windows x86 (32-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b05/jdk-6u31-windows-ia64.exe", "name": "jdk-6u31-windows-ia64.exe", "title": "Windows Intel Itanium (64-bit)"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u31-b05/jdk-6u31-windows-x64.exe", "name": "jdk-6u31-windows-x64.exe", "title": "Windows x64 (64-bit)"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u31-oth-JPR", "title": "Java SE Development Kit 6u31"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-linux-i586.bin", "name": "jdk-6u30-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-linux-x64.bin", "name": "jdk-6u30-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-solaris-i586.sh", "name": "jdk-6u30-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-solaris-sparc.sh", "name": "jdk-6u30-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-solaris-sparcv9.sh", "name": "jdk-6u30-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-solaris-x64.sh", "name": "jdk-6u30-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-windows-i586.exe", "name": "jdk-6u30-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u30-b12/jdk-6u30-windows-x64.exe", "name": "jdk-6u30-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u30-oth-JPR", "title": "Java SE Development Kit 6u30"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-linux-i586.bin", "name": "jdk-6u29-linux-i586.bin", "title": "Linux x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-linux-ia64.bin", "name": "jdk-6u29-linux-ia64.bin", "title": "Linux Intel Itanium"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-linux-x64.bin", "name": "jdk-6u29-linux-x64.bin", "title": "Linux x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-solaris-i586.sh", "name": "jdk-6u29-solaris-i586.sh", "title": "Solaris x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-solaris-sparc.sh", "name": "jdk-6u29-solaris-sparc.sh", "title": "Solaris SPARC"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-solaris-sparcv9.sh", "name": "jdk-6u29-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-solaris-x64.sh", "name": "jdk-6u29-solaris-x64.sh", "title": "Solaris x64"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-windows-i586.exe", "name": "jdk-6u29-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-windows-ia64.exe", "name": "jdk-6u29-windows-ia64.exe", "title": "Windows Intel Itanium"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u29-b11/jdk-6u29-windows-x64.exe", "name": "jdk-6u29-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u29-oth-JPR", "path": "http://download.oracle.com/otn/java/jdk/6u29-b11/", "title": "Java SE Development Kit 6u29"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-linux-i586.bin", "name": "jdk-6u27-linux-i586.bin", "title": "Linux x86 - Self Extracting Installer"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-linux-x64.bin", "name": "jdk-6u27-linux-x64.bin", "title": "Linux x64 - Self Extracting Installer"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-solaris-i586.sh", "name": "jdk-6u27-solaris-i586.sh", "title": "Solaris x86 - Self Extracting Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-solaris-sparc.sh", "name": "jdk-6u27-solaris-sparc.sh", "title": "Solaris SPARC - Self Extracting Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-solaris-sparcv9.sh", "name": "jdk-6u27-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit - Self Extracting Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-solaris-x64.sh", "name": "jdk-6u27-solaris-x64.sh", "title": "Solaris x64 - Self Extracting Binary"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-windows-i586.exe", "name": "jdk-6u27-windows-i586.exe", "title": "Windows x86"}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u27-b07/jdk-6u27-windows-x64.exe", "name": "jdk-6u27-windows-x64.exe", "title": "Windows x64"}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u27-oth-JPR", "path": "http://download.oracle.com/otn/java/jdk/6u27-b07/", "title": "Java SE Development Kit 6u27"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-linux-i586.bin", "name": "jdk-6u26-linux-i586.bin", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-linux-ia64.bin", "name": "jdk-6u26-linux-ia64.bin", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-linux-x64.bin", "name": "jdk-6u26-linux-x64.bin", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-solaris-i586.sh", "name": "jdk-6u26-solaris-i586.sh", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-solaris-sparc.sh", "name": "jdk-6u26-solaris-sparc.sh", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-solaris-sparcv9.sh", "name": "jdk-6u26-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-solaris-x64.sh", "name": "jdk-6u26-solaris-x64.sh", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-windows-i586.exe", "name": "jdk-6u26-windows-i586.exe", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-windows-ia64.exe", "name": "jdk-6u26-windows-ia64.exe", "title": "Java SE Development Kit 6u26 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u26-b03/jdk-6u26-windows-x64.exe", "name": "jdk-6u26-windows-x64.exe", "title": "Java SE Development Kit 6u26 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u26-oth-JPR", "title": "Java SE Development Kit 6u26"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-linux-i586.bin", "name": "jdk-6u25-linux-i586.bin", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-linux-x64.bin", "name": "jdk-6u25-linux-x64.bin", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-solaris-i586.sh", "name": "jdk-6u25-solaris-i586.sh", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-solaris-sparc.sh", "name": "jdk-6u25-solaris-sparc.sh", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-solaris-sparcv9.sh", "name": "jdk-6u25-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-solaris-x64.sh", "name": "jdk-6u25-solaris-x64.sh", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-windows-i586.exe", "name": "jdk-6u25-windows-i586.exe", "title": "Java SE Development Kit 6u25 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u25-b06/jdk-6u25-windows-x64.exe", "name": "jdk-6u25-windows-x64.exe", "title": "Java SE Development Kit 6u25 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u25-oth-JPR", "title": "Java SE Development Kit 6u25"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-linux-i586.bin", "name": "jdk-6u24-linux-i586.bin", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-linux-ia64.bin", "name": "jdk-6u24-linux-ia64.bin", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-linux-x64.bin", "name": "jdk-6u24-linux-x64.bin", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-solaris-i586.sh", "name": "jdk-6u24-solaris-i586.sh", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-solaris-sparc.sh", "name": "jdk-6u24-solaris-sparc.sh", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-solaris-sparcv9.sh", "name": "jdk-6u24-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-solaris-x64.sh", "name": "jdk-6u24-solaris-x64.sh", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-windows-i586.exe", "name": "jdk-6u24-windows-i586.exe", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-windows-ia64.exe", "name": "jdk-6u24-windows-ia64.exe", "title": "Java SE Development Kit 6u24 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u24-b07/jdk-6u24-windows-x64.exe", "name": "jdk-6u24-windows-x64.exe", "title": "Java SE Development Kit 6u24 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u24-oth-JPR", "title": "Java SE Development Kit 6u24"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-linux-i586.bin", "name": "jdk-6u23-linux-i586.bin", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-linux-x64.bin", "name": "jdk-6u23-linux-x64.bin", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-solaris-i586.sh", "name": "jdk-6u23-solaris-i586.sh", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-solaris-sparc.sh", "name": "jdk-6u23-solaris-sparc.sh", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-solaris-sparcv9.sh", "name": "jdk-6u23-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-solaris-x64.sh", "name": "jdk-6u23-solaris-x64.sh", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-windows-i586.exe", "name": "jdk-6u23-windows-i586.exe", "title": "Java SE Development Kit 6u23 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u23-b05/jdk-6u23-windows-x64.exe", "name": "jdk-6u23-windows-x64.exe", "title": "Java SE Development Kit 6u23 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u23-oth-JPR", "title": "Java SE Development Kit 6u23"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-linux-i586.bin", "name": "jdk-6u22-linux-i586.bin", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-linux-ia64.bin", "name": "jdk-6u22-linux-ia64.bin", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-linux-x64.bin", "name": "jdk-6u22-linux-x64.bin", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-solaris-i586.sh", "name": "jdk-6u22-solaris-i586.sh", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-solaris-sparc.sh", "name": "jdk-6u22-solaris-sparc.sh", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-solaris-sparcv9.sh", "name": "jdk-6u22-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-solaris-x64.sh", "name": "jdk-6u22-solaris-x64.sh", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-windows-i586.exe", "name": "jdk-6u22-windows-i586.exe", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-windows-ia64.exe", "name": "jdk-6u22-windows-ia64.exe", "title": "Java SE Development Kit 6u22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u22-b04/jdk-6u22-windows-x64.exe", "name": "jdk-6u22-windows-x64.exe", "title": "Java SE Development Kit 6u22 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u22-oth-JPR", "title": "Java SE Development Kit 6u22"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-linux-i586.bin", "name": "jdk-6u21-linux-i586.bin", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-linux-ia64.bin", "name": "jdk-6u21-linux-ia64.bin", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-linux-x64.bin", "name": "jdk-6u21-linux-x64.bin", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-solaris-i586.sh", "name": "jdk-6u21-solaris-i586.sh", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-solaris-sparc.sh", "name": "jdk-6u21-solaris-sparc.sh", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-solaris-sparcv9.sh", "name": "jdk-6u21-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-solaris-x64.sh", "name": "jdk-6u21-solaris-x64.sh", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-windows-i586.exe", "name": "jdk-6u21-windows-i586.exe", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-windows-ia64.exe", "name": "jdk-6u21-windows-ia64.exe", "title": "Java SE Development Kit 6u21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u21-b07/jdk-6u21-windows-x64.exe", "name": "jdk-6u21-windows-x64.exe", "title": "Java SE Development Kit 6u21 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u21-b07-oth-JPR", "title": "Java SE Development Kit 6u21"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-linux-i586.bin", "name": "jdk-6u20-linux-i586.bin", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-linux-ia64.bin", "name": "jdk-6u20-linux-ia64.bin", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-linux-x64.bin", "name": "jdk-6u20-linux-x64.bin", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-solaris-i586.sh", "name": "jdk-6u20-solaris-i586.sh", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-solaris-sparc.sh", "name": "jdk-6u20-solaris-sparc.sh", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-solaris-sparcv9.sh", "name": "jdk-6u20-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-solaris-x64.sh", "name": "jdk-6u20-solaris-x64.sh", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-windows-i586.exe", "name": "jdk-6u20-windows-i586.exe", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-windows-ia64.exe", "name": "jdk-6u20-windows-ia64.exe", "title": "Java SE Development Kit 6u20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u20-b02/jdk-6u20-windows-x64.exe", "name": "jdk-6u20-windows-x64.exe", "title": "Java SE Development Kit 6u20 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u20-oth-JPR", "title": "Java SE Development Kit 6u20"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-linux-i586.bin", "name": "jdk-6u19-linux-i586.bin", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-linux-ia64.bin", "name": "jdk-6u19-linux-ia64.bin", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-linux-x64.bin", "name": "jdk-6u19-linux-x64.bin", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-solaris-i586.sh", "name": "jdk-6u19-solaris-i586.sh", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-solaris-sparc.sh", "name": "jdk-6u19-solaris-sparc.sh", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-solaris-sparcv9.sh", "name": "jdk-6u19-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-solaris-x64.sh", "name": "jdk-6u19-solaris-x64.sh", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-windows-i586.exe", "name": "jdk-6u19-windows-i586.exe", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-windows-ia64.exe", "name": "jdk-6u19-windows-ia64.exe", "title": "Java SE Development Kit 6u19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u19-b04/jdk-6u19-windows-x64.exe", "name": "jdk-6u19-windows-x64.exe", "title": "Java SE Development Kit 6u19 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u19-oth-JPR", "title": "Java SE Development Kit 6u19"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-linux-i586.bin", "name": "jdk-6u18-linux-i586.bin", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-linux-ia64.bin", "name": "jdk-6u18-linux-ia64.bin", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-linux-x64.bin", "name": "jdk-6u18-linux-x64.bin", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-solaris-i586.sh", "name": "jdk-6u18-solaris-i586.sh", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-solaris-sparc.sh", "name": "jdk-6u18-solaris-sparc.sh", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-solaris-sparcv9.sh", "name": "jdk-6u18-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-solaris-x64.sh", "name": "jdk-6u18-solaris-x64.sh", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jre/6u18-b79/jdk-6u18-windows-i586.exe", "name": "jdk-6u18-windows-i586.exe", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-windows-ia64.exe", "name": "jdk-6u18-windows-ia64.exe", "title": "Java SE Development Kit 6u18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u18-b07/jdk-6u18-windows-x64.exe", "name": "jdk-6u18-windows-x64.exe", "title": "Java SE Development Kit 6u18 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u18-oth-JPR", "title": "Java SE Development Kit 6u18"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-linux-i586.bin", "name": "jdk-6u17-linux-i586.bin", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-linux-ia64.bin", "name": "jdk-6u17-linux-ia64.bin", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-linux-x64.bin", "name": "jdk-6u17-linux-x64.bin", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-sla.pdf", "name": "jdk-6u17-sla.pdf", "title": "Software License Agreement "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-solaris-i586.sh", "name": "jdk-6u17-solaris-i586.sh", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-solaris-sparc.sh", "name": "jdk-6u17-solaris-sparc.sh", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-solaris-sparcv9.sh", "name": "jdk-6u17-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-solaris-x64.sh", "name": "jdk-6u17-solaris-x64.sh", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-windows-i586.exe", "name": "jdk-6u17-windows-i586.exe", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-windows-ia64.exe", "name": "jdk-6u17-windows-ia64.exe", "title": "Java SE Development Kit 6u17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u17-b04/jdk-6u17-windows-x64.exe", "name": "jdk-6u17-windows-x64.exe", "title": "Java SE Development Kit 6u17 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u17-oth-JPR", "title": "Java SE Development Kit 6u17"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-linux-i586.bin", "name": "jdk-6u16-linux-i586.bin", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-linux-ia64.bin", "name": "jdk-6u16-linux-ia64.bin", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-linux-x64.bin", "name": "jdk-6u16-linux-x64.bin", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-solaris-i586.sh", "name": "jdk-6u16-solaris-i586.sh", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-solaris-sparc.sh", "name": "jdk-6u16-solaris-sparc.sh", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-solaris-sparcv9.sh", "name": "jdk-6u16-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-solaris-x64.sh", "name": "jdk-6u16-solaris-x64.sh", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-windows-i586.exe", "name": "jdk-6u16-windows-i586.exe", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-windows-ia64.exe", "name": "jdk-6u16-windows-ia64.exe", "title": "Java SE Development Kit 6u16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u16-b01/jdk-6u16-windows-x64.exe", "name": "jdk-6u16-windows-x64.exe", "title": "Java SE Development Kit 6u16 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u16-oth-JPR", "title": "Java SE Development Kit 6u16"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-linux-i586.bin", "name": "jdk-6u15-linux-i586.bin", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/scott/jdk-6u15-linux-ia64.bin", "name": "jdk-6u15-linux-ia64.bin", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-linux-x64.bin", "name": "jdk-6u15-linux-x64.bin", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-solaris-i586.sh", "name": "jdk-6u15-solaris-i586.sh", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-solaris-sparc.sh", "name": "jdk-6u15-solaris-sparc.sh", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-solaris-sparcv9.sh", "name": "jdk-6u15-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-solaris-x64.sh", "name": "jdk-6u15-solaris-x64.sh", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-windows-i586.exe", "name": "jdk-6u15-windows-i586.exe", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/scott/jdk-6u15-windows-ia64.exe", "name": "jdk-6u15-windows-ia64.exe", "title": "Java SE Development Kit 6u15 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u15-b03/jdk-6u15-windows-x64.exe", "name": "jdk-6u15-windows-x64.exe", "title": "Java SE Development Kit 6u15 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u15-oth-JPR", "title": "Java SE Development Kit 6u15"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-linux-i586.bin", "name": "jdk-6u14-linux-i586.bin", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-linux-ia64.bin", "name": "jdk-6u14-linux-ia64.bin", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-linux-x64.bin", "name": "jdk-6u14-linux-x64.bin", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-solaris-i586.sh", "name": "jdk-6u14-solaris-i586.sh", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-solaris-sparc.sh", "name": "jdk-6u14-solaris-sparc.sh", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-solaris-sparcv9.sh", "name": "jdk-6u14-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-solaris-x64.sh", "name": "jdk-6u14-solaris-x64.sh", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-windows-i586.exe", "name": "jdk-6u14-windows-i586.exe", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-windows-ia64.exe", "name": "jdk-6u14-windows-ia64.exe", "title": "Java SE Development Kit 6u14 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u14-b08/jdk-6u14-windows-x64.exe", "name": "jdk-6u14-windows-x64.exe", "title": "Java SE Development Kit 6u14 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u14-oth-JPR", "title": "Java SE Development Kit 6u14"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-linux-i586.bin", "name": "jdk-6u13-linux-i586.bin", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-linux-ia64.bin", "name": "jdk-6u13-linux-ia64.bin", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-linux-x64.bin", "name": "jdk-6u13-linux-x64.bin", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-solaris-i586.sh", "name": "jdk-6u13-solaris-i586.sh", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-solaris-sparc.sh", "name": "jdk-6u13-solaris-sparc.sh", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-solaris-sparcv9.sh", "name": "jdk-6u13-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-solaris-x64.sh", "name": "jdk-6u13-solaris-x64.sh", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-windows-i586-p.exe", "name": "jdk-6u13-windows-i586-p.exe", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-windows-ia64.exe", "name": "jdk-6u13-windows-ia64.exe", "title": "Java SE Development Kit 6u13 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u13-b03/jdk-6u13-windows-x64-p.exe", "name": "jdk-6u13-windows-x64-p.exe", "title": "Java SE Development Kit 6u13 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u13-oth-JPR", "title": "Java SE Development Kit 6u13"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-linux-i586.bin", "name": "jdk-6u12-linux-i586.bin", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-linux-ia64.bin", "name": "jdk-6u12-linux-ia64.bin", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-linux-x64.bin", "name": "jdk-6u12-linux-x64.bin", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-solaris-i586.sh", "name": "jdk-6u12-solaris-i586.sh", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-solaris-sparc.sh", "name": "jdk-6u12-solaris-sparc.sh", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-solaris-sparcv9.sh", "name": "jdk-6u12-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-solaris-x64.sh", "name": "jdk-6u12-solaris-x64.sh", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-windows-i586-p.exe", "name": "jdk-6u12-windows-i586-p.exe", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-windows-ia64.exe", "name": "jdk-6u12-windows-ia64.exe", "title": "Java SE Development Kit 6u12 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u12-b04/jdk-6u12-windows-x64-p.exe", "name": "jdk-6u12-windows-x64-p.exe", "title": "Java SE Development Kit 6u12 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u12-oth-JPR", "title": "Java SE Development Kit 6u12"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-linux-i586.bin", "name": "jdk-6u11-linux-i586.bin", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-linux-ia64.bin", "name": "jdk-6u11-linux-ia64.bin", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-linux-x64.bin", "name": "jdk-6u11-linux-x64.bin", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-solaris-i586.sh", "name": "jdk-6u11-solaris-i586.sh", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-solaris-sparc.sh", "name": "jdk-6u11-solaris-sparc.sh", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-solaris-sparcv9.sh", "name": "jdk-6u11-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-solaris-x64.sh", "name": "jdk-6u11-solaris-x64.sh", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-windows-i586-p.exe", "name": "jdk-6u11-windows-i586-p.exe", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-windows-ia64.exe", "name": "jdk-6u11-windows-ia64.exe", "title": "Java SE Development Kit 6u11 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u11-b03/jdk-6u11-windows-x64.exe", "name": "jdk-6u11-windows-x64.exe", "title": "Java SE Development Kit 6u11 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u11-oth-JPR", "title": "Java SE Development Kit 6u11"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-linux-i586.bin", "name": "jdk-6u10-linux-i586.bin", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-linux-x64.bin", "name": "jdk-6u10-linux-x64.bin", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-solaris-i586.sh", "name": "jdk-6u10-solaris-i586.sh", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-solaris-sparc.sh", "name": "jdk-6u10-solaris-sparc.sh", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-solaris-sparcv9.sh", "name": "jdk-6u10-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-solaris-x64.sh", "name": "jdk-6u10-solaris-x64.sh", "title": "Java SE Development Kit 6u10 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-windows-i586-p.exe", "name": "jdk-6u10-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u10/jdk-6u10-windows-x64.exe", "name": "jdk-6u10-windows-x64.exe", "title": "Java SE Development Kit 6u10 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u10-oth-JPR", "title": "Java SE Development Kit 6u10"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-linux-i586.bin", "name": "jdk-6u7-linux-i586.bin", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-linux-x64.bin", "name": "jdk-6u7-linux-x64.bin", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-solaris-i586.sh", "name": "jdk-6u7-solaris-i586.sh", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-solaris-sparc.sh", "name": "jdk-6u7-solaris-sparc.sh", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-solaris-sparcv9.sh", "name": "jdk-6u7-solaris-sparcv9.sh", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-solaris-x64.sh", "name": "jdk-6u7-solaris-x64.sh", "title": "Java SE Development Kit 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-windows-i586-p.exe", "name": "jdk-6u7-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7/jdk-6u7-windows-x64.exe", "name": "jdk-6u7-windows-x64.exe", "title": "Java SE Development Kit 6u7 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u7-oth-JPR", "title": "Java SE Development Kit 6u7"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u7-ia64/jdk-6u7-linux-ia64.bin", "name": "jdk-6u7-linux-ia64.bin", "title": "Java SE Development Kit for Itanium 6u7 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u7-ia64/jdk-6u7-windows-ia64.exe", "name": "jdk-6u7-windows-ia64.exe", "title": "Java SE Development Kit for Itanium 6u7 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u7-ia64-JPR", "title": "Java SE Development Kit for Itanium 6u7"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u6-p2/jdk-6u6-p-linux-x64.tar.gz", "name": "jdk-6u6-p-linux-x64.tar.gz", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6-p2/jdk-6u6-p-solaris-i586.tar", "name": "jdk-6u6-p-solaris-i586.tar", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jre/6u6p/jdk-6u6-p-solaris-sparc.tar", "name": "jdk-6u6-p-solaris-sparc.tar", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jre/6u6p/jdk-6u6-p-solaris-sparcv9.tar", "name": "jdk-6u6-p-solaris-sparcv9.tar", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6-p2/jdk-6u6-p-solaris-x64.tar", "name": "jdk-6u6-p-solaris-x64.tar", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6-p2/jdk-6u6-p-windows-i586.tar", "name": "jdk-6u6-p-windows-i586.tar", "title": "Java SE Development Kit 6u6 Performance Release "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6-p2/jdk-6u6-p-windows-x64.tar", "name": "jdk-6u6-p-windows-x64.tar", "title": "Java SE Development Kit 6u6 Performance Release "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u6-p2-oth-JPR", "title": "Java SE Development Kit 6u6 Performance"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-linux-i586.bin", "name": "jdk-6u6-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-linux-x64.bin", "name": "jdk-6u6-linux-x64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-solaris-i586.sh", "name": "jdk-6u6-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-solaris-sparc.sh", "name": "jdk-6u6-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-solaris-sparcv9.sh", "name": "jdk-6u6-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-solaris-x64.sh", "name": "jdk-6u6-solaris-x64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-windows-i586-p.exe", "name": "jdk-6u6-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u6/jdk-6u6-windows-x64.exe", "name": "jdk-6u6-windows-x64.exe", "title": "Windows x64 executable "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u6-oth-JPR", "title": "Java SE Development Kit 6u6"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-linux-i586.bin", "name": "jdk-6u5-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-linux-x64.bin", "name": "jdk-6u5-linux-x64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-solaris-i586.sh", "name": "jdk-6u5-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-solaris-sparc.sh", "name": "jdk-6u5-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-solaris-sparcv9.sh", "name": "jdk-6u5-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-solaris-x64.sh", "name": "jdk-6u5-solaris-x64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-windows-i586-p.exe", "name": "jdk-6u5-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u5b/jdk-6u5-windows-x64.exe", "name": "jdk-6u5-windows-x64.exe", "title": "Windows x64 executable "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u5-oth-JPR", "title": "Java SE Development Kit 6u5"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-linux-i586.bin", "name": "jdk-6u4-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-linux-x64.bin", "name": "jdk-6u4-linux-x64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-solaris-i586.sh", "name": "jdk-6u4-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-solaris-sparc.sh", "name": "jdk-6u4-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-solaris-sparcv9.sh", "name": "jdk-6u4-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-solaris-x64.sh", "name": "jdk-6u4-solaris-x64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-windows-i586-p.exe", "name": "jdk-6u4-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u4-b12/jdk-6u4-windows-x64.exe", "name": "jdk-6u4-windows-x64.exe", "title": "Windows x64 executable "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u4-b-oth-JPR", "title": "Java SE Development Kit 6u4"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-linux-amd64.bin", "name": "jdk-6u3-linux-amd64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-linux-i586.bin", "name": "jdk-6u3-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-solaris-amd64.sh", "name": "jdk-6u3-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-solaris-i586.sh", "name": "jdk-6u3-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-solaris-sparc.sh", "name": "jdk-6u3-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-solaris-sparcv9.sh", "name": "jdk-6u3-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-windows-amd64.exe", "name": "jdk-6u3-windows-amd64.exe", "title": "Windows x64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u3/jdk-6u3-windows-i586-p.exe", "name": "jdk-6u3-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u3-oth-JPR", "title": "Java SE Development Kit 6u3"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-linux-amd64.bin", "name": "jdk-6u2-linux-amd64.bin", "title": "Linux x64 self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-linux-i586.bin", "name": "jdk-6u2-linux-i586.bin", "title": "Linux self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-solaris-amd64.sh", "name": "jdk-6u2-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-solaris-i586.sh", "name": "jdk-6u2-solaris-i586.sh", "title": "Solaris x86 self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-solaris-sparc.sh", "name": "jdk-6u2-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-solaris-sparcv9.sh", "name": "jdk-6u2-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-windows-amd64.exe", "name": "jdk-6u2-windows-amd64.exe", "title": "Windows x64 executable (build 05) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u2/jdk-6u2-windows-i586-p.exe", "name": "jdk-6u2-windows-i586-p.exe", "title": "Windows Offline Installation (build 06) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u2-oth-JPR", "title": "Java SE Development Kit 6u2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-linux-amd64.bin", "name": "jdk-6u1-linux-amd64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-linux-i586.bin", "name": "jdk-6u1-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-solaris-amd64.sh", "name": "jdk-6u1-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-solaris-i586.sh", "name": "jdk-6u1-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-solaris-sparc.sh", "name": "jdk-6u1-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-solaris-sparcv9.sh", "name": "jdk-6u1-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-windows-amd64.exe", "name": "jdk-6u1-windows-amd64.exe", "title": "Windows x64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6u1/jdk-6u1-windows-i586-p.exe", "name": "jdk-6u1-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6u1-oth-JPR", "title": "Java SE Development Kit 6u1"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-linux-amd64.bin", "name": "jdk-6-linux-amd64.bin", "title": "Linux x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-linux-i586.bin", "name": "jdk-6-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-solaris-amd64.sh", "name": "jdk-6-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-solaris-i586.sh", "name": "jdk-6-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-solaris-sparc.sh", "name": "jdk-6-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-solaris-sparcv9.sh", "name": "jdk-6-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-windows-amd64.exe", "name": "jdk-6-windows-amd64.exe", "title": "Windows x64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/6/jdk-6-windows-i586.exe", "name": "jdk-6-windows-i586.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-6-oth-JPR", "title": "Java SE Development Kit 6"}]}, {"name": "JDK 5", "releases": [{"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-linux-amd64.bin", "name": "jdk-1_5_0_22-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-linux-i586.bin", "name": "jdk-1_5_0_22-linux-i586.bin", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-solaris-amd64.sh", "name": "jdk-1_5_0_22-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-solaris-i586.sh", "name": "jdk-1_5_0_22-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-solaris-sparc.sh", "name": "jdk-1_5_0_22-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-solaris-sparcv9.sh", "name": "jdk-1_5_0_22-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-windows-amd64.exe", "name": "jdk-1_5_0_22-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 22 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_22/jdk-1_5_0_22-windows-i586-p.exe", "name": "jdk-1_5_0_22-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_22-oth-JPR", "title": "Java SE Development Kit 5.0u22"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-linux-amd64.bin", "name": "jdk-1_5_0_21-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-linux-i586.bin", "name": "jdk-1_5_0_21-linux-i586.bin", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-solaris-amd64.sh", "name": "jdk-1_5_0_21-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-solaris-i586.sh", "name": "jdk-1_5_0_21-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-solaris-sparc.sh", "name": "jdk-1_5_0_21-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-solaris-sparcv9.sh", "name": "jdk-1_5_0_21-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-windows-amd64.exe", "name": "jdk-1_5_0_21-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 21 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_21/jdk-1_5_0_21-windows-i586-p.exe", "name": "jdk-1_5_0_21-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_21-oth-JPR", "title": "Java SE Development Kit 5.0u21"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-linux-amd64.bin", "name": "jdk-1_5_0_20-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-linux-i586.bin", "name": "jdk-1_5_0_20-linux-i586.bin", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-solaris-amd64.sh", "name": "jdk-1_5_0_20-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-solaris-i586.sh", "name": "jdk-1_5_0_20-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-solaris-sparc.sh", "name": "jdk-1_5_0_20-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-solaris-sparcv9.sh", "name": "jdk-1_5_0_20-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-windows-amd64.exe", "name": "jdk-1_5_0_20-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 20 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_20/jdk-1_5_0_20-windows-i586-p.exe", "name": "jdk-1_5_0_20-windows-i586-p.exe", "title": "Java Development Kit 5.0 Update 20 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_20-oth-JPR", "title": "Java SE Development Kit 5.0u20"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-linux-amd64.bin", "name": "jdk-1_5_0_19-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-linux-i586.bin", "name": "jdk-1_5_0_19-linux-i586.bin", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-solaris-amd64.sh", "name": "jdk-1_5_0_19-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-solaris-i586.sh", "name": "jdk-1_5_0_19-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-solaris-sparc.sh", "name": "jdk-1_5_0_19-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-solaris-sparcv9.sh", "name": "jdk-1_5_0_19-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-windows-amd64.exe", "name": "jdk-1_5_0_19-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 19 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_19/jdk-1_5_0_19-windows-i586-p.exe", "name": "jdk-1_5_0_19-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_19-oth-JPR", "title": "Java SE Development Kit 5.0u19"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-linux-amd64.bin", "name": "jdk-1_5_0_18-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-linux-i586.bin", "name": "jdk-1_5_0_18-linux-i586.bin", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-solaris-amd64.sh", "name": "jdk-1_5_0_18-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-solaris-i586.sh", "name": "jdk-1_5_0_18-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-solaris-sparc.sh", "name": "jdk-1_5_0_18-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-solaris-sparcv9.sh", "name": "jdk-1_5_0_18-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-windows-amd64.exe", "name": "jdk-1_5_0_18-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 18 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_18/jdk-1_5_0_18-windows-i586-p.exe", "name": "jdk-1_5_0_18-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_18-oth-JPR", "title": "Java SE Development Kit 5.0u18"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-linux-amd64.bin", "name": "jdk-1_5_0_17-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-linux-i586.bin", "name": "jdk-1_5_0_17-linux-i586.bin", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-solaris-amd64.sh", "name": "jdk-1_5_0_17-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-solaris-i586.sh", "name": "jdk-1_5_0_17-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-solaris-sparc.sh", "name": "jdk-1_5_0_17-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-solaris-sparcv9.sh", "name": "jdk-1_5_0_17-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-windows-amd64.exe", "name": "jdk-1_5_0_17-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 17 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_17/jdk-1_5_0_17-windows-i586-p.exe", "name": "jdk-1_5_0_17-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_17-oth-JPR", "title": "Java SE Development Kit 5.0u17"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-linux-amd64.bin", "name": "jdk-1_5_0_16-linux-amd64.bin", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-linux-i586.bin", "name": "jdk-1_5_0_16-linux-i586.bin", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-solaris-amd64.sh", "name": "jdk-1_5_0_16-solaris-amd64.sh", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-solaris-i586.sh", "name": "jdk-1_5_0_16-solaris-i586.sh", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-solaris-sparc.sh", "name": "jdk-1_5_0_16-solaris-sparc.sh", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-solaris-sparcv9.sh", "name": "jdk-1_5_0_16-solaris-sparcv9.sh", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-windows-amd64.exe", "name": "jdk-1_5_0_16-windows-amd64.exe", "title": "Java Development Kit 5.0 Update 16 "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_16/jdk-1_5_0_16-windows-i586-p.exe", "name": "jdk-1_5_0_16-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_16-oth-JPR", "title": "Java SE Development Kit 5.0u16"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-linux-amd64.bin", "name": "jdk-1_5_0_15-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-linux-i586.bin", "name": "jdk-1_5_0_15-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-solaris-amd64.sh", "name": "jdk-1_5_0_15-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-solaris-i586.sh", "name": "jdk-1_5_0_15-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-solaris-sparc.sh", "name": "jdk-1_5_0_15-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-solaris-sparcv9.sh", "name": "jdk-1_5_0_15-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-windows-amd64.exe", "name": "jdk-1_5_0_15-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/5.0_15/jdk-1_5_0_15-windows-i586-p.exe", "name": "jdk-1_5_0_15-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_15-oth-JPR", "title": "Java SE Development Kit 5.0 Update 15"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-linux-amd64.bin", "name": "jdk-1_5_0_14-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-linux-i586.bin", "name": "jdk-1_5_0_14-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-solaris-amd64.sh", "name": "jdk-1_5_0_14-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-solaris-i586.sh", "name": "jdk-1_5_0_14-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-solaris-sparc.sh", "name": "jdk-1_5_0_14-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-solaris-sparcv9.sh", "name": "jdk-1_5_0_14-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-windows-amd64.exe", "name": "jdk-1_5_0_14-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_14/jdk-1_5_0_14-windows-i586-p.exe", "name": "jdk-1_5_0_14-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_14-oth-JPR", "title": "Java Development Kit 5.0 Update 14"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-linux-amd64.bin", "name": "jdk-1_5_0_13-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-linux-i586.bin", "name": "jdk-1_5_0_13-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-solaris-amd64.sh", "name": "jdk-1_5_0_13-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-solaris-i586.sh", "name": "jdk-1_5_0_13-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-solaris-sparc.sh", "name": "jdk-1_5_0_13-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-solaris-sparcv9.sh", "name": "jdk-1_5_0_13-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-windows-amd64.exe", "name": "jdk-1_5_0_13-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_13/jdk-1_5_0_13-windows-i586-p.exe", "name": "jdk-1_5_0_13-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_13-oth-JPR", "title": "Java Development Kit 5.0 Update 13"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-linux-amd64.bin", "name": "jdk-1_5_0_12-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-linux-i586.bin", "name": "jdk-1_5_0_12-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-solaris-amd64.sh", "name": "jdk-1_5_0_12-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-solaris-i586.sh", "name": "jdk-1_5_0_12-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-solaris-sparc.sh", "name": "jdk-1_5_0_12-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-solaris-sparcv9.sh", "name": "jdk-1_5_0_12-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-windows-amd64.exe", "name": "jdk-1_5_0_12-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_12/jdk-1_5_0_12-windows-i586-p.exe", "name": "jdk-1_5_0_12-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_12-oth-JPR", "title": "Java Development Kit 5.0 Update 12"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-linux-amd64.bin", "name": "jdk-1_5_0_11-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-linux-i586.bin", "name": "jdk-1_5_0_11-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-solaris-amd64.sh", "name": "jdk-1_5_0_11-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-solaris-i586.sh", "name": "jdk-1_5_0_11-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-solaris-sparc.sh", "name": "jdk-1_5_0_11-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-solaris-sparcv9.sh", "name": "jdk-1_5_0_11-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-windows-amd64.exe", "name": "jdk-1_5_0_11-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_11/jdk-1_5_0_11-windows-i586-p.exe", "name": "jdk-1_5_0_11-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_11-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 11"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-linux-amd64.bin", "name": "jdk-1_5_0_10-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-linux-i586.bin", "name": "jdk-1_5_0_10-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-solaris-amd64.sh", "name": "jdk-1_5_0_10-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-solaris-i586.sh", "name": "jdk-1_5_0_10-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-solaris-sparc.sh", "name": "jdk-1_5_0_10-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-solaris-sparcv9.sh", "name": "jdk-1_5_0_10-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-windows-amd64.exe", "name": "jdk-1_5_0_10-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_10/jdk-1_5_0_10-windows-i586-p.exe", "name": "jdk-1_5_0_10-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_10-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 10"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-linux-amd64.bin", "name": "jdk-1_5_0_09-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-linux-i586.bin", "name": "jdk-1_5_0_09-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-solaris-amd64.sh", "name": "jdk-1_5_0_09-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-solaris-i586.sh", "name": "jdk-1_5_0_09-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-solaris-sparc.sh", "name": "jdk-1_5_0_09-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-solaris-sparcv9.sh", "name": "jdk-1_5_0_09-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-windows-amd64.exe", "name": "jdk-1_5_0_09-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_09_b03/jdk-1_5_0_09-windows-i586-p.exe", "name": "jdk-1_5_0_09-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_09-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 9"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-linux-amd64.bin", "name": "jdk-1_5_0_08-linux-amd64.bin", "title": "Linux x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-linux-i586.bin", "name": "jdk-1_5_0_08-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-solaris-amd64.sh", "name": "jdk-1_5_0_08-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-solaris-i586.sh", "name": "jdk-1_5_0_08-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-solaris-sparc.sh", "name": "jdk-1_5_0_08-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-solaris-sparcv9.sh", "name": "jdk-1_5_0_08-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-windows-amd64.exe", "name": "jdk-1_5_0_08-windows-amd64.exe", "title": "Windows x64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_08/jdk-1_5_0_08-windows-i586-p.exe", "name": "jdk-1_5_0_08-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_08-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 8"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-linux-amd64.bin", "name": "jdk-1_5_0_07-linux-amd64.bin", "title": "Linux AMD64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-linux-i586.bin", "name": "jdk-1_5_0_07-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-solaris-amd64.sh", "name": "jdk-1_5_0_07-solaris-amd64.sh", "title": "Solaris x64 self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-solaris-i586.sh", "name": "jdk-1_5_0_07-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-solaris-sparc.sh", "name": "jdk-1_5_0_07-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-solaris-sparcv9.sh", "name": "jdk-1_5_0_07-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-windows-amd64.exe", "name": "jdk-1_5_0_07-windows-amd64.exe", "title": "Windows AMD64 executable (use 32-bit version for applet and Java Web Start support) "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_07/jdk-1_5_0_07-windows-i586-p.exe", "name": "jdk-1_5_0_07-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_07-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 7"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-linux-amd64.bin", "name": "jdk-1_5_0_06-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-linux-i586.bin", "name": "jdk-1_5_0_06-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-solaris-amd64.sh", "name": "jdk-1_5_0_06-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-solaris-i586.sh", "name": "jdk-1_5_0_06-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-solaris-sparc.sh", "name": "jdk-1_5_0_06-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-solaris-sparcv9.sh", "name": "jdk-1_5_0_06-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-windows-amd64.exe", "name": "jdk-1_5_0_06-windows-amd64.exe", "title": "Windows AMD64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06/jdk-1_5_0_06-windows-i586-p.exe", "name": "jdk-1_5_0_06-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_06-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 6"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-linux-amd64-23_aug_2005.bin", "name": "jdk-1_5_0_06-ea-bin-b02-linux-amd64-23_aug_2005.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-linux-i586-23_aug_2005.bin", "name": "jdk-1_5_0_06-ea-bin-b02-linux-i586-23_aug_2005.bin", "title": "Linux Installation "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-solaris-amd64-23_aug_2005.sh", "name": "jdk-1_5_0_06-ea-bin-b02-solaris-amd64-23_aug_2005.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-solaris-i586-23_aug_2005.sh", "name": "jdk-1_5_0_06-ea-bin-b02-solaris-i586-23_aug_2005.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-solaris-sparc-23_aug_2005.sh", "name": "jdk-1_5_0_06-ea-bin-b02-solaris-sparc-23_aug_2005.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-solaris-sparcv9-23_aug_2005.sh", "name": "jdk-1_5_0_06-ea-bin-b02-solaris-sparcv9-23_aug_2005.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-windows-amd64-23_aug_2005.exe", "name": "jdk-1_5_0_06-ea-bin-b02-windows-amd64-23_aug_2005.exe", "title": "Windows AMD64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_06b02-cap/jdk-1_5_0_06-ea-bin-b02-windows-i586-p-23_aug_2005.exe", "name": "jdk-1_5_0_06-ea-bin-b02-windows-i586-p-23_aug_2005.exe", "title": "Windows Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_06-b02-cap-oth-JPR", "title": "Java(TM) SDK, Standard Edition, Compatibility and Performance (CAP) 5.0_06 Build 2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-linux-amd64.bin", "name": "jdk-1_5_0_05-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-linux-i586.bin", "name": "jdk-1_5_0_05-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-solaris-amd64.sh", "name": "jdk-1_5_0_05-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-solaris-i586.sh", "name": "jdk-1_5_0_05-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-solaris-sparc.sh", "name": "jdk-1_5_0_05-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-solaris-sparcv9.sh", "name": "jdk-1_5_0_05-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-windows-amd64.exe", "name": "jdk-1_5_0_05-windows-amd64.exe", "title": "Windows AMD64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_05/jdk-1_5_0_05-windows-i586-p.exe", "name": "jdk-1_5_0_05-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_05-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 5"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-linux-amd64.bin", "name": "jdk-1_5_0_04-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-linux-i586.bin", "name": "jdk-1_5_0_04-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-solaris-amd64.sh", "name": "jdk-1_5_0_04-solaris-amd64.sh", "title": "Solaris x64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-solaris-i586.sh", "name": "jdk-1_5_0_04-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-solaris-sparc.sh", "name": "jdk-1_5_0_04-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-solaris-sparcv9.sh", "name": "jdk-1_5_0_04-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-windows-amd64.exe", "name": "jdk-1_5_0_04-windows-amd64.exe", "title": "Windows AMD64 executable "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_04/jdk-1_5_0_04-windows-i586-p.exe", "name": "jdk-1_5_0_04-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_04-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 4"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-linux-amd64.bin", "name": "jdk-1_5_0_03-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-linux-i586.bin", "name": "jdk-1_5_0_03-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-solaris-amd64.sh", "name": "jdk-1_5_0_03-solaris-amd64.sh", "title": "Solaris AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-solaris-i586.sh", "name": "jdk-1_5_0_03-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-solaris-sparc.sh", "name": "jdk-1_5_0_03-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-solaris-sparcv9.sh", "name": "jdk-1_5_0_03-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_03/jdk-1_5_0_03-windows-i586-p.exe", "name": "jdk-1_5_0_03-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_03-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 3"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-linux-amd64.bin", "name": "jdk-1_5_0_02-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-linux-i586.bin", "name": "jdk-1_5_0_02-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-solaris-amd64.sh", "name": "jdk-1_5_0_02-solaris-amd64.sh", "title": "Solaris AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-solaris-i586.sh", "name": "jdk-1_5_0_02-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-solaris-sparc.sh", "name": "jdk-1_5_0_02-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-solaris-sparcv9.sh", "name": "jdk-1_5_0_02-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_02/jdk-1_5_0_02-windows-i586-p.exe", "name": "jdk-1_5_0_02-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_02-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-linux-amd64.bin", "name": "jdk-1_5_0_01-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-linux-i586.bin", "name": "jdk-1_5_0_01-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-solaris-i586.sh", "name": "jdk-1_5_0_01-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-solaris-sparc.sh", "name": "jdk-1_5_0_01-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-solaris-sparcv9.sh", "name": "jdk-1_5_0_01-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0_01/jdk-1_5_0_01-windows-i586-p.exe", "name": "jdk-1_5_0_01-windows-i586-p.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0_01-oth-JPR", "title": "J2SE(TM) Development Kit 5.0 Update 1"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-linux-amd64.bin", "name": "jdk-1_5_0-linux-amd64.bin", "title": "Linux AMD64 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-linux-i586.bin", "name": "jdk-1_5_0-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-solaris-i586.sh", "name": "jdk-1_5_0-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-solaris-sparc.sh", "name": "jdk-1_5_0-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-solaris-sparcv9.sh", "name": "jdk-1_5_0-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/jdk/1.5.0/jdk-1_5_0-windows-i586.exe", "name": "jdk-1_5_0-windows-i586.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "jdk-1.5.0-oth-JPR", "title": "J2SE(TM) Development Kit 5.0"}]}, {"name": "JDK 1.4", "releases": [{"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_30-b04/j2sdk-1_4_2_30-solaris-amd64.sh", "name": "j2sdk-1_4_2_30-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_30 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_30-b04/j2sdk-1_4_2_30-solaris-i586.sh", "name": "j2sdk-1_4_2_30-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_30 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_30-b04/j2sdk-1_4_2_30-solaris-sparc.sh", "name": "j2sdk-1_4_2_30-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_30 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_30-b04/j2sdk-1_4_2_30-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_30-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_30 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_30-sol-JPR", "title": "Java SE Development Kit 1.4.2_30"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_29-b01/j2sdk-1_4_2_29-solaris-amd64.sh", "name": "j2sdk-1_4_2_29-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_29 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_29-b01/j2sdk-1_4_2_29-solaris-i586.sh", "name": "j2sdk-1_4_2_29-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_29 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_29-b01/j2sdk-1_4_2_29-solaris-sparc.sh", "name": "j2sdk-1_4_2_29-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_29 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_29-b01/j2sdk-1_4_2_29-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_29-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_29 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_29-sol-JPR", "title": "Java SE Development Kit 1.4.2_29"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_28-b03/j2sdk-1_4_2_28-solaris-amd64.sh", "name": "j2sdk-1_4_2_28-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_28 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_28-b03/j2sdk-1_4_2_28-solaris-i586.sh", "name": "j2sdk-1_4_2_28-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_28 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_28-b03/j2sdk-1_4_2_28-solaris-sparc.sh", "name": "j2sdk-1_4_2_28-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_28 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_28-b03/j2sdk-1_4_2_28-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_28-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_28 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_28-sol-JPR", "title": "Java SE Development Kit 1.4.2_28"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_27-b03/j2sdk-1_4_2_27-solaris-amd64.sh", "name": "j2sdk-1_4_2_27-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_27 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_27-b03/j2sdk-1_4_2_27-solaris-i586.sh", "name": "j2sdk-1_4_2_27-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_27 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_27-b03/j2sdk-1_4_2_27-solaris-sparc.sh", "name": "j2sdk-1_4_2_27-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_27 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_27-b03/j2sdk-1_4_2_27-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_27-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_27 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_27-sol-JPR", "title": "Java SE Development Kit 1.4.2_27"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_26-b03/j2sdk-1_4_2_26-solaris-amd64.sh", "name": "j2sdk-1_4_2_26-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_26 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_26-b03/j2sdk-1_4_2_26-solaris-i586.sh", "name": "j2sdk-1_4_2_26-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_26 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_26-b03/j2sdk-1_4_2_26-solaris-sparc.sh", "name": "j2sdk-1_4_2_26-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_26 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_26-b03/j2sdk-1_4_2_26-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_26-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_26 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_26-sol-JPR", "title": "Java SE Development Kit 1.4.2_26"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_25/j2sdk-1_4_2_25-solaris-amd64.sh", "name": "j2sdk-1_4_2_25-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_25 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_25/j2sdk-1_4_2_25-solaris-i586.sh", "name": "j2sdk-1_4_2_25-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_25 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_25/j2sdk-1_4_2_25-solaris-sparc.sh", "name": "j2sdk-1_4_2_25-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_25 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_25/j2sdk-1_4_2_25-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_25-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_25 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_25-sol-JPR", "title": "Java SE Development Kit 1.4.2_25"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_24/j2sdk-1_4_2_24-solaris-amd64.sh", "name": "j2sdk-1_4_2_24-solaris-amd64.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_24 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_24/j2sdk-1_4_2_24-solaris-i586.sh", "name": "j2sdk-1_4_2_24-solaris-i586.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_24 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_24/j2sdk-1_4_2_24-solaris-sparc.sh", "name": "j2sdk-1_4_2_24-solaris-sparc.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_24 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_24/j2sdk-1_4_2_24-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_24-solaris-sparcv9.sh", "title": "Java 2 Software Development Kit (J2SDK) Standard Edition for Solaris 1.4.2_24 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_24-sol-JPR", "title": "Java SE Development Kit 1.4.2_24 for Solaris"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_23/j2sdk-1_4_2_23-solaris-amd64.sh", "name": "j2sdk-1_4_2_23-solaris-amd64.sh", "title": "Java SE Development Kit 1.4.2_23 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_23/j2sdk-1_4_2_23-solaris-i586.sh", "name": "j2sdk-1_4_2_23-solaris-i586.sh", "title": "Java SE Development Kit 1.4.2_23 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_23/j2sdk-1_4_2_23-solaris-sparc.sh", "name": "j2sdk-1_4_2_23-solaris-sparc.sh", "title": "Java SE Development Kit 1.4.2_23 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_23/j2sdk-1_4_2_23-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_23-solaris-sparcv9.sh", "title": "Java SE Development Kit 1.4.2_23 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_23-oth-JPR", "title": "Java SE Development Kit 1.4.2_23"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_22/j2sdk-1_4_2_22-solaris-amd64.sh", "name": "j2sdk-1_4_2_22-solaris-amd64.sh", "title": "Java SE Development Kit 1.4.2_22 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_22/j2sdk-1_4_2_22-solaris-i586.sh", "name": "j2sdk-1_4_2_22-solaris-i586.sh", "title": "Java SE Development Kit 1.4.2_22 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_22/j2sdk-1_4_2_22-solaris-sparc.sh", "name": "j2sdk-1_4_2_22-solaris-sparc.sh", "title": "Java SE Development Kit 1.4.2_22 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_22/j2sdk-1_4_2_22-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_22-solaris-sparcv9.sh", "title": "Java SE Development Kit 1.4.2_22 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_22-oth-JPR", "title": "Java SE Development Kit 1.4.2_22"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-linux-i586.bin", "name": "j2sdk-1_4_2_19-linux-i586.bin", "title": "Java SE Development Kit 1.4.2_19 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-linux-ia64.bin", "name": "j2sdk-1_4_2_19-linux-ia64.bin", "title": "Java SE Development Kit 1.4.2_19 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-solaris-i586.sh", "name": "j2sdk-1_4_2_19-solaris-i586.sh", "title": "Java SE Development Kit 1.4.2_19 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-solaris-sparc.sh", "name": "j2sdk-1_4_2_19-solaris-sparc.sh", "title": "Java SE Development Kit 1.4.2_19 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_19-solaris-sparcv9.sh", "title": "Java SE Development Kit 1.4.2_19 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-windows-i586-p.exe", "name": "j2sdk-1_4_2_19-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_19/j2sdk-1_4_2_19-windows-ia64.exe", "name": "j2sdk-1_4_2_19-windows-ia64.exe", "title": "Java SE Development Kit 1.4.2_19 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_19-oth-JPR", "title": "Java SE Development Kit 1.4.2_19"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-linux-i586.bin", "name": "j2sdk-1_4_2_18-linux-i586.bin", "title": "Java SE Development Kit 1.4.2_18 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-linux-ia64.bin", "name": "j2sdk-1_4_2_18-linux-ia64.bin", "title": "Java SE Development Kit 1.4.2_18 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-solaris-i586.sh", "name": "j2sdk-1_4_2_18-solaris-i586.sh", "title": "Java SE Development Kit 1.4.2_18 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-solaris-sparc.sh", "name": "j2sdk-1_4_2_18-solaris-sparc.sh", "title": "Java SE Development Kit 1.4.2_18 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_18-solaris-sparcv9.sh", "title": "Java SE Development Kit 1.4.2_18 "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-windows-i586-p.exe", "name": "j2sdk-1_4_2_18-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_18/j2sdk-1_4_2_18-windows-ia64.exe", "name": "j2sdk-1_4_2_18-windows-ia64.exe", "title": "Java SE Development Kit 1.4.2_18 "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_18-oth-JPR", "title": "Java SE Development Kit 1.4.2_18"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-linux-i586.bin", "name": "j2sdk-1_4_2_17-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-linux-ia64.bin", "name": "j2sdk-1_4_2_17-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-solaris-i586.sh", "name": "j2sdk-1_4_2_17-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-solaris-sparc.sh", "name": "j2sdk-1_4_2_17-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_17-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-windows-i586-p.exe", "name": "j2sdk-1_4_2_17-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/j2sdk-1_4_2_17-windows-ia64.exe", "name": "j2sdk-1_4_2_17-windows-ia64.exe", "title": "Windows Offline Installation "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_17-oth-JPR", "title": "Java SE Development Kit 1.4.2_17"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-linux-i586.bin", "name": "j2sdk-1_4_2_16-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-linux-ia64.bin", "name": "j2sdk-1_4_2_16-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-solaris-i586.sh", "name": "j2sdk-1_4_2_16-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-solaris-sparc.sh", "name": "j2sdk-1_4_2_16-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_16-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-windows-i586-p.exe", "name": "j2sdk-1_4_2_16-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_16/j2sdk-1_4_2_16-windows-ia64.exe", "name": "j2sdk-1_4_2_16-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_16-oth-JPR", "title": "Java SE Development Kit 1.4.2_16"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-linux-i586.bin", "name": "j2sdk-1_4_2_15-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-linux-ia64.bin", "name": "j2sdk-1_4_2_15-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-solaris-i586.sh", "name": "j2sdk-1_4_2_15-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-solaris-sparc.sh", "name": "j2sdk-1_4_2_15-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_15-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-windows-i586-p.exe", "name": "j2sdk-1_4_2_15-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_15/j2sdk-1_4_2_15-windows-ia64.exe", "name": "j2sdk-1_4_2_15-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_15-oth-JPR", "title": "Java SE Development Kit 1.4.2_15"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-linux-i586.bin", "name": "j2sdk-1_4_2_14-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-linux-ia64.bin", "name": "j2sdk-1_4_2_14-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-solaris-i586.sh", "name": "j2sdk-1_4_2_14-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-solaris-sparc.sh", "name": "j2sdk-1_4_2_14-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_14-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-windows-i586-p.exe", "name": "j2sdk-1_4_2_14-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_14/j2sdk-1_4_2_14-windows-ia64.exe", "name": "j2sdk-1_4_2_14-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_14-oth-JPR", "title": "Java SE Development Kit 1.4.2_14"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-linux-i586.bin", "name": "j2sdk-1_4_2_13-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-linux-ia64.bin", "name": "j2sdk-1_4_2_13-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-solaris-i586.sh", "name": "j2sdk-1_4_2_13-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-solaris-sparc.sh", "name": "j2sdk-1_4_2_13-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_13-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-windows-i586-p.exe", "name": "j2sdk-1_4_2_13-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_13/j2sdk-1_4_2_13-windows-ia64.exe", "name": "j2sdk-1_4_2_13-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_13-oth-JPR", "title": "Java SE Development Kit 1.4.2_13"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-linux-i586.bin", "name": "j2sdk-1_4_2_12-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-linux-ia64.bin", "name": "j2sdk-1_4_2_12-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-solaris-i586.sh", "name": "j2sdk-1_4_2_12-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-solaris-sparc.sh", "name": "j2sdk-1_4_2_12-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_12-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-windows-i586-p.exe", "name": "j2sdk-1_4_2_12-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_12/j2sdk-1_4_2_12-windows-ia64.exe", "name": "j2sdk-1_4_2_12-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_12-oth-JPR", "title": "Java SE Development Kit 1.4.2_12"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-linux-i586.bin", "name": "j2sdk-1_4_2_11-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-linux-ia64.bin", "name": "j2sdk-1_4_2_11-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-solaris-i586.sh", "name": "j2sdk-1_4_2_11-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-solaris-sparc.sh", "name": "j2sdk-1_4_2_11-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_11-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-windows-i586-p.exe", "name": "j2sdk-1_4_2_11-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_11/j2sdk-1_4_2_11-windows-ia64.exe", "name": "j2sdk-1_4_2_11-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_11-oth-JPR", "title": "Java SE Development Kit 1.4.2_11"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-linux-i586.bin", "name": "j2sdk-1_4_2_10-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-linux-ia64.bin", "name": "j2sdk-1_4_2_10-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-solaris-i586.sh", "name": "j2sdk-1_4_2_10-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-solaris-sparc.sh", "name": "j2sdk-1_4_2_10-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_10-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-windows-i586-p.exe", "name": "j2sdk-1_4_2_10-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_10/j2sdk-1_4_2_10-windows-ia64.exe", "name": "j2sdk-1_4_2_10-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_10-oth-JPR", "title": "Java SE Development Kit 1.4.2_10"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-linux-i586.bin", "name": "j2sdk-1_4_2_09-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-linux-ia64.bin", "name": "j2sdk-1_4_2_09-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-solaris-i586.sh", "name": "j2sdk-1_4_2_09-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-solaris-sparc.sh", "name": "j2sdk-1_4_2_09-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_09-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-windows-i586-p.exe", "name": "j2sdk-1_4_2_09-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_09/j2sdk-1_4_2_09-windows-ia64.exe", "name": "j2sdk-1_4_2_09-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_09-oth-JPR", "title": "Java SE Development Kit 1.4.2_09"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-linux-i586.bin", "name": "j2sdk-1_4_2_08-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-linux-ia64.bin", "name": "j2sdk-1_4_2_08-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-solaris-i586.sh", "name": "j2sdk-1_4_2_08-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-solaris-sparc.sh", "name": "j2sdk-1_4_2_08-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_08-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-windows-i586-p.exe", "name": "j2sdk-1_4_2_08-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_08/j2sdk-1_4_2_08-windows-ia64.exe", "name": "j2sdk-1_4_2_08-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_08-oth-JPR", "title": "Java SE Development Kit 1.4.2_08"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-linux-i586.bin", "name": "j2sdk-1_4_2_07-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-linux-ia64.bin", "name": "j2sdk-1_4_2_07-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-solaris-i586.sh", "name": "j2sdk-1_4_2_07-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-solaris-sparc.sh", "name": "j2sdk-1_4_2_07-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_07-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-windows-i586-p.exe", "name": "j2sdk-1_4_2_07-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_07/j2sdk-1_4_2_07-windows-ia64.exe", "name": "j2sdk-1_4_2_07-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_07-oth-JPR", "title": "Java SE Development Kit 1.4.2_07"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-linux-i586.bin", "name": "j2sdk-1_4_2_06-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-linux-ia64.bin", "name": "j2sdk-1_4_2_06-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-solaris-i586.sh", "name": "j2sdk-1_4_2_06-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-solaris-sparc.sh", "name": "j2sdk-1_4_2_06-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_06-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-windows-i586-p.exe", "name": "j2sdk-1_4_2_06-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_06/j2sdk-1_4_2_06-windows-ia64.exe", "name": "j2sdk-1_4_2_06-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_06-oth-JPR", "title": "Java SE Development Kit 1.4.2_06"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-linux-i586.bin", "name": "j2sdk-1_4_2_05-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-linux-ia64.bin", "name": "j2sdk-1_4_2_05-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-solaris-i586.sh", "name": "j2sdk-1_4_2_05-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-solaris-sparc.sh", "name": "j2sdk-1_4_2_05-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_05-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-windows-i586-p.exe", "name": "j2sdk-1_4_2_05-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_05/j2sdk-1_4_2_05-windows-ia64.exe", "name": "j2sdk-1_4_2_05-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_05-oth-JPR", "title": "Java SE Development Kit 1.4.2_05"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-linux-i586.bin", "name": "j2sdk-1_4_2_04-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-linux-ia64.bin", "name": "j2sdk-1_4_2_04-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-solaris-i586.sh", "name": "j2sdk-1_4_2_04-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-solaris-sparc.sh", "name": "j2sdk-1_4_2_04-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_04-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-windows-i586-p.exe", "name": "j2sdk-1_4_2_04-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_04/j2sdk-1_4_2_04-windows-ia64.exe", "name": "j2sdk-1_4_2_04-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_04-oth-JPR", "title": "Java SE Development Kit 1.4.2_04"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-linux-i586.bin", "name": "j2sdk-1_4_2_03-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-linux-ia64.bin", "name": "j2sdk-1_4_2_03-linux-ia64.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-solaris-i586.sh", "name": "j2sdk-1_4_2_03-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-solaris-sparc.sh", "name": "j2sdk-1_4_2_03-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_03-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-windows-i586-p.exe", "name": "j2sdk-1_4_2_03-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_03/j2sdk-1_4_2_03-windows-ia64.exe", "name": "j2sdk-1_4_2_03-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.2_03-oth-JPR", "title": "Java SE Development Kit 1.4.2_03"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_07/j2sdk-1_4_1_07-linux-i586.bin", "name": "j2sdk-1_4_1_07-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_07/j2sdk-1_4_1_07-solaris-i586.sh", "name": "j2sdk-1_4_1_07-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_07/j2sdk-1_4_1_07-solaris-sparc.sh", "name": "j2sdk-1_4_1_07-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_07/j2sdk-1_4_1_07-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_07-solaris-sparcv9.sh", "title": "64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_07/j2sdk-1_4_1_07-windows-i586.exe", "name": "j2sdk-1_4_1_07-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.1_07-oth-JPR", "title": "Java SE Development Kit 1.4.1_07"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_06/j2sdk-1_4_1_06-linux-i586.bin", "name": "j2sdk-1_4_1_06-linux-i586.bin", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_06/j2sdk-1_4_1_06-solaris-i586.sh", "name": "j2sdk-1_4_1_06-solaris-i586.sh", "title": "self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_06/j2sdk-1_4_1_06-solaris-sparc.sh", "name": "j2sdk-1_4_1_06-solaris-sparc.sh", "title": "32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_06/j2sdk-1_4_1_06-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_06-solaris-sparcv9.sh", "title": "64-bit self-extracting file * "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_06/j2sdk-1_4_1_06-windows-i586.exe", "name": "j2sdk-1_4_1_06-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "j2sdk-1.4.1_06-oth-JPR", "title": "Java SE Development Kit 1.4.1_06"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-linux-i586.bin", "name": "j2sdk-1_4_2_02-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-linux-ia64.bin", "name": "j2sdk-1_4_2_02-linux-ia64.bin", "title": "Linux 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-solaris-i586.sh", "name": "j2sdk-1_4_2_02-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-solaris-sparc.sh", "name": "j2sdk-1_4_2_02-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_02-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-windows-i586-p.exe", "name": "j2sdk-1_4_2_02-windows-i586-p.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_02/j2sdk-1_4_2_02-windows-ia64.exe", "name": "j2sdk-1_4_2_02-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7741-j2sdk-1.4.2_02-oth-JPR", "title": "Java SE Development Kit 1.4.2_02"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-linux-i586.bin", "name": "j2sdk-1_4_2_01-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-linux-ia64.bin", "name": "j2sdk-1_4_2_01-linux-ia64.bin", "title": "Linux 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-solaris-i586.sh", "name": "j2sdk-1_4_2_01-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-solaris-sparc.sh", "name": "j2sdk-1_4_2_01-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-solaris-sparcv9.sh", "name": "j2sdk-1_4_2_01-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-windows-i586.exe", "name": "j2sdk-1_4_2_01-windows-i586.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2_01/j2sdk-1_4_2_01-windows-ia64.exe", "name": "j2sdk-1_4_2_01-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7639-j2sdk-1.4.2_01-oth-JPR", "title": "Java SE Development Kit 1.4.2_01"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_05/j2sdk-1_4_1_05-linux-i586.bin", "name": "j2sdk-1_4_1_05-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_05/j2sdk-1_4_1_05-solaris-i586.sh", "name": "j2sdk-1_4_1_05-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_05/j2sdk-1_4_1_05-solaris-sparc.sh", "name": "j2sdk-1_4_1_05-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_05/j2sdk-1_4_1_05-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_05-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_05/j2sdk-1_4_1_05-windows-i586.exe", "name": "j2sdk-1_4_1_05-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7637-j2sdk-1.4.1_05-oth-JPR", "title": "Java SE Development Kit 1.4.1_05"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_04/j2sdk-1_4_1_04-linux-i586.bin", "name": "j2sdk-1_4_1_04-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_04/j2sdk-1_4_1_04-solaris-i586.sh", "name": "j2sdk-1_4_1_04-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_04/j2sdk-1_4_1_04-solaris-sparc.sh", "name": "j2sdk-1_4_1_04-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_04/j2sdk-1_4_1_04-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_04-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_04/j2sdk-1_4_1_04-windows-i586.exe", "name": "j2sdk-1_4_1_04-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7533-j2sdk-1.4.1_04-oth-JPR", "title": "Java SE Development Kit 1.4.1_04"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-doc.zip", "name": "j2sdk-1_4_2-doc.zip", "title": "J2SE 1.4.2 Documentation "}], "licpath": "http://download.oracle.com/otn-pub/java/licenses/J2SE 1.4.2.txt", "lictitle": "JDK Documentation License Agreement", "name": "7502-j2sdk-1.4.2-doc-oth-JPR", "title": "Java SE Development Kit Documentation 1.4.2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-linux-i586.bin", "name": "j2sdk-1_4_2-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-linux-ia64.bin", "name": "j2sdk-1_4_2-linux-ia64.bin", "title": "Linux 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-solaris-i586.sh", "name": "j2sdk-1_4_2-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-solaris-sparc.sh", "name": "j2sdk-1_4_2-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-solaris-sparcv9.sh", "name": "j2sdk-1_4_2-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-windows-i586.exe", "name": "j2sdk-1_4_2-windows-i586.exe", "title": "Windows Offline Installation "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.2/j2sdk-1_4_2-windows-ia64.exe", "name": "j2sdk-1_4_2-windows-ia64.exe", "title": "Windows 64-bit "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7501-j2sdk-1.4.2-oth-JPR", "title": "Java SE Development Kit 1.4.2"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_03/j2sdk-1_4_1_03-linux-i586.bin", "name": "j2sdk-1_4_1_03-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_03/j2sdk-1_4_1_03-solaris-i586.sh", "name": "j2sdk-1_4_1_03-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_03/j2sdk-1_4_1_03-solaris-sparc.sh", "name": "j2sdk-1_4_1_03-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_03/j2sdk-1_4_1_03-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_03-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_03/j2sdk-1_4_1_03-windows-i586.exe", "name": "j2sdk-1_4_1_03-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7405-j2sdk-1.4.1_03-oth-JPR", "title": "Java SE Development Kit 1.4.1_03"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_04/j2sdk-1_4_0_04-linux-i586.bin", "name": "j2sdk-1_4_0_04-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_04/j2sdk-1_4_0_04-solaris-i586.sh", "name": "j2sdk-1_4_0_04-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_04/j2sdk-1_4_0_04-solaris-sparc.sh", "name": "j2sdk-1_4_0_04-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_04/j2sdk-1_4_0_04-solaris-sparcv9.sh", "name": "j2sdk-1_4_0_04-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_04/j2sdk-1_4_0_04-windows-i586.exe", "name": "j2sdk-1_4_0_04-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7225-j2sdk-1.4.0_04-oth-JPR", "title": "Java SE Development Kit 1.4.0_04"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_02/j2sdk-1_4_1_02-linux-i586.bin", "name": "j2sdk-1_4_1_02-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_02/j2sdk-1_4_1_02-solaris-i586.sh", "name": "j2sdk-1_4_1_02-solaris-i586.sh", "title": "Solaris x86 self-extracting file (Solaris 7, Solaris 8) "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_02/j2sdk-1_4_1_02-solaris-sparc.sh", "name": "j2sdk-1_4_1_02-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_02/j2sdk-1_4_1_02-solaris-sparcv9.sh", "name": "j2sdk-1_4_1_02-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1_02/j2sdk-1_4_1_02-windows-i586.exe", "name": "j2sdk-1_4_1_02-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7190-j2sdk-1.4.1_02-oth-JPR", "title": "Java SE Development Kit 1.4.1_02"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-doc-ja.zip", "name": "j2sdk-1_4_0-doc-ja.zip", "title": "J2SE 1.4 Documentation, Japanese "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-doc.zip", "name": "j2sdk-1_4_0-doc.zip", "title": "J2SE 1.4 Documentation, English "}], "licpath": "http://download.oracle.com/otn/java/licenses/J2SE 1.4.0.txt", "lictitle": "Java SE Documentation License Agreement", "name": "7114-j2sdk-1.4.0-doc-oth-JPR", "title": "Java SE Development Kit Documentation 1.4.0"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_01/j2sdk-1_4_0_01-linux-i586.bin", "name": "j2sdk-1_4_0_01-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_01/j2sdk-1_4_0_01-solaris-i586.sh", "name": "j2sdk-1_4_0_01-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_01/j2sdk-1_4_0_01-solaris-sparc.sh", "name": "j2sdk-1_4_0_01-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_01/j2sdk-1_4_0_01-solaris-sparcv9.sh", "name": "j2sdk-1_4_0_01-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_01/j2sdk-1_4_0_01-windows-i586.exe", "name": "j2sdk-1_4_0_01-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7093-j2sdk-1.4.0_01-oth-JPR", "title": "Java SE Development Kit 1.4.0_01"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_03/j2sdk-1_4_0_03-linux-i586.bin", "name": "j2sdk-1_4_0_03-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_03/j2sdk-1_4_0_03-solaris-i586.sh", "name": "j2sdk-1_4_0_03-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_03/j2sdk-1_4_0_03-solaris-sparc.sh", "name": "j2sdk-1_4_0_03-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_03/j2sdk-1_4_0_03-solaris-sparcv9.sh", "name": "j2sdk-1_4_0_03-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_03/j2sdk-1_4_0_03-windows-i586.exe", "name": "j2sdk-1_4_0_03-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7087-j2sdk-1.4.0_03-oth-JPR", "title": "Java SE Development Kit 1.4.0_03"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-linux-i386.bin", "name": "j2sdk-1_4_0-linux-i386.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-solsparc.sh", "name": "j2sdk-1_4_0-solsparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-solsparcv9.sh", "name": "j2sdk-1_4_0-solsparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-solx86.sh", "name": "j2sdk-1_4_0-solx86.sh", "title": "Solaris Intel self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0/j2sdk-1_4_0-win.exe", "name": "j2sdk-1_4_0-win.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7074-j2sdk-1.4.0-oth-JPR", "title": "Java SE Development Kit 1.4.0"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-linux-ia64.bin", "name": "j2sdk-1_4_1-linux-ia64.bin", "title": "Linux 64-bit (Itanium) self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-windows-ia64.tar", "name": "j2sdk-1_4_1-windows-ia64.tar", "title": "Windows 64-bit (Itanium) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7027-j2sdk-1.4.1-ia64-JPR", "title": "Java SE Development Kit 1.4.1-ia64"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-doc.zip", "name": "j2sdk-1_4_1-doc.zip", "title": "J2SE 1.4.1 Documentation "}], "licpath": "http://download.oracle.com/otn-pub/java/licenses/J2SE 1.4.1.txt", "lictitle": "Java SE Documentation License Agreement", "name": "7020-j2sdk-1.4.1-doc-oth-JPR", "title": "Java SE Development Kit Documentation 1.4.1"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-linux-i586.bin", "name": "j2sdk-1_4_1-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-solaris-i586.sh", "name": "j2sdk-1_4_1-solaris-i586.sh", "title": "Solaris x86 self-extracting file (Solaris 7, Solaris 8) "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-solaris-sparc.sh", "name": "j2sdk-1_4_1-solaris-sparc.sh", "title": "Solaris SPARC self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-solaris-sparcv9.sh", "name": "j2sdk-1_4_1-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.1/j2sdk-1_4_1-windows-i586.exe", "name": "j2sdk-1_4_1-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7018-j2sdk-1.4.1-oth-JPR", "title": "Java SE Development Kit 1.4.1"}, {"files": [{"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-linux-i586.bin", "name": "j2sdk-1_4_0_02-linux-i586.bin", "title": "Linux self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-linux-i586.tar.gz", "name": "j2sdk-1_4_0_02-linux-i586.tar.gz", "title": "Java SE Development Kit "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-solaris-i586.sh", "name": "j2sdk-1_4_0_02-solaris-i586.sh", "title": "Solaris x86 self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-solaris-sparc.sh", "name": "j2sdk-1_4_0_02-solaris-sparc.sh", "title": "Solaris SPARC 32-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-solaris-sparcv9.sh", "name": "j2sdk-1_4_0_02-solaris-sparcv9.sh", "title": "Solaris SPARC 64-bit self-extracting file "}, {"filepath": "http://download.oracle.com/otn/java/j2sdk/1.4.0_02/j2sdk-1_4_0_02-windows-i586.exe", "name": "j2sdk-1_4_0_02-windows-i586.exe", "title": "Windows (all languages, including English) "}], "licpath": "/technetwork/java/javase/downloads/java-se-archive-license-1382604.html", "lictitle": "Oracle Binary Code License Agreement for Java SE", "name": "7013-j2sdk-1.4.0_02-oth-JPR", "title": "Java SE Development Kit 1.4.0_02"}]}], "version": 2} \ No newline at end of file diff --git a/work/userContent/readme.txt b/work/userContent/readme.txt new file mode 100644 index 0000000..d97d403 --- /dev/null +++ b/work/userContent/readme.txt @@ -0,0 +1 @@ +Dateien in diesem Verzeichnis sind erreichbar über http://server/hudson/userContent/ \ No newline at end of file