Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use sbt-native-packager instead of sbt-pack #20547

Merged
merged 7 commits into from
Jul 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions project/Build.scala
bishabosha marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -2201,12 +2201,13 @@ object Build {
Windows / mappings := (Universal / mappings).value,
Windows / packageBin := (Windows / packageBin).dependsOn(republish).value,
Windows / wixFiles := (Windows / wixFiles).dependsOn(republish).value,
maintainer := "The Scala Programming Language",
packageSummary := s"Scala $dottyVersion",
packageDescription := """Installer for the Scala Programming Language""",
wixProductId := "74ED19C3-74FE-4ABA-AF30-55A06B6322A9",
wixProductUpgradeId := "3E5A1A82-CA67-4353-94FE-5BDD400AF66B",
wixProductLicense := Some(dist.base / "LICENSE.rtf")
// Additional information: https://wixtoolset.org/docs/schema/wxs/package/
maintainer := "The Scala Programming Language", // The displayed maintainer of the package
packageSummary := s"Scala $dottyVersion", // The displayed name of the package
packageDescription := """Installer for the Scala Programming Language""", // The displayed description of the package
wixProductId := "*", // Unique ID for each generated MSI; will change for each generated msi
wixProductUpgradeId := "3E5A1A82-CA67-4353-94FE-5BDD400AF66B", // Unique ID to identify the package; used to manage the upgrades
wixProductLicense := Some(dist.base / "LICENSE.rtf") // Link to the LICENSE to show during the installation (keep in sync with ../LICENSE)
)

lazy val `dist-linux-x86_64` = project.in(file("dist/linux-x86_64")).asDist(Bootstrapped)
Expand Down
Loading