├── .git-blame-ignore-revs ├── .github ├── release-drafter.yml └── workflows │ ├── build.yml │ ├── drafter.yml │ ├── release.yml │ └── scala-steward.yml ├── .gitignore ├── .scala-steward.conf ├── .scalafmt.conf ├── .travis.yml ├── LICENSE ├── README.md ├── hooks ├── install-hooks.sh └── pre-push ├── project ├── build.properties ├── plugins.sbt └── project │ └── build.properties ├── src ├── main │ └── scala │ │ └── play │ │ └── api │ │ └── libs │ │ └── circe │ │ └── Circe.scala └── test │ └── scala │ └── play │ └── api │ └── libs │ └── circe │ ├── CirceController.scala │ ├── CirceSpec.scala │ ├── Fakes.scala │ └── Models.scala └── version.sbt /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.github/workflows/drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scala-steward.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.github/workflows/scala-steward.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.gitignore -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/README.md -------------------------------------------------------------------------------- /hooks/install-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/hooks/install-hooks.sh -------------------------------------------------------------------------------- /hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/hooks/pre-push -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.5 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/project/build.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/scala/play/api/libs/circe/Circe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/src/main/scala/play/api/libs/circe/Circe.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/libs/circe/CirceController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/src/test/scala/play/api/libs/circe/CirceController.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/libs/circe/CirceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/src/test/scala/play/api/libs/circe/CirceSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/libs/circe/Fakes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/src/test/scala/play/api/libs/circe/Fakes.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/libs/circe/Models.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jilen/play-circe/HEAD/src/test/scala/play/api/libs/circe/Models.scala -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | ThisBuild / version := "3014.2-SNAPSHOT" 2 | --------------------------------------------------------------------------------