Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
Merge pull request #101 from paulp/sbt-0.13.11
Browse files Browse the repository at this point in the history
sbt 0.13.11.
  • Loading branch information
eed3si9n committed Jul 3, 2016
2 parents 62469ea + d2daf07 commit d417c88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions project/ZincBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import sbt._
import sbt.Keys._

object ZincBuild extends Build {
val sbtVersion = "0.13.9"
val sbtVersion = "0.13.11"

val resolveSbtLocally = settingKey[Boolean]("resolve-sbt-locally")

lazy val buildSettings = Seq(
organization := "com.typesafe.zinc",
version := "0.3.10-SNAPSHOT",
scalaVersion := "2.10.5",
scalaVersion := "2.10.6",
crossPaths := false
)

Expand All @@ -22,7 +22,7 @@ object ZincBuild extends Build {
file("."),
settings = buildSettings ++ Version.settings ++ Publish.settings ++ Dist.settings ++ Scriptit.settings ++ Seq(
resolveSbtLocally := false,
resolvers += (if (resolveSbtLocally.value) Resolver.mavenLocal else Opts.resolver.sonatypeSnapshots),
resolvers ++= (if (resolveSbtLocally.value) Seq(Resolver.mavenLocal) else Seq(Opts.resolver.sonatypeReleases, Opts.resolver.sonatypeSnapshots)),
libraryDependencies ++= Seq(
"com.typesafe.sbt" % "incremental-compiler" % sbtVersion,
"com.typesafe.sbt" % "compiler-interface" % sbtVersion classifier "sources",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.9
sbt.version=0.13.11

0 comments on commit d417c88

Please sign in to comment.