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

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

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

scalaVersion := "2.13.0"

crossScalaVersions := Seq(scalaVersion.value, "2.12.10",  "2.11.12")

libraryDependencies ++= Seq(
  "com.softwaremill.sttp.client" %% "core" % "2.0.0",
  "com.softwaremill.sttp.client" %% "json4s" % "2.0.0",
{{#joda}}
  "joda-time" % "joda-time" % "2.10.1",
{{/joda}}
  "org.json4s" %% "json4s-jackson" % "3.6.7",
  // test dependencies
  "org.scalatest" %% "scalatest" % "3.0.8" % Test,
  "junit" % "junit" % "4.13" % "test"
)

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

publishArtifact in (Compile, packageDoc) := false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy