@@ -5,24 +5,21 @@ name := "scala-xml"
5
5
version := " 1.0.0-SNAPSHOT"
6
6
7
7
// 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"
14
9
15
10
// to allow compiling against snapshot versions of Scala
16
11
resolvers += Resolver .sonatypeRepo(" snapshots" )
17
12
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
-
21
13
libraryDependencies ++= Seq (
22
14
" org.scala-lang" % " scala-compiler" % scalaVersion.value % " test" , // used in CompilerErrors test
23
15
" junit" % " junit" % " 4.11" % " test" ,
24
16
" com.novocode" % " junit-interface" % " 0.10" % " test" )
25
17
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
+
26
23
// Generate $name.properties to store our version as well as the scala version used to build
27
24
resourceGenerators in Compile <+= Def .task {
28
25
val props = new java.util.Properties
0 commit comments