Skip to content

Commit

Permalink
Update build.sbt
Browse files Browse the repository at this point in the history
Updated to reflect deprecation of the seq() function to pull in multiple settings in sbt 0.13.
  • Loading branch information
robbbbbb committed May 2, 2014
1 parent 01c3609 commit 0488442
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/sbt-test/one-jar/basic/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)
import com.github.retronym.SbtOneJar._

libraryDependencies += "commons-lang" % "commons-lang" % "2.6"
oneJarSettings

// or if using sbt version < 0.13
// seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)

libraryDependencies += "commons-lang" % "commons-lang" % "2.6"

0 comments on commit 0488442

Please sign in to comment.