forked from ovotech/comms-platform-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (27 loc) · 1.02 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
enablePlugins(MicrositesPlugin)
micrositeName := "OVO Comms Platform"
micrositeBaseUrl := "/comms-platform"
micrositeDocumentationUrl := "/comms-platform/docs"
micrositeAuthor := "Comms team"
micrositeHomepage := "https://ovoenergy.slack.com/messages/hello_comms/"
micrositeGithubOwner := "ovotech"
micrositeGithubRepo := "comms-platform"
micrositePalette := Map(
"brand-primary" -> "#0a9928",
"brand-secondary" -> "#24911d",
"brand-tertiary" -> "#2d232f",
"gray-dark" -> "#7a7f8a",
"gray" -> "#a2a5ad",
"gray-light" -> "#d1d2d6",
"gray-lighter" -> "#f6f8fc",
"white-color" -> "#ffffff"
)
scalaVersion := "2.11.8"
resolvers += Resolver.bintrayRepo("ovotech", "maven")
resolvers += "confluent" at "http://packages.confluent.io/maven/"
libraryDependencies ++= Seq(
"com.ovoenergy" %% "comms-kafka-messages" % "1.25",
"com.ovoenergy" %% "comms-triggered-event-builder" % "1.1",
"com.ovoenergy" %% "comms-kafka-serialisation" % "2.8"
)
addCompilerPlugin("org.scalameta" % "paradise" % "3.0.0-beta4" cross CrossVersion.full)