Skip to content

Commit

Permalink
Merge pull request playframework#61 from renatocaval/templatecontrol-…
Browse files Browse the repository at this point in the history
…2.6.x

Upgrade branch 2.6.x using TemplateControl
  • Loading branch information
octonato authored Nov 20, 2018
2 parents 58ee5f1 + 0a371a6 commit b3b8914
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
12 changes: 3 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ scala:
- 2.12.6
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
- oraclejdk11
- openjdk11
env:
matrix:
- SCRIPT=scripts/test-sbt
Expand All @@ -29,19 +27,15 @@ before_cache:
matrix:
exclude:
- scala: 2.11.12
jdk: oraclejdk9
- scala: 2.11.12
jdk: oraclejdk10
- scala: 2.11.12
jdk: oraclejdk11
jdk: openjdk11
allow_failures:
# We should allow failures here since Java 11 removed some modules including
# java.xml.bind which we are adding when running with Java 9+. For more details
# see http://openjdk.java.net/jeps/320
#
# Play already has a fix for that, but it needs to be backported and released
# for 2.6.x: https://github.com/playframework/playframework/pull/8382
- jdk: oraclejdk11
- jdk: openjdk11

# See https://blog.travis-ci.com/2014-03-13-slack-notifications/
# created with travis encrypt command line tool
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id "com.github.lkishalmi.gatling" version "0.7.1"
}

def playVersion = "2.6.19"
def playVersion = "2.6.20"
def scalaVersion = System.getProperty("scala.binary.version", /* default = */ "2.12")
def gatlingVersion = getGlatlingVersion(scalaVersion)

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def gatlingVersion(scalaBinVer: String): String = scalaBinVer match {

inThisBuild(
List(
scalaVersion := "2.12.6",
crossScalaVersions := Seq("2.11.12", "2.12.6"),
scalaVersion := "2.12.7",
crossScalaVersions := Seq("2.11.12", "2.12.7"),
dependencyOverrides := Seq(
"org.codehaus.plexus" % "plexus-utils" % "3.0.18",
"com.google.code.findbugs" % "jsr305" % "3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.19")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.20")

// Load testing tool:
// http://gatling.io/docs/2.2.2/extensions/sbt_plugin.html
Expand Down

0 comments on commit b3b8914

Please sign in to comment.