Scala 2.12 and Travis.ci - how to exclude the combination with Java 6? -


adding scala 2.12 .travis.yml produces new problem me, because builds fail under java 6:

language: scala  scala:   - 2.12.0   - 2.11.8   - 2.10.6  jdk:   - oraclejdk8   - openjdk6 

how can fix exclude combination (scala 2.12.0, jdk opendjk6)?

a simple search rendered answer looking for, believe travis.yml needs configuration

matrix:   # scala 2.12 requires java 8   exclude:     - scala: 2.12.0-m5       env: jdk=oraclejdk7     - scala: 2.12.0-m5       env: jdk=openjdk7     - scala: 2.12.0-rc1       env: jdk=oraclejdk7     - scala: 2.12.0-rc1       env: jdk=openjdk7     - scala: 2.12.0-rc2       env: jdk=oraclejdk7     - scala: 2.12.0-rc2       env: jdk=openjdk7     - scala: 2.12.0       env: jdk=oraclejdk7     - scala: 2.12.0       env: jdk=openjdk7 

https://github.com/typesafehub/scala-logging/blob/master/.travis.yml


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -