File tree 1 file changed +3
-9
lines changed 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Scala modules sbt plugin
2
- This is an sbt plugin for use in defining scala modules. It tries to simplify the act of creating
3
- a scala module build, ensure their are hooks for breaking cycles when doing a "universal rebuild" of the scala ecosystem, and
4
- provide hooks for using the partest testing framework.
2
+ This is an sbt plugin for creating a scala module build.
5
3
6
4
7
5
# Usage
8
6
9
7
You must be using sbt 0.13 for your projects. First create a ` project/plugins.sbt ` files:
10
8
11
- addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "0.2 ")
9
+ addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.0 ")
12
10
13
11
Then, in your ` build.sbt ` add:
14
12
@@ -19,9 +17,5 @@ Then, in your `build.sbt` add:
19
17
version := "<your module version>"
20
18
21
19
// standard stuff follows:
22
- scalaVersion := "2.11.0-M5 "
20
+ scalaVersion := "2.11.0-M8 "
23
21
24
- // NOTE: not necessarily equal to scalaVersion
25
- // (e.g., during PR validation, we override scalaVersion to validate,
26
- // but don't rebuild scalacheck, so we don't want to rewire that dependency)
27
- scalaBinaryVersion := "2.11.0-M5"
You can’t perform that action at this time.
0 commit comments