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