Skip to content

Commit ff5c00e

Browse files
committed
Update README.md
1 parent 60c38ed commit ff5c00e

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# 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.
53

64

75
# Usage
86

97
You must be using sbt 0.13 for your projects. First create a `project/plugins.sbt` files:
108

11-
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "0.2")
9+
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.0")
1210

1311
Then, in your `build.sbt` add:
1412

@@ -19,9 +17,5 @@ Then, in your `build.sbt` add:
1917
version := "<your module version>"
2018

2119
// standard stuff follows:
22-
scalaVersion := "2.11.0-M5"
20+
scalaVersion := "2.11.0-M8"
2321

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"

0 commit comments

Comments
 (0)