From c5fdef9214f050866d205aa5160c26a8dbf68b7f Mon Sep 17 00:00:00 2001 From: eikek Date: Wed, 8 Sep 2021 23:09:38 +0200 Subject: [PATCH] Reduce startup command length The start scripts contain a huge command that may cause problems on some systems, reportedly at windows. The ClasspathJarPlugin can mitigate this by creating a tiny jar that only contains the classpath of the app. https://sbt-native-packager.readthedocs.io/en/stable/recipes/longclasspath.html#generate-a-classpath-jar --- build.sbt | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 7856c5db..2abbc28c 100644 --- a/build.sbt +++ b/build.sbt @@ -547,7 +547,13 @@ val webapp = project val joex = project .in(file("modules/joex")) - .enablePlugins(BuildInfoPlugin, JavaServerAppPackaging, DebianPlugin, SystemdPlugin) + .enablePlugins( + BuildInfoPlugin, + JavaServerAppPackaging, + DebianPlugin, + SystemdPlugin, + ClasspathJarPlugin + ) .settings(sharedSettings) .settings(testSettingsMUnit) .settings(debianSettings("docspell-joex")) @@ -586,7 +592,13 @@ val joex = project val restserver = project .in(file("modules/restserver")) - .enablePlugins(BuildInfoPlugin, JavaServerAppPackaging, DebianPlugin, SystemdPlugin) + .enablePlugins( + BuildInfoPlugin, + JavaServerAppPackaging, + DebianPlugin, + SystemdPlugin, + ClasspathJarPlugin + ) .settings(sharedSettings) .settings(testSettingsMUnit) .settings(debianSettings("docspell-server"))