Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 7a3b254

Browse files
committed
Depend on core project if in submodule mode
1 parent fb1d199 commit 7a3b254

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rundeck-execution-mode-timer/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ configurations{
4343

4444
dependencies {
4545

46-
compile "org.rundeck:rundeck-core:${rundeckVersion}"
46+
if (findProject(":core")) {
47+
compile project(":core")
48+
}else{
49+
compile "org.rundeck:rundeck-core:${rundeckVersion}"
50+
}
4751

4852
compile 'org.quartz-scheduler:quartz:2.3.1'
4953
compile 'org.grails.plugins:quartz:2.0.13'

0 commit comments

Comments
 (0)