-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
41 lines (23 loc) · 796 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import sbt.dsl._
name := """subsequence"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava).enablePlugins(DebianPlugin).enablePlugins(RpmPlugin)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
javaJdbc,
javaEbean,
cache,
javaWs
)
daemonUser in Linux := "root"
maintainer := "Subsequence Project <[email protected]>"
packageSummary := "A scalable plug-and-play Bitcoin Payments Infrastructure"
packageDescription := "Accept Bitcoin payments without relying on a third party service"
// RPM
rpmVendor := "Subsequence Project"
name in Rpm := "Subsequence"
rpmUrl := Some("https://www.subsequence.io")
version in Rpm := version.value.replace('-','_')
rpmRelease := "1"
rpmLicense := Some("MIT")
rpmGroup := Some("subsequence")