Skip to content

Commit

Permalink
Disable 2.13, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Apr 23, 2019
1 parent e7cc250 commit 72c7561
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
jdk: openjdk11
scala: 2.11.12
name: "Build (JDK11, 2.11)"
- <<: *build
scala: 2.13.0-M5
name: "Build (JDK8, 2.13)"
- <<: *build
jdk: openjdk11
scala: 2.13.0-M5
name: "Build (JDK11, 2.13)"
# - <<: *build
# scala: 2.13.0-M5
# name: "Build (JDK8, 2.13)"
# - <<: *build
# jdk: openjdk11
# scala: 2.13.0-M5
# name: "Build (JDK11, 2.13)"
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val mainScala = "2.12.8"
val allScala = Seq("2.11.12", mainScala, "2.13.0-M5")
val allScala = Seq("2.11.12", mainScala)

organization := "com.nequissimus"
name := "zio-slf4j"
Expand All @@ -18,13 +18,13 @@ parallelExecution in Test := false
fork in Test := true

libraryDependencies ++= Seq(
"com.lihaoyi" %% "sourcecode" % "0.1.5",
"com.lihaoyi" %% "utest" % "0.6.6" % Test,
"com.lihaoyi" %% "sourcecode" % "0.1.6",
"com.lihaoyi" %% "utest" % "0.6.7" % Test,
"org.scalaz" %% "scalaz-core" % "7.2.27",
"org.scalaz" %% "scalaz-zio" % "1.0-RC4",
"org.slf4j" % "slf4j-api" % "1.7.26",
compilerPlugin("com.github.ghik" %% "silencer-plugin" % "1.3.2"),
"com.github.ghik" %% "silencer-lib" % "1.3.2" % Provided
compilerPlugin("com.github.ghik" %% "silencer-plugin" % "1.3.3"),
"com.github.ghik" %% "silencer-lib" % "1.3.3" % Provided
)

testFrameworks += new TestFramework("utest.runner.Framework")
Expand Down

0 comments on commit 72c7561

Please sign in to comment.