Skip to content
This repository was archived by the owner on Jul 2, 2021. It is now read-only.

Commit 61cf46b

Browse files
committed
Example spring-boot - fixed wrong depending job name
- up was dependent on build_gradle, which has been removed - now depends on build
1 parent 7c0d0c9 commit 61cf46b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/java/spring-boot/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def down(exec, *args, **kwargs):
2828
mountDaemon=True,
2929
useHostUser=False)
3030
def up(exec, *args, **kwargs):
31-
depends(build_gradle, ifFalse=fileExists(pattern="target/*.jar"))
31+
depends(build, ifFalse=fileExists(pattern="target/*.jar"))
3232
depends(down, ifTrue=isContainerRunningWithId(id="spring-example"))
3333
exec("""
3434

0 commit comments

Comments
 (0)