Skip to content

Commit

Permalink
Temporarily remove image name configuration in jlink targets, due to b…
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorndarri committed Oct 11, 2023
1 parent 73c1dd2 commit b151ac6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion world-client-http/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ application {
}

jlink {
imageName.set(project.name + "-" + project.version)
// imageName.set(project.name + "-" + project.version)
moduleName.set(application.mainModule)
options = ["--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages", "--add-modules",
"jdk.crypto.ec,is.codion.framework.db.http,is.codion.plugin.logback.proxy"]
Expand Down
2 changes: 1 addition & 1 deletion world-client-local/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ application {
}

jlink {
imageName.set(project.name + "-" + project.version)
// imageName.set(project.name + "-" + project.version)
moduleName.set(application.mainModule)
options = ["--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages", "--add-modules",
"jdk.crypto.ec,is.codion.framework.db.local,is.codion.dbms.h2database," +
Expand Down
2 changes: 1 addition & 1 deletion world-client-remote/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ application {
}

jlink {
imageName.set(project.name + "-" + project.version)
// imageName.set(project.name + "-" + project.version)
moduleName.set(application.mainModule)
options = ["--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages", "--add-modules",
"jdk.crypto.ec,is.codion.framework.db.rmi,is.codion.plugin.logback.proxy"]
Expand Down
2 changes: 1 addition & 1 deletion world-server-monitor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ application {
}

jlink {
imageName.set(project.name + "-" + project.version)
// imageName.set(project.name + "-" + project.version)
moduleName.set(application.mainModule)
options = ["--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages", "--add-modules",
"java.naming,is.codion.plugin.logback.proxy"]
Expand Down
2 changes: 1 addition & 1 deletion world-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ application {
}

jlink {
imageName.set(project.name + "-" + project.version)
// imageName.set(project.name + "-" + project.version)
moduleName.set(application.mainModule)
options = ["--strip-debug", "--compress", "2", "--no-header-files", "--no-man-pages", "--ignore-signing-information",
"--add-modules", "is.codion.framework.db.local,is.codion.dbms.h2database,is.codion.plugin.hikari.pool," +
Expand Down

0 comments on commit b151ac6

Please sign in to comment.