forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add some more setings for sbtNativePackager
- Loading branch information
1 parent
c8e9d6d
commit d5d4503
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 := "[email protected]" // Who should be the person? must be a person? | ||
maintainer := "[email protected]" // who should be the maintainer? | ||
packageSummary := "scala3" // should include the right version etc | ||
packageDescription := """More information here: https://www.scala-lang.org/""" | ||
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" // ??? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters