Skip to content

Commit 643a81c

Browse files
committed
Cross compile to scala 2.11.x
1 parent ebc1a58 commit 643a81c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: scala
22
scala:
3+
- 2.12.4
34
- 2.11.12
45
jdk:
56
- oraclejdk8

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Use in your tests:
1717
import com.servicerocket.play.ws.fakes._
1818
```
1919
### Compatibility Matrix
20-
| Play WS Fakes | Play WS | Scala |
21-
| -------------- | --------- | ------ |
22-
| `0.1.0` | `2.15.18` | `2.11` |
20+
| Play WS Fakes | Play WS | Scala |
21+
| -------------- | --------- | --------------- |
22+
| `0.1.0` | `2.15.18` | `2.11` |
23+
| `0.1.1` | `2.6.11` | `2.12` |
24+
| `0.1.2` | `2.6.11` | `2.12` & `2.11` |

build.sbt

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ scalaVersion := "2.12.4"
44

55
val PlayWsVersion = "2.6.11"
66

7+
crossScalaVersions := Seq("2.11.12", "2.12.4")
78
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
89
publishMavenStyle := true
910
publishTo := version { (v: String) =>

0 commit comments

Comments
 (0)