All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala-sttp4.build.sbt.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
version := "{{artifactVersion}}"
name := "{{artifactId}}"
organization := "{{groupId}}"

scalaVersion := "2.13.10"
crossScalaVersions := Seq(scalaVersion.value, "2.12.17")

libraryDependencies ++= Seq(
  "com.softwaremill.sttp.client4" %% "core" % "{{sttpClientVersion}}",
{{#joda}}
  "joda-time" % "joda-time" % "{{jodaTimeVersion}}",
{{/joda}}
{{#json4s}}
  "com.softwaremill.sttp.client4" %% "json4s" % "{{sttpClientVersion}}",
  "org.json4s" %% "json4s-jackson" % "{{json4sVersion}}"
{{/json4s}}
{{#circe}}
  "com.softwaremill.sttp.client4" %% "circe" % "{{sttpClientVersion}}"
{{/circe}}
)

scalacOptions := Seq(
  "-unchecked",
  "-deprecation",
  "-feature"
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy