From 09d80209bea1229aa599ec427324c86b86f25197 Mon Sep 17 00:00:00 2001 From: hannahlindsley Date: Thu, 12 May 2016 19:47:30 -0500 Subject: [PATCH] Fixed the build. There was a line without a linebreak between it and the preceding line, which breaks the build. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1104328..1ac2b6d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,3 @@ - name := "utils" organization := "iguana" @@ -18,4 +17,5 @@ libraryDependencies ++= Seq( testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v") javacOptions in (Compile, doc) ++= Seq("-source", "1.8") + javacOptions in (Compile,doc) += "-Xdoclint:none"