diff --git a/build.sbt b/build.sbt index 5633a7aae807..c5c3ef7dfbd8 100644 --- a/build.sbt +++ b/build.sbt @@ -40,7 +40,14 @@ inScope(Global)(Build.globalSettings) //https://www.scala-sbt.org/sbt-native-packager/formats/debian.html#requirements enablePlugins(JavaAppPackaging) enablePlugins(DebianPlugin) +enablePlugins(WindowsPlugin) +//Required according to: +//https://www.scala-sbt.org/sbt-native-packager/formats/debian.html#requirements debianPackageDependencies := Seq("java8-runtime-headless") -maintainer := "anatoliykmetyuk@gmail.com" // Who should be the person? must be a person? +maintainer := "martin.odersky@epfl.ch" // who should be the maintainer? packageSummary := "scala3" // should include the right version etc -packageDescription := """More information here: https://www.scala-lang.org/""" \ No newline at end of file +packageDescription := """https://www.scala-lang.org/""" //more info here? +//https://www.scala-sbt.org/sbt-native-packager/formats/windows.html#requirements +// https://wixtoolset.org/ +wixProductId := "ce07be71-510d-414a-92d4-dff47631848a" // ??? +wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424" // ??? diff --git a/project/plugins.sbt b/project/plugins.sbt index 943d4dca240d..3659d43bff50 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -16,7 +16,5 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.0") -//to enable native packaging: -//https://github.com/sbt/sbt-native-packager addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.6")