Skip to content

Commit

Permalink
fix: setting http-request-logger.jar archiveFilename explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidonos committed Nov 6, 2023
1 parent 8225f89 commit 4a8f742
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/http-request-logger/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM gradle:jdk17 AS build

WORKDIR /home/gradle/project/
COPY --chown=gradle:gradle . /home/gradle/project/
WORKDIR /home/gradle/project
COPY --chown=gradle:gradle . /home/gradle/project
RUN gradle build

FROM openjdk:17-slim
Expand Down
1 change: 1 addition & 0 deletions util/http-request-logger/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "org.eclipse.edc.samples.util.HttpRequestLoggerServer"
}
archiveFileName.set("http-request-logger.jar")
}

0 comments on commit 4a8f742

Please sign in to comment.