Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to scala 2.13.1 #27

Merged
merged 1 commit into from
Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN cd ./cache/ && sbt -v +compile
ADD ./project ./cache/project/
ADD ./build.sbt ./cache/
RUN mkdir -p ./cache/core/src/test/scala/ ./cache/docs
RUN echo "class Test extends org.scalatest.flatspec.AnyFlatSpec { it should \"x\" in {} }" > ./cache/core/src/test/scala/Test.scala
RUN echo "class Test" > ./cache/core/src/test/scala/Test.scala
RUN echo "Lorem ipsum" > ./cache/docs/index.md
RUN cd ./cache/ && sbt -v ";set every sourceGenerators := List.empty;coverage;+test;website/makeMicrosite"

Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ lazy val website = project
)
},
micrositeAnalyticsToken := "UA-64109905-2",
micrositeDescription := (lokal / description).value
micrositeDescription := (lokal / description).value,
scalaVersion := "2.13.0"
)
.dependsOn(dsl.jvm)
2 changes: 1 addition & 1 deletion scalaVersion.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ThisBuild / scalaVersion := "2.13.0"
ThisBuild / scalaVersion := "2.13.1"

ThisBuild / crossScalaVersions := List("2.11.12", "2.12.10", scalaVersion.value)