From 1d3ad644101aafe98ba37ddaa944311c21a3ddce Mon Sep 17 00:00:00 2001 From: Travis Brown Date: Tue, 8 Sep 2015 14:39:35 -0500 Subject: [PATCH] Update resolvers, specify SBT version, and add status note --- README.md | 8 +++++++- project/Build.scala | 2 ++ project/build.properties | 1 + project/plugins.sbt | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 project/build.properties diff --git a/README.md b/README.md index 9b0d492f..7fb36ddc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ - Kestrel ======= +[![Project status](https://img.shields.io/badge/status-deprecated-orange.svg)](#status) + Kestrel is based on Blaine Cook's "starling" simple, distributed message queue, with added features and bulletproofing, as well as the scalability offered by actors and the JVM. @@ -24,6 +25,11 @@ Kestrel has a mailing list here: Author's address: Robey Pointer \ +Status +------ + +Kestrel is currently used in production at Twitter, but it is being replaced by +other solutions, and it depends on outdated versions of Scala, Finagle, and SBT. Features -------- diff --git a/project/Build.scala b/project/Build.scala index 266f2dbc..79e1323f 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -22,6 +22,8 @@ object Kestrel extends Build { logBuffered in Test := false, parallelExecution in Test := false, + resolvers += "twitter.com" at "https://maven.twttr.com/", + libraryDependencies ++= Seq( "com.twitter" % "ostrich" % "8.2.9", "com.twitter" %% "naggati" % "4.1.0", diff --git a/project/build.properties b/project/build.properties new file mode 100644 index 00000000..f4ff7a5a --- /dev/null +++ b/project/build.properties @@ -0,0 +1 @@ +sbt.version=0.11.2 diff --git a/project/plugins.sbt b/project/plugins.sbt index c6ec0db0..dbfa8153 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -9,7 +9,7 @@ resolvers <<= (resolvers) { r => Seq("proxy-repo" at url) } getOrElse { r ++ Seq( - "twitter.com" at "http://maven.twttr.com/", + "twitter.com" at "https://maven.twttr.com/", "scala-tools" at "http://scala-tools.org/repo-releases/", "maven" at "http://repo1.maven.org/maven2/", "freemarker" at "http://freemarker.sourceforge.net/maven2/"