forked from andreyk0/redis-client-scala-netty
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
32 lines (22 loc) · 1.04 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
name := "redis-scala"
organization := "com.impactua"
version := sys.env.getOrElse("TRAVIS_TAG", "1.4.0-SNAPSHOT")
scalaVersion := "2.12.11"
crossScalaVersions := Seq("2.11.8", "2.12.11", "2.13.1")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
publishMavenStyle := true
publishArtifact := true
publishArtifact in Test := false
bintrayReleaseOnPublish := false
bintrayPackage := name.value
bintrayOrganization in bintray := Some("sergkh")
bintrayPackageLabels := Seq("scala", "redis", "netty")
concurrentRestrictions in Global += Tags.limit(Tags.Test, 1)
val nettyVersion = "4.1.48.Final"
libraryDependencies ++= Seq(
"io.netty" % "netty-handler" % nettyVersion,
"io.netty" % "netty-transport-native-epoll" % nettyVersion classifier "linux-x86_64",
"io.netty" % "netty-transport-native-kqueue" % nettyVersion classifier "osx-x86_64",
"org.scalatest" %% "scalatest" % "3.1.1" % Test,
"com.storm-enroute" %% "scalameter" % "0.19" % Test
)