├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.iws 3 | *.ipr 4 | target 5 | .idea/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This repository is deprecated. All examples have moved to the [JavaLite Examples](https://github.com/javalite/javalite-examples) repo. 2 | --------------------------------------------------------------------------------