File tree 2 files changed +5
-2
lines changed
src/main/groovy/com/rundeck/plugin
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ ext.pluginName = 'Git Plugin'
10
10
ext. pluginDescription = ' Git Plugin'
11
11
12
12
scmVersion {
13
+ ignoreUncommittedChanges = false
13
14
tag {
14
15
prefix = ' '
15
16
versionSeparator = ' '
@@ -48,7 +49,7 @@ dependencies {
48
49
49
50
compile group : ' org.rundeck' , name : ' rundeck-core' , version : ' 2.11.4'
50
51
51
- pluginLibs( ' org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725 -r' ) {
52
+ pluginLibs( ' org.eclipse.jgit:org.eclipse.jgit:4.4.0.201606070830 -r' ) {
52
53
exclude module : ' slf4j-api'
53
54
exclude module : ' jsch'
54
55
exclude module : ' commons-logging'
Original file line number Diff line number Diff line change @@ -94,7 +94,9 @@ class GitManager {
94
94
setBranch(this . branch).
95
95
setRemote(REMOTE_NAME ).
96
96
setDirectory(base).
97
- setURI(this . gitURL)
97
+ setURI(this . gitURL).
98
+ setCloneSubmodules(true )
99
+
98
100
99
101
try {
100
102
setupTransportAuthentication(sshConfig, cloneCommand, this . gitURL)
You can’t perform that action at this time.
0 commit comments