Skip to content

Commit 826182c

Browse files
committed
allow building on JDK 11
note that the ambition level at present doesn't extend to adding JDK 9 or 10 or 11 to the Travis-CI matrix. we just want to be able to build scala-swing in the Scala community build on JDK 11, and this change is necessary for that.
1 parent 1175a52 commit 826182c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ jdk: oraclejdk8
1616
notifications:
1717
email:
1818
- adriaan.moors@lightbend.com
19+
- seth.tisue@lightbend.com
1920
- andy@hicks.net

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ scalacOptions ++= Seq("-deprecation", "-feature")
1212
scalaVersionsByJvm in ThisBuild := Map(
1313
8 -> List("2.11.12", "2.12.6", "2.13.0-M3").map(_ -> true),
1414
9 -> List("2.11.12", "2.12.6", "2.13.0-M3").map(_ -> false),
15-
10 -> List("2.11.12", "2.12.6", "2.13.0-M3").map(_ -> false)
15+
10 -> List("2.11.12", "2.12.6", "2.13.0-M3").map(_ -> false),
16+
11 -> List("2.11.12", "2.12.6", "2.13.0-M3").map(_ -> false)
1617
)
1718

1819
OsgiKeys.exportPackage := Seq(s"scala.swing.*;version=${version.value}")

0 commit comments

Comments
 (0)