Skip to content

Commit

Permalink
fix build path
Browse files Browse the repository at this point in the history
  • Loading branch information
Robothy committed Sep 1, 2024
1 parent 5e97216 commit 3425719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions local-s3-docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ tasks.register('collectReachabilityMetadata', JavaExec) {

outputs.cacheIf { true }

inputs.file("${project.layout.buildDirectory.get()}/libs/s3.jar")
inputs.file(project.layout.buildDirectory.file("/libs/s3.jar"))
.withPropertyName("jar")
.withPathSensitivity(PathSensitivity.RELATIVE)

outputs.dir(file("${project.layout.buildDirectory.get()}/reachability-metadata"))
outputs.dir(project.layout.buildDirectory.file("/reachability-metadata"))
.withPropertyName("reachability-metadata")

mainClass.set('com.robothy.s3.docker.ReachabilityMetadataGenerator')
Expand Down

0 comments on commit 3425719

Please sign in to comment.