Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
145 additions
and 140 deletions.
- +0 −52 src/main/java/org/jenkinsci/plugins/scripttrigger/AbstractTriggerAction.java
- +49 −2 src/main/java/org/jenkinsci/plugins/scripttrigger/ScriptTrigger.java
- +4 −23 src/main/java/org/jenkinsci/plugins/scripttrigger/ScriptTriggerAction.java
- +49 −1 src/main/java/org/jenkinsci/plugins/scripttrigger/groovy/GroovyScriptTrigger.java
- +2 −23 src/main/java/org/jenkinsci/plugins/scripttrigger/groovy/GroovyScriptTriggerAction.java
- +1 −1 src/main/resources/index.jelly
- +20 −19 src/main/resources/org/jenkinsci/plugins/scripttrigger/ScriptTriggerAction/index.jelly
- +20 −19 src/main/resources/org/jenkinsci/plugins/scripttrigger/groovy/GroovyScriptTriggerAction/index.jelly
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,30 +1,11 @@ | ||
package org.jenkinsci.plugins.scripttrigger; | ||
|
||
import hudson.model.Action; | ||
|
||
/** | ||
* Marked Action class | ||
* | ||
* @author Gregory Boissinot | ||
*/ | ||
public abstract class ScriptTriggerAction implements Action { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,31 +1,10 @@ | ||
package org.jenkinsci.plugins.scripttrigger.groovy; | ||
|
||
import hudson.model.Action; | ||
|
||
/** | ||
* @author Gregory Boissinot | ||
*/ | ||
public abstract class GroovyScriptTriggerAction implements Action { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,3 +1,3 @@ | ||
<div> | ||
This plugin makes it possible to poll changes of an environment with a script. | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters