forked from nafg/slick-migration-api-flyway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (16 loc) · 763 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
scalaVersion := "2.11.7"
organization := "com.1on1development"
name := "slick-migration-api-flyway"
version := "0.1"
libraryDependencies += "com.github.frossi85" %% "slick-migration-api" % "0.2-SNAPSHOT"
libraryDependencies += "org.flywaydb" % "flyway-core" % "3.0"
libraryDependencies += "com.h2database" % "h2" % "1.4.187" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.4" % "test"
resolvers += "nafg bintray" at "http://dl.bintray.com/naftoligug/maven"
credentials ++= sys.env.get("BINTRAYKEY").toSeq.map(Credentials(
"Bintray API Realm",
"api.bintray.com",
"naftoligug",
_
))
publishTo := Some("slick-migration-api-flyway @ bintray" at "https://api.bintray.com/maven/1on1development/maven/slick-migration-api-flyway")