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

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

There is a newer version: 7.9.0
Show newest version
scalaVersion := "3.3.3"

version := "{{artifactVersion}}"
name := "{{artifactId}}"
organization := "{{groupId}}"

val CirceVersion   = "0.14.9"
val Http4sVersion  = "0.23.26"

libraryDependencies ++= Seq(
  "org.http4s"   %% "http4s-ember-client" % Http4sVersion,
  "org.http4s"   %% "http4s-circe"        % Http4sVersion,
  "org.http4s"   %% "http4s-dsl"          % Http4sVersion,
  "org.http4s"   %% "http4s-client"       % Http4sVersion,
  "io.circe" %% "circe-core"    % CirceVersion,
  "io.circe" %% "circe-generic" % CirceVersion,
  "io.circe" %% "circe-parser"  % CirceVersion,
  "org.scalatest" %% "scalatest"  % "3.2.19"   % "test"
)

scalacOptions := Seq(
  "-encoding",
  "UTF-8",
  "-deprecation",
  "-unchecked",
  "-feature",
  "-language:existentials,experimental.macros,higherKinds,implicitConversions,postfixOps,adhocExtensions",
  "-Yretain-trees",
  "-Xmax-inlines:100",
  "-Ykind-projector:underscores",
  "-source:future"
)

Compile / publishArtifact := false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy