-
Notifications
You must be signed in to change notification settings - Fork 716
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #308 from lmenezes/rpm-and-deb
Sbt configuration for creating rpm and deb packages
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -2,10 +2,21 @@ name := "cerebro" | |
|
||
maintainer := "Leonardo Menezes <[email protected]>" | ||
|
||
packageSummary := "Elasticsearch web admin tool" | ||
|
||
packageDescription := """cerebro is an open source(MIT License) elasticsearch web admin tool built | ||
using Scala, Play Framework, AngularJS and Bootstrap.""" | ||
|
||
version := "0.8.2" | ||
|
||
scalaVersion := "2.12.8" | ||
|
||
rpmVendor := "lmenezes" | ||
|
||
rpmLicense := Some("MIT") | ||
|
||
rpmUrl := Some("http://github.com/lmenezes/cerebro") | ||
|
||
libraryDependencies ++= Seq( | ||
"com.typesafe.play" %% "play" % "2.7.0", | ||
"com.typesafe.play" %% "play-json" % "2.7.2", | ||
|
@@ -22,7 +33,7 @@ libraryDependencies += ws | |
libraryDependencies += guice | ||
|
||
lazy val root = (project in file(".")). | ||
enablePlugins(PlayScala, BuildInfoPlugin, LauncherJarPlugin). | ||
enablePlugins(PlayScala, BuildInfoPlugin, LauncherJarPlugin, JDebPackaging, RpmPlugin). | ||
settings( | ||
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion), | ||
buildInfoPackage := "models" | ||
|
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