Skip to content

Commit 84221d4

Browse files
authored
Merge pull request #6 from sjrd/upgrades
Upgrades.
2 parents 51c42ff + b54df5a commit 84221d4

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

.travis.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
sudo: false
22
language: scala
33
scala:
4-
- 2.10.6
5-
- 2.11.11
6-
- 2.12.2
4+
- 2.10.7
5+
- 2.11.12
6+
- 2.12.4
77
jdk:
88
- oraclejdk8
99
env:
1010
- JSDOM_VERSION=9.12.0
1111
- JSDOM_VERSION=10.0.0
1212
install:
13-
# The default ivy resolution takes way too much time, and times out Travis builds.
14-
# We use coursier instead.
15-
- mkdir -p $HOME/.sbt/0.13/plugins/
16-
- echo 'addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-RC3")' > $HOME/.sbt/0.13/plugins/coursier.sbt
1713
# We need a recent version of Node.js for jsdom
1814
- nvm install 6
1915
- nvm use 6
@@ -31,4 +27,3 @@ cache:
3127
before_cache:
3228
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
3329
- find $HOME/.sbt -name "*.lock" -print -delete
34-
- rm $HOME/.sbt/0.13/plugins/coursier.sbt

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ inThisBuild(Seq(
22
version := "1.0.0-SNAPSHOT",
33
organization := "org.scala-js",
44

5-
crossScalaVersions := Seq("2.10.6", "2.11.11", "2.12.2"),
6-
scalaVersion := "2.11.11",
5+
crossScalaVersions := Seq("2.12.4", "2.10.7", "2.11.12"),
6+
scalaVersion := crossScalaVersions.value.head,
77
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
88

99
homepage := Some(url("https://www.scala-js.org/")),

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=0.13.16

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.0-M1")
1+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.0-M2")
22

3-
libraryDependencies += "org.scala-js" %% "scalajs-env-nodejs" % "1.0.0-M1"
3+
libraryDependencies += "org.scala-js" %% "scalajs-env-nodejs" % "1.0.0-M2"
44

55
unmanagedSourceDirectories in Compile +=
66
baseDirectory.value.getParentFile / "jsdom-nodejs-env/src/main/scala"

0 commit comments

Comments
 (0)