├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENCE ├── README.md ├── library └── src │ ├── main │ └── scala │ │ └── julienrf │ │ └── json │ │ └── derived │ │ ├── DerivedOWrites.scala │ │ ├── DerivedReads.scala │ │ ├── NameAdapter.scala │ │ ├── package.scala │ │ └── typetags.scala │ └── test │ └── scala │ └── julienrf │ └── json │ └── derived │ ├── DerivedOFormatSuite.scala │ └── NameAdapterSuite.scala └── project ├── build.properties └── plugins.sbt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | *.iml 3 | .idea/ 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/README.md -------------------------------------------------------------------------------- /library/src/main/scala/julienrf/json/derived/DerivedOWrites.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/main/scala/julienrf/json/derived/DerivedOWrites.scala -------------------------------------------------------------------------------- /library/src/main/scala/julienrf/json/derived/DerivedReads.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/main/scala/julienrf/json/derived/DerivedReads.scala -------------------------------------------------------------------------------- /library/src/main/scala/julienrf/json/derived/NameAdapter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/main/scala/julienrf/json/derived/NameAdapter.scala -------------------------------------------------------------------------------- /library/src/main/scala/julienrf/json/derived/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/main/scala/julienrf/json/derived/package.scala -------------------------------------------------------------------------------- /library/src/main/scala/julienrf/json/derived/typetags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/main/scala/julienrf/json/derived/typetags.scala -------------------------------------------------------------------------------- /library/src/test/scala/julienrf/json/derived/DerivedOFormatSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/test/scala/julienrf/json/derived/DerivedOFormatSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/julienrf/json/derived/NameAdapterSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/library/src/test/scala/julienrf/json/derived/NameAdapterSuite.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.1 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienrf/play-json-derived-codecs/HEAD/project/plugins.sbt --------------------------------------------------------------------------------