Skip to content

Commit

Permalink
Filter out some deps from the updates report (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fede Fernández authored and andyscott committed Feb 20, 2018
1 parent 7a2e517 commit 84a417b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ lazy val corez = module("core", hideFolder = true, prefixSuffix = "z")
flags = "scalaz" :: Nil,
yaxScala = true))
.crossDepSettings(
"org.scalaz" %% "scalaz-core" % "7.2.15")
"org.scalaz" %% "scalaz-core" % "7.2.19")

lazy val corezJVM = corez.jvm
lazy val corezJS = corez.js
Expand Down Expand Up @@ -109,7 +109,7 @@ lazy val examplesScalaz = module("examples-scalaz")
.settings(noPublishSettings)
.settings(macroSettings)
.crossDepSettings(
"org.scalaz" %% "scalaz-effect" % "7.2.15")
"org.scalaz" %% "scalaz-effect" % "7.2.19")

lazy val examplesScalazJVM = examplesScalaz.jvm
lazy val examplesScalazJS = examplesScalaz.js
Expand All @@ -134,7 +134,7 @@ lazy val docs = jvmModule("docs")
scalacOptions in Tut := Nil,
tutTargetDirectory := (baseDirectory in LocalRootProject).value / "docs")
.settings(libraryDependencies +=
"org.scalaz" %% "scalaz-effect" % "7.2.15")
"org.scalaz" %% "scalaz-effect" % "7.2.19")

lazy val bench = jvmModule("bench")
.enablePlugins(JmhPlugin)
Expand Down Expand Up @@ -168,4 +168,4 @@ lazy val macroSettings: Seq[Setting[_]] = Seq(
libraryDependencies ++= Seq(
scalaOrganization.value % "scala-compiler" % scalaVersion.value % Provided,
scalaOrganization.value % "scala-reflect" % scalaVersion.value % Provided,
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.patch)))
compilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.patch)))
12 changes: 6 additions & 6 deletions project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ import sbtorgpolicies.OrgPoliciesKeys.orgBadgeListSetting
import sbtorgpolicies.OrgPoliciesPlugin.autoImport._
import sbtorgpolicies.templates.badges._
import sbtorgpolicies.templates._
import sbtorgpolicies.runnable.syntax._
import dependencies.DependenciesPlugin.autoImport._
import scoverage.ScoverageKeys._
import org.scalajs.sbtplugin.cross.{CrossProject, CrossType}
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
import de.heikoseeberger.sbtheader.HeaderPlugin.autoImport._
import tut.TutPlugin.autoImport._
import com.timushev.sbt.updates.UpdatesPlugin.autoImport._

object ProjectPlugin extends AutoPlugin {

Expand Down Expand Up @@ -88,9 +86,11 @@ object ProjectPlugin extends AutoPlugin {
outputStrategy := Some(StdoutOutput),
connectInput in run := true,
cancelable in Global := true,

crossScalaVersions := List("2.11.12", "2.12.4"),
scalaVersion := "2.12.4"
crossScalaVersions := List("2.11.12", "2.12.4"),
scalaVersion := "2.12.4",
dependencyUpdatesFilter -= moduleFilter(organization = "org.eclipse.jetty") |
moduleFilter(organization = "org.openjdk.jmh") |
moduleFilter(organization = "pl.project13.scala", name = "sbt-jmh-extras")
)

}

0 comments on commit 84a417b

Please sign in to comment.