Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/no-carrier.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-07-28 08:09:18 +0300
committerChris Rebert <code@rebertia.com>2015-07-28 08:09:18 +0300
commit448671428a66d778b44517ab3fed997f27812c5f (patch)
tree17a78f295d9e520d08ffe997f35ebe1f676ceadb
parent57640bb6567b0bf2119a48bf32dc1d2d5819bbe5 (diff)
Fix "Class javax.annotation.Nullable not found"
-rw-r--r--build.sbt4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 2914ac4..da91c0f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -16,6 +16,10 @@ libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.2"
libraryDependencies += "org.specs2" %% "specs2" % "2.3.12" % "test"
+// Because jcabi-github:
+
+libraryDependencies += "com.google.code.findbugs" % "annotations" % "2.0.1"
+
scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "–Xlint", "-encoding", "utf8")
scalacOptions in Test ++= Seq("-Yrangepos")