Skip to content

Commit

Permalink
Merge pull request #131 from hakanai/jre-task-dependencies
Browse files Browse the repository at this point in the history
jre task should depend on any jars in the runtime classpath
  • Loading branch information
siordache authored Dec 25, 2022
2 parents 021a218 + 307478c commit 103fc70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/groovy/org/beryx/runtime/JreTask.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class JreTask extends BaseTask {

JreTask() {
dependsOn('jar')
dependsOn(project.configurations.runtimeClasspath.allDependencies)
description = 'Creates a custom java runtime image with jlink'
}

Expand Down

0 comments on commit 103fc70

Please sign in to comment.