-
Notifications
You must be signed in to change notification settings - Fork 2
Upgrades #1
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
Upgrades #1
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: scala | ||
scala: | ||
- 2.11.5 | ||
- 2.12.7 | ||
|
||
jdk: | ||
- openjdk6 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name := "introduction-to-fp-in-scala" | ||
|
||
scalaVersion := "2.11.5" | ||
scalaVersion := "2.12.7" | ||
|
||
libraryDependencies ++= Seq( | ||
"org.scalaz" %% "scalaz-core" % "7.1.1" | ||
, "org.scalaz" %% "scalaz-scalacheck-binding" % "7.1.1" % "test" | ||
, "org.scalaz.stream" %% "scalaz-stream" % "0.6a" | ||
, "org.specs2" %% "specs2" % "2.4.5" % "test" | ||
, "org.scalacheck" %% "scalacheck" % "1.12.2" % "test" | ||
"org.scalaz" %% "scalaz-core" % "7.2.27" | ||
, "org.scalaz" %% "scalaz-scalacheck-binding" % "7.2.27-scalacheck-1.14" % "test" | ||
, "org.scalaz.stream" %% "scalaz-stream" % "0.8.6a" | ||
, "org.specs2" %% "specs2" % "3.8.9" % "test" exclude("org.specs2", "specs2-cats_2.12") | ||
, "org.scalacheck" %% "scalacheck" % "1.14.0" % "test" | ||
) | ||
|
||
resolvers ++= Seq( | ||
|
@@ -20,9 +20,9 @@ scalacOptions := Seq( | |
"-deprecation" | ||
, "-unchecked" | ||
, "-Xfatal-warnings" | ||
, "-Xlint" | ||
, "-Xlint:_,-unused" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't want unused errors because the exercises import useful things but don't use them (until the exercises are implemented) |
||
, "-feature" | ||
, "-language:_" | ||
) | ||
|
||
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.7") | ||
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.8") |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ declare -r latest_28="2.8.2" | |
|
||
declare -r buildProps="project/build.properties" | ||
|
||
declare -r sbt_launch_ivy_release_repo="https://repo.typesafe.com/typesafe/ivy-releases" | ||
declare -r sbt_launch_ivy_release_repo="http://repo.typesafe.com/typesafe/ivy-releases" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I redownloaded the sbt script. Weird change, happy to undo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I manually changed them to https, I don't know why Paul would want it to be http. We should probably push that change upstream. |
||
declare -r sbt_launch_ivy_snapshot_repo="https://repo.scala-sbt.org/scalasbt/ivy-snapshots" | ||
declare -r sbt_launch_mvn_release_repo="https://repo.scala-sbt.org/scalasbt/maven-releases" | ||
declare -r sbt_launch_mvn_snapshot_repo="https://repo.scala-sbt.org/scalasbt/maven-snapshots" | ||
declare -r sbt_launch_mvn_release_repo="http://repo.scala-sbt.org/scalasbt/maven-releases" | ||
declare -r sbt_launch_mvn_snapshot_repo="http://repo.scala-sbt.org/scalasbt/maven-snapshots" | ||
|
||
declare -r default_jvm_opts_common="-Xms512m -Xss2m" | ||
declare -r noshare_opts="-Dsbt.global.base=project/.sbtboot -Dsbt.boot.directory=project/.boot -Dsbt.ivy.home=project/.ivy" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For some reason testOnly wasn't working when these things were quoted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah not sure why I put the quotes in 👍