Skip to content

Commit d132200

Browse files
committed
sbt 1.0.1
1 parent ed8bddd commit d132200

File tree

5 files changed

+10
-42
lines changed

5 files changed

+10
-42
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ before_install:
99
language: scala
1010

1111
scala:
12-
- 2.12.2
13-
- 2.11.8
12+
- 2.12.3
13+
- 2.11.11
1414

1515
jdk:
1616
- oraclejdk8
1717

1818
script:
19-
- sbt "scalatest/test-only com.whisk.docker.MongodbServiceSpec" #spotify executor
20-
- sbt "scalatest/test-only com.whisk.docker.ElasticsearchServiceSpec" #docker-java executor
19+
- sbt "scalatest/testOnly com.whisk.docker.MongodbServiceSpec" #spotify executor
20+
- sbt "scalatest/testOnly com.whisk.docker.ElasticsearchServiceSpec" #docker-java executor
2121

2222
cache:
2323
directories:

build.sbt

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,12 @@
1-
def latestScalafmt = "1.0.0-RC4"
2-
3-
commands += Command.args("scalafmt", "Run scalafmt cli.") {
4-
case (state, args) =>
5-
val Right(scalafmt) =
6-
org.scalafmt.bootstrap.ScalafmtBootstrap.fromVersion(latestScalafmt)
7-
scalafmt.main("--non-interactive" +: args.toArray)
8-
state
9-
}
10-
111
lazy val commonSettings = Seq(
122
organization := "com.whisk",
133
version := "0.9.4",
14-
scalaVersion := "2.12.2",
15-
crossScalaVersions := Seq("2.12.2", "2.11.11", "2.10.6"),
4+
scalaVersion := "2.12.3",
5+
crossScalaVersions := Seq("2.12.3", "2.11.11", "2.10.6"),
166
scalacOptions ++= Seq("-feature", "-deprecation"),
177
fork in Test := true,
188
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
199
sonatypeProfileName := "com.whisk",
20-
// TODO Remove once this workaround no longer needed (https://github.com/sbt/sbt/issues/2786):
21-
ivyScala := { ivyScala.value map { _.copy(overrideScalaVersion = sbtPlugin.value) } },
2210
pomExtra in Global := {
2311
<url>https://github.com/whisklabs/docker-it-scala</url>
2412
<scm>

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.15
1+
sbt.version=1.0.1

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
1+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
22

3-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
3+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1")
44

5-
libraryDependencies += "com.geirsson" %% "scalafmt-bootstrap" % "0.6.6"
5+
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.2.0")

sbt

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)