Skip to content

Commit d093198

Browse files
committed
windows installable package created
Have done changes in build.sbt added package related attributes like changed version and added windows plugin.
1 parent 72fc490 commit d093198

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

build.sbt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
name := "delphi-cli"
22

3-
version := "1.0.0-SNAPSHOT"
3+
version := "1.0"
4+
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"
414

515
scalaVersion := "2.12.4"
616

@@ -9,10 +19,15 @@ 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)