├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deps.edn ├── slim └── deps.edn └── src └── org └── corfield └── build.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/deps.edn -------------------------------------------------------------------------------- /slim/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/slim/deps.edn -------------------------------------------------------------------------------- /src/org/corfield/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seancorfield/build-clj/HEAD/src/org/corfield/build.clj --------------------------------------------------------------------------------