You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding "io.circe" %% "circe-json-schema" % "0.1.0" to my dependencies does not work, although other circe packages like "io.circe" %% "circe-core" % "0.8.0" do work, which suggests that there's possibly some issue right now with the custom resolver.
I got around this issue by using the Maven version, "io.circe" % "circe-json-schema_2.13" % "0.1.0", but wanted to let you know the documented way of adding the package does not appear to be working for me.
The text was updated successfully, but these errors were encountered:
That's very strange, since %% should just be syntactic sugar for the version suffix. Can you share more information about your versions and build configuration?
This is old, But for anyone else who finds their way here.
I belive the above issue is due to this package not being published for 2.11.
In your maven configuration you specify 2.13 explicitly, but with jitpack you use %% wich translates to "io.circe" % "circe-json-schema_2.11" % "0.1.0" when used in combination with scalaVersion := "2.11.12"
Adding
"io.circe" %% "circe-json-schema" % "0.1.0"
to my dependencies does not work, although other circe packages like"io.circe" %% "circe-core" % "0.8.0"
do work, which suggests that there's possibly some issue right now with the custom resolver.I got around this issue by using the Maven version,
"io.circe" % "circe-json-schema_2.13" % "0.1.0",
but wanted to let you know the documented way of adding the package does not appear to be working for me.The text was updated successfully, but these errors were encountered: