-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
43 lines (41 loc) · 1.73 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
35
36
37
38
39
40
41
42
43
crossScalaVersions := Seq(/*"2.12.3" SPRAY!,*/ "2.11.12")
scalaVersion := crossScalaVersions.value.head
lazy val `media-upload-service` = project in file(".") enablePlugins Raml2Hyperbus settings (
name := "media-upload-service",
version := "0.7.3-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.5.0",
"com.sksamuel.scrimage" %% "scrimage-core" % "2.1.7",
"net.bramp.ffmpeg" % "ffmpeg" % "0.6.2",
"io.minio" % "minio" % "3.0.6",
"org.javaswift" % "joss" % "0.9.17",
"com.roundeights" %% "hasher" % "1.2.0",
"com.jsuereth" %% "scala-arm" % "2.0",
"io.monix" %% "monix-kafka-10" % "0.14",
"io.spray" %% "spray-can" % "1.3.1",
"io.spray" %% "spray-routing-shapeless2" % "1.3.3",
"com.typesafe.akka" %% "akka-actor" % "2.4.20",
"com.hypertino" %% "service-config" % "0.2.8" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.8" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.5.0" % "test",
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
),
ramlHyperbusSources := Seq(
ramlSource(
path = "api/media-upload-service-api/media-upload.raml",
packageName = "com.hypertino.mediaupload.api",
isResource = false
),
ramlSource(
path = "api/hyper-storage-service-api/hyperstorage.raml",
packageName = "com.hypertino.mediaupload.apiref.hyperstorage",
isResource = false
)
)
)