Skip to content

Commit

Permalink
formatting markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jsboak committed Feb 2, 2024
1 parent f9debf4 commit 799b4ec
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 29 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.15.4'
id 'pl.allegro.tech.build.axion-release' version '1.16.1'
}

group 'com.rundeck'
Expand Down Expand Up @@ -36,12 +36,12 @@ configurations {

dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.9'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'junit', name: 'junit', version: '4.13.1'

implementation group: 'org.rundeck', name: 'rundeck-core', version: '4.15.0-20230725'
implementation group: 'org.rundeck', name: 'rundeck-core', version: '5.1.0-rc2-20240124'
implementation 'org.slf4j:slf4j-api:1.7.30'

pluginLibs( 'org.eclipse.jgit:org.eclipse.jgit:5.13.2.202306221912-r') {
pluginLibs('org.eclipse.jgit:org.eclipse.jgit:6.6.1.202309021850-r') {
exclude module: 'slf4j-api'
exclude module: 'jsch'
exclude module: 'commons-logging'
Expand Down
Binary file added out/production/resources/resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class GitAddWorkflowStep implements StepPlugin, Describable{
PropertyUtil.string(GIT_BASE_DIRECTORY, "Base Directory", "Directory to add to.", true,
null, null, null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_ADD_FILE_PATTERN, "File Pattern", '''File Pattern of files to be added.
See [addFilepattern](http://archive.eclipse.org/jgit/docs/jgit-2.0.0.201206130900-r/apidocs/org/eclipse/jgit/api/AddCommand.html#addFilepattern(java.lang.String)) for more details.''', true,
See [addFilepattern](http://archive.eclipse.org/jgit/docs/jgit-2.0.0.201206130900-r/apidocs/org/eclipse/jgit/api/AddCommand.html#addFilepattern(java.lang.String)) for more details.''', true,
".",null,null, renderingOptionsConfig))
.property(PropertyUtil.bool(GIT_LOG_DISABLE, "Disable log output", "Enabling this flag, the plugin will not show the output log", true,
"false",null, renderingOptionsConfig))
Expand Down
16 changes: 8 additions & 8 deletions src/main/groovy/com/rundeck/plugin/GitCloneWorkflowStep.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ class GitCloneWorkflowStep implements StepPlugin, Describable{
PropertyUtil.string(GIT_BASE_DIRECTORY, "Base Directory", "Directory for checkout.", true,
null, null, null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_URL, "Git URL", '''Checkout url.
See [git-clone](https://www.kernel.org/pub/software/scm/git/docs/git-clone.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
See [git-clone](https://www.kernel.org/pub/software/scm/git/docs/git-clone.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
null,null,null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_BRANCH, "Branch", "Checkout branch.", true,
"master",null,null, renderingOptionsConfig))
Expand Down
16 changes: 8 additions & 8 deletions src/main/groovy/com/rundeck/plugin/GitCommitWorkflowStep.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ class GitCommitWorkflowStep implements StepPlugin, Describable{
PropertyUtil.string(GIT_BASE_DIRECTORY, "Base Directory", "Directory to commit.", true,
null, null, null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_URL, "Git URL", '''Checkout url.
See [git-commit](https://www.kernel.org/pub/software/scm/git/docs/git-commit.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-push.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
See [git-commit](https://www.kernel.org/pub/software/scm/git/docs/git-commit.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-push.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
null,null,null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_MESSAGE, "Message", "Commit Message.", true,
"Rundeck Commit",null,null, renderingOptionsConfig))
Expand Down
16 changes: 8 additions & 8 deletions src/main/groovy/com/rundeck/plugin/GitPushWorkflowStep.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ class GitPushWorkflowStep implements StepPlugin, Describable{
PropertyUtil.string(GIT_BASE_DIRECTORY, "Base Directory", "Directory to push.", true,
null, null, null, renderingOptionsConfig))
.property(PropertyUtil.string(GIT_URL, "Git URL", '''Checkout url.
See [git-push](https://www.kernel.org/pub/software/scm/git/docs/git-push.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-push.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
See [git-push](https://www.kernel.org/pub/software/scm/git/docs/git-push.html)
specifically the [GIT URLS](https://www.kernel.org/pub/software/scm/git/docs/git-push.html#URLS) section.
Some examples:
* `ssh://[user@]host.xz[:port]/path/to/repo.git/`
* `git://host.xz[:port]/path/to/repo.git/`
* `http[s]://host.xz[:port]/path/to/repo.git/`
* `ftp[s]://host.xz[:port]/path/to/repo.git/`
* `rsync://host.xz/path/to/repo.git/`''', true,
null,null,null, renderingOptionsConfig))
.property(PropertyUtil.bool(GIT_LOG_DISABLE, "Disable log output", "Enabling this flag, the plugin will not show the output log", true,
"false",null, renderingOptionsConfig))
Expand Down

0 comments on commit 799b4ec

Please sign in to comment.