@@ -148,13 +148,14 @@ object ScalaBuild extends Build with Layers {
148
148
lazy val externalDeps : Setting [_] = libraryDependencies <<= (sbtVersion)(v =>
149
149
Seq (
150
150
" org.apache.ant" % " ant" % " 1.8.2" ,
151
- " org.scala-tools. sbt" % " compiler-interface" % v % " provided"
151
+ " org.scala-sbt" % " compiler-interface" % v % " provided"
152
152
)
153
153
)
154
154
155
155
// These are setting overrides for most artifacts in the Scala build file.
156
156
def settingOverrides : Seq [Setting [_]] = publishSettings ++ Seq (
157
157
crossPaths := false ,
158
+ autoScalaLibrary := false ,
158
159
publishArtifact in packageDoc := false ,
159
160
publishArtifact in packageSrc := false ,
160
161
target <<= (baseDirectory, name) apply (_ / " target" / _),
@@ -170,7 +171,7 @@ object ScalaBuild extends Build with Layers {
170
171
skip in Compile <<= lockFile.map(_ exists),
171
172
lock <<= lockFile map { f => IO .touch(f) },
172
173
unlock <<= lockFile map IO .delete
173
- ) ++ CheatingCompilerSettings .settings
174
+ )
174
175
175
176
// --------------------------------------------------------------
176
177
// Libraries used by Scalac that change infrequently
@@ -327,7 +328,7 @@ object ScalaBuild extends Build with Layers {
327
328
// Testing
328
329
// --------------------------------------------------------------
329
330
/* lazy val scalacheckSettings: Seq[Setting[_]] = Seq(fullQuickScalaReference, crossPaths := false)*/
330
- lazy val scalacheck = uri(" git://github.com/rickynils /scalacheck.git" )
331
+ lazy val scalacheck = uri(" git://github.com/jsuereth /scalacheck.git#scala-build " )
331
332
332
333
lazy val testsuiteSettings : Seq [Setting [_]] = compilerDependentProjectSettings ++ partestTaskSettings ++ VerifyClassLoad .settings ++ Seq (
333
334
unmanagedBase <<= baseDirectory / " test/files/lib" ,
@@ -518,7 +519,7 @@ object ScalaBuild extends Build with Layers {
518
519
// Add in some more dependencies
519
520
makeDistMappings <<= (makeDistMappings,
520
521
packageBin in swing in Compile ) map {
521
- (dist, s, d ) =>
522
+ (dist, s) =>
522
523
dist ++ Seq (s -> " lib/scala-swing.jar" )
523
524
},
524
525
makeDist <<= (makeDistMappings, baseDirectory, streams) map { (maps, dir, s) =>
0 commit comments