@@ -5,24 +5,21 @@ name := "scala-xml"
55version := " 1.0.0-SNAPSHOT"
66
77// standard stuff follows:
8- scalaVersion := " 2.11.0-M6"
9-
10- // NOTE: not necessarily equal to scalaVersion
11- // (e.g., during PR validation, we override scalaVersion to validate,
12- // but don't rebuild scalacheck, so we don't want to rewire that dependency)
13- scalaBinaryVersion := " 2.11.0-M6"
8+ scalaVersion := " 2.11.0-M7"
149
1510// to allow compiling against snapshot versions of Scala
1611resolvers += Resolver .sonatypeRepo(" snapshots" )
1712
18- // don't use for doc scope, scaladoc warnings are not to be reckoned with
19- scalacOptions in compile ++= Seq (" -optimize" , " -Xfatal-warnings" , " -feature" , " -deprecation" , " -unchecked" , " -Xlint" )
20-
2113libraryDependencies ++= Seq (
2214 " org.scala-lang" % " scala-compiler" % scalaVersion.value % " test" , // used in CompilerErrors test
2315 " junit" % " junit" % " 4.11" % " test" ,
2416 " com.novocode" % " junit-interface" % " 0.10" % " test" )
2517
18+
19+ // don't use for doc scope, scaladoc warnings are not to be reckoned with
20+ // TODO: turn on for nightlies, but don't enable for PR validation... "-Xfatal-warnings"
21+ scalacOptions in compile ++= Seq (" -optimize" , " -feature" , " -deprecation" , " -unchecked" , " -Xlint" )
22+
2623// Generate $name.properties to store our version as well as the scala version used to build
2724resourceGenerators in Compile <+= Def .task {
2825 val props = new java.util.Properties
0 commit comments