-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
50 lines (40 loc) · 1.31 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
44
45
46
47
48
49
50
name := "rw-slick"
version := "0.5.2"
isSnapshot := true
scalaVersion := "2.12.4"
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % "3.2.1",
"org.typelevel" %% "cats-core" % "1.0.1",
"org.scalactic" %% "scalactic" % "3.0.4",
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"org.scalamock" %% "scalamock" % "4.0.0" % Test,
"org.mockito" % "mockito-core" % "2.10.0" % "test",
"com.lihaoyi" %% "sourcecode" % "0.1.4", // Scala-JVM
)
organization := "com.snapptrip"
homepage := Some(url("https://github.com/hamidr/HandyRwSlick"))
pomExtra :=
<scm>
<connection>
scm:git:git://github.com/hamidr/HandyRwSlick.git
</connection>
<url>
https://github.com/hamidr/HandyRwSlick
</url>
</scm>
<developers>
<developer>
<id>hamidr</id>
<name>Hamidreza Davoodi</name>
<email>[email protected]</email>
</developer>
</developers>
resolvers += "typesafe" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += Resolver.jcenterRepo
publishTo := Some(
"bintray" at
"https://api.bintray.com/maven/hamidr/HandyRwSlick/HandyRwSlick/;publish=1")
credentials += Credentials(Path.userHome / ".bintray" / ".credentials")
publishMavenStyle := true
publishArtifact in Test := false
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))