@@ -4,18 +4,18 @@ name := "scala-parser-combinators"
4
4
5
5
version := " 1.0.0-SNAPSHOT"
6
6
7
- scalaVersion := " 2.11.0-M6"
8
-
9
- // NOTE: not necessarily equal to scalaVersion
10
- // (e.g., during PR validation, we override scalaVersion to validate,
11
- // but don't rebuild scalacheck, so we don't want to rewire that dependency)
12
- scalaBinaryVersion := " 2.11.0-M6"
7
+ scalaVersion := " 2.11.0-M7"
13
8
14
9
// to allow compiling against snapshot versions of Scala
15
10
resolvers += Resolver .sonatypeRepo(" snapshots" )
16
11
12
+ libraryDependencies ++= Seq (
13
+ " junit" % " junit" % " 4.11" % " test" ,
14
+ " com.novocode" % " junit-interface" % " 0.10" % " test" )
15
+
17
16
// don't use for doc scope, scaladoc warnings are not to be reckoned with
18
- scalacOptions in compile ++= Seq (" -optimize" , " -Xfatal-warnings" , " -feature" , " -deprecation" , " -unchecked" , " -Xlint" )
17
+ // TODO: turn on for nightlies, but don't enable for PR validation... "-Xfatal-warnings"
18
+ scalacOptions in compile ++= Seq (" -optimize" , " -feature" , " -deprecation" , " -unchecked" , " -Xlint" )
19
19
20
20
21
21
// Generate $name.properties to store our version as well as the scala version used to build
@@ -81,8 +81,6 @@ pomExtra := (
81
81
</developers >
82
82
)
83
83
84
- libraryDependencies ++= Seq (" junit" % " junit" % " 4.11" % " test" , " com.novocode" % " junit-interface" % " 0.10" % " test" )
85
-
86
84
osgiSettings
87
85
88
86
val osgiVersion = version(_.replace('-' , '.' ))
0 commit comments