This is a fork of the discontinued play-json-schema-validator. No new features/library updates/etc planned; fork was created just because the prebuilt artifacts were removed from bintray.
Code wasn't touched, it matches exactly 0.9.5 of the original repository.
Add sbt-github-packages plugin to your project/plugins.sbt file:
addSbtPlugin("com.codecommit" % "sbt-github-packages" % "0.5.3")Add the resolver and GitHub token source to your build.sbt:
resolvers += Resolver.githubPackages("devcode-ac")
githubTokenSource := TokenSource.Environment("GITHUB_TOKEN")You'll need a valid GitHub token exported via GITHUB_TOKEN env variable to fetch the package.
Finally, add the dependency:
libraryDependencies += "com.eclipsesource" %% "play-json-schema-validator" % "0.9.5"