Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/jenkinsci/jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Mar 2, 2015
2 parents 7d6cd1b + 9388ad0 commit 87ab95e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion core/src/main/java/jenkins/model/TransientActionFactory.java
Expand Up @@ -24,6 +24,7 @@

package jenkins.model;

import hudson.ExtensionPoint;
import hudson.model.Action;
import hudson.model.Actionable;
import hudson.model.TopLevelItem;
Expand All @@ -37,7 +38,7 @@
* @see Actionable#getAllActions
* @since 1.548
*/
public abstract class TransientActionFactory<T> {
public abstract class TransientActionFactory<T> implements ExtensionPoint {

/**
* The type of object this factory cares about.
Expand Down
4 changes: 2 additions & 2 deletions test/src/test/java/hudson/tasks/MavenTest.java
Expand Up @@ -270,10 +270,10 @@ public void testNullHome() throws Exception {

@Issue("JENKINS-26684")
@Test public void specialCharsInBuildVariablesPassedAsProperties() throws Exception {
j.configureDefaultMaven();
MavenInstallation maven = j.configureMaven3();

FreeStyleProject p = j.createFreeStyleProject();
p.getBuildersList().add(new Maven("--help", null));
p.getBuildersList().add(new Maven("--help", maven.getName()));
p.addProperty(new ParametersDefinitionProperty(
new StringParameterDefinition("tilde", "~"),
new StringParameterDefinition("exclamation_mark", "!"),
Expand Down

0 comments on commit 87ab95e

Please sign in to comment.