-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
163 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.11.13 | ||
0.12.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,35 @@ | ||
import mill._ | ||
import mill.scalalib._ | ||
|
||
object Dependencies { | ||
lazy val circe = { | ||
val version = "0.14.6" | ||
Agg( | ||
ivy"io.circe::circe-core:$version", | ||
ivy"io.circe::circe-generic:$version", | ||
ivy"io.circe::circe-parser:$version" | ||
) | ||
} | ||
lazy val circe = { | ||
val version = "0.14.6" | ||
Agg( | ||
ivy"io.circe::circe-core:$version", | ||
ivy"io.circe::circe-generic:$version", | ||
ivy"io.circe::circe-parser:$version" | ||
) | ||
} | ||
|
||
lazy val http4s = { | ||
val version = "0.23.24" | ||
val jdkClientVersion = "0.5.0" | ||
Agg( | ||
ivy"org.http4s::http4s-dsl:$version", | ||
ivy"org.http4s::http4s-circe:$version", | ||
ivy"org.http4s::http4s-jdk-http-client:$jdkClientVersion" | ||
) | ||
} | ||
lazy val http4s = { | ||
val version = "0.23.24" | ||
val jdkClientVersion = "0.5.0" | ||
Agg( | ||
ivy"org.http4s::http4s-dsl:$version", | ||
ivy"org.http4s::http4s-circe:$version", | ||
ivy"org.http4s::http4s-jdk-http-client:$jdkClientVersion" | ||
) | ||
} | ||
|
||
lazy val circeYaml = Agg(ivy"io.circe::circe-yaml:0.15.1") | ||
lazy val circeYaml = Agg(ivy"io.circe::circe-yaml:0.15.1") | ||
|
||
lazy val bouncycastle = Agg(ivy"org.bouncycastle:bcpkix-jdk18on:1.77") | ||
lazy val bouncycastle = Agg(ivy"org.bouncycastle:bcpkix-jdk18on:1.77") | ||
|
||
lazy val collectionCompat = Agg(ivy"org.scala-lang.modules::scala-collection-compat:2.11.0") | ||
lazy val collectionCompat = Agg(ivy"org.scala-lang.modules::scala-collection-compat:2.11.0") | ||
|
||
lazy val logging = Agg(ivy"org.typelevel::log4cats-slf4j:2.6.0") | ||
lazy val logging = Agg(ivy"org.typelevel::log4cats-slf4j:2.6.0") | ||
|
||
lazy val logback = Agg(ivy"ch.qos.logback:logback-classic:1.4.11") | ||
lazy val logback = Agg(ivy"ch.qos.logback:logback-classic:1.4.11") | ||
|
||
lazy val java8compat = Agg(ivy"org.scala-lang.modules::scala-java8-compat:1.0.2") | ||
lazy val java8compat = Agg(ivy"org.scala-lang.modules::scala-java8-compat:1.0.2") | ||
|
||
lazy val tests = Agg(ivy"org.scalameta::munit:0.7.29") | ||
} | ||
lazy val tests = Agg(ivy"org.scalameta::munit:0.7.29") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters