From dd370dce263d59b94cc7bc493e5fe07a9f6362c9 Mon Sep 17 00:00:00 2001 From: Yichen Xu Date: Thu, 6 May 2021 20:04:17 +0800 Subject: [PATCH] Add sbt plugin for packaging binaries --- build.sbt | 2 ++ project/plugins.sbt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index cf3c091..f46e8f5 100644 --- a/build.sbt +++ b/build.sbt @@ -13,3 +13,5 @@ lazy val root = project "com.github.scopt" %% "scopt" % "4.0.1", ) ) + +enablePlugins(JavaAppPackaging) diff --git a/project/plugins.sbt b/project/plugins.sbt index b6f5106..7f59734 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,3 @@ addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3") + +addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")