-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (25 loc) · 1.01 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
organization := "com.socrata"
name := "socrata-zookeeper"
resolvers ++= Seq("socrata maven" at "https://repo.socrata.com/artifactory/libs-release")
scalaVersion := "2.13.6"
crossScalaVersions := Seq("2.11.7", "2.12.12", scalaVersion.value)
mimaPreviousArtifacts := Set("com.socrata" %% "socrata-zookeeper" % "1.1.0")
libraryDependencies ++= Seq(
"com.socrata" %% "socrata-utils" % "0.12.0",
"org.slf4j" % "slf4j-log4j12" % "1.7.12", // zoookeeperrrr! When 3.5 comes out maybe we can get rid of this...
"org.apache.zookeeper" % "zookeeper" % "3.4.5"
)
scalacOptions ++= Seq(
"-deprecation"
)
resolvers := Seq(
"socrata maven" at "https://repo.socrata.com/artifactory/libs-release",
Resolver.url("socrata ivy", new URL("https://repo.socrata.com/artifactory/ivy-libs-release"))(Resolver.ivyStylePatterns)
)
publishTo := {
val nexus = "https://repo.socrata.com/artifactory/"
if (isSnapshot.value)
Some("snapshots" at nexus + "libs-snapshot-local")
else
Some("releases" at nexus + "libs-release-local")
}