Skip to content

Commit

Permalink
match dependencies with geotrellis 3.6.3 (#602)
Browse files Browse the repository at this point in the history
* Bump dependencies

* allow fs2-core conflict

* jts bugfix

* sttp 3.7.0
  • Loading branch information
echeipesh authored Mar 27, 2023
1 parent 53c5934 commit f69cfe3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions project/RFDependenciesPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object RFDependenciesPlugin extends AutoPlugin {
val rfGeoMesaVersion = settingKey[String]("GeoMesa version")

def geotrellis(module: String) = Def.setting {
"org.locationtech.geotrellis" %% s"geotrellis-$module" % rfGeoTrellisVersion.value
"org.locationtech.geotrellis" %% s"geotrellis-$module" % rfGeoTrellisVersion.value excludeAll("org.scala-lang.modules", "scala-xml")
}
def spark(module: String) = Def.setting {
"org.apache.spark" %% s"spark-$module" % rfSparkVersion.value
Expand All @@ -41,7 +41,7 @@ object RFDependenciesPlugin extends AutoPlugin {
}
def circe(module: String) = Def.setting {
module match {
case "json-schema" => "io.circe" %% s"circe-$module" % "0.1.0"
case "json-schema" => "io.circe" %% s"circe-$module" % "0.2.0"
case _ => "io.circe" %% s"circe-$module" % "0.14.1"
}
}
Expand All @@ -51,9 +51,9 @@ object RFDependenciesPlugin extends AutoPlugin {
val `slf4j-api` = "org.slf4j" % "slf4j-api" % "1.7.36"
val scaffeine = "com.github.blemale" %% "scaffeine" % "4.1.0"
val `spray-json` = "io.spray" %% "spray-json" % "1.3.6"
val `scala-logging` = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.4"
val stac4s = "com.azavea.stac4s" %% "client" % "0.7.2"
val sttpCatsCe2 = "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats-ce2" % "3.3.15"
val `scala-logging` = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"
val stac4s = "com.azavea.stac4s" %% "client" % "0.8.1"
val sttpCatsCe2 = "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats-ce2" % "3.7.0"
val frameless = "org.typelevel" %% "frameless-dataset" % "0.13.0"
val framelessRefined = "org.typelevel" %% "frameless-refined" % "0.13.0"
val `better-files` = "com.github.pathikrit" %% "better-files" % "3.9.1" % Test
Expand All @@ -74,6 +74,6 @@ object RFDependenciesPlugin extends AutoPlugin {
// NB: Make sure to update the Spark version in pyrasterframes/python/setup.py
rfSparkVersion := "3.3.1",
rfGeoTrellisVersion := "3.6.3",
rfGeoMesaVersion := "3.4.1"
rfGeoMesaVersion := "3.5.1"
)
}
2 changes: 1 addition & 1 deletion project/RFProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ object RFProjectPlugin extends AutoPlugin {
scmInfo := Some(ScmInfo(url("https://github.com/locationtech/rasterframes"), "git@github.com:locationtech/rasterframes.git")),
description := "RasterFrames brings the power of Spark DataFrames to geospatial raster data.",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html")),
scalaVersion := "2.12.15",
scalaVersion := "2.12.17",
scalacOptions ++= Seq(
"-target:jvm-1.8",
"-feature",
Expand Down

0 comments on commit f69cfe3

Please sign in to comment.