Skip to content

Commit b9db9d7

Browse files
authored
Merge pull request #17 from delphi-hub/feature/Cli_WinPkg
windows installable package created
2 parents 36bc9cf + 170276e commit b9db9d7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.sbt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,32 @@ name := "delphi-cli"
22

33
version := "1.0.0-SNAPSHOT"
44

5+
maintainer := "Ben Hermann <[email protected]>"
6+
7+
packageSummary := "Windows Package for Delphi-cli"
8+
9+
packageDescription := """Windows Package for Delphi-cli"""
10+
11+
wixProductId := "ce07be71-510d-414a-92d4-dff47631848a"
12+
13+
wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
14+
515
scalaVersion := "2.12.4"
616

717
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.0"
818
libraryDependencies ++= Seq(
919
"com.typesafe.akka" %% "akka-http-core" % "10.0.11"
1020
)
1121

22+
debianPackageDependencies := Seq("java8-runtime-headless")
23+
1224
lazy val cli = (project in file(".")).
1325
enablePlugins(JavaAppPackaging).
1426
enablePlugins(DockerPlugin).
1527
enablePlugins(BuildInfoPlugin).
28+
enablePlugins(DebianPlugin).
29+
enablePlugins(WindowsPlugin).
30+
1631
settings(
1732
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
1833
buildInfoPackage := "de.upb.cs.swt.delphi.cli"

0 commit comments

Comments
 (0)