This repository was archived by the owner on Nov 14, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +21
-6
lines changed Expand file tree Collapse file tree 4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+ addons :
3
+ apt :
4
+ packages :
5
+ - oracle-java8-installer
6
+
7
+ language : scala
8
+ scala :
9
+ - 2.12.0
10
+ - 2.11.8
11
+ jdk :
12
+ - oraclejdk8
Original file line number Diff line number Diff line change @@ -10,9 +10,12 @@ I wanted a more customizable interfaces.
10
10
11
11
## Installation
12
12
13
+ supports Scala 2.11.x, 2.12.x
14
+
13
15
```
14
16
resolvers += "jitpack" at "https://jitpack.io"
15
- libraryDependencies += "com.github.yoskhdia" % "sqscala" % <<check latest version from jitpack.>>
17
+ libraryDependencies += "com.github.yoskhdia" % "sqscala" % <<check latest version from jitpack.>> // Scala 2.12
18
+ libraryDependencies += "com.github.yoskhdia" %% "sqscala" % <<check latest version from jitpack.>> // Scala 2.11
16
19
```
17
20
18
21
## How to use
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ elasticMQVersion := "0.10.1"
36
36
nodeAddressConf := NodeAddressConf (port = 9325 )
37
37
restSQSConf := RestSQSConf (bindPort = 9325 )
38
38
39
- startElasticMQ << = startElasticMQ.dependsOn(compile in Test )
40
- test in Test << = (test in Test ).dependsOn(startElasticMQ)
41
- testOptions in Test < += elasticMQTestCleanup
42
- testOnly in Test << = (testOnly in Test ).dependsOn(startElasticMQ)
39
+ startElasticMQ : = startElasticMQ.dependsOn(compile in Test ).value
40
+ test in Test : = (test in Test ).dependsOn(startElasticMQ).value
41
+ testOptions in Test += elasticMQTestCleanup.value
42
+ testOnly in Test : = (testOnly in Test ).dependsOn(startElasticMQ).evaluated
Original file line number Diff line number Diff line change 1
- sbt.version = 0.13.8
1
+ sbt.version = 0.13.13
You can’t perform that action at this time.
0 commit comments