-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (32 loc) · 1.27 KB
/
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
crossScalaVersions := Seq("2.12.4", "2.11.12")
scalaVersion := crossScalaVersions.value.head
lazy val `wallet-service` = project in file(".") enablePlugins Raml2Hyperbus settings (
name := "wallet-service",
version := "0.5-SNAPSHOT",
organization := "com.hypertino",
resolvers ++= Seq(
Resolver.sonatypeRepo("public")
),
libraryDependencies ++= Seq(
"com.hypertino" %% "hyperbus" % "0.6-SNAPSHOT",
"com.hypertino" %% "hyperbus-t-inproc" % "0.6-SNAPSHOT" % "test",
"com.hypertino" %% "service-control" % "0.4.1",
"com.hypertino" %% "service-config" % "0.2.5" % "test",
"ch.qos.logback" % "logback-classic" % "1.2.3" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.5.0" % "test",
"com.hypertino" %% "hyperstorage" % "0.7.10-SNAPSHOT" % "test",
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
),
ramlHyperbusSources := Seq(
ramlSource(
path = "api/wallet-service-api/wallet.raml",
packageName = "com.hypertino.wallet.api",
isResource = false
),
ramlSource(
path = "api/hyperstorage-service-api/hyperstorage.raml",
packageName = "com.hypertino.user.apiref.hyperstorage",
isResource = false
)
)
)