├── .gitignore ├── LICENSE ├── README.md ├── project.clj └── src ├── lein_git_deps └── plugin.clj └── leiningen └── git_deps.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/project.clj -------------------------------------------------------------------------------- /src/lein_git_deps/plugin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/src/lein_git_deps/plugin.clj -------------------------------------------------------------------------------- /src/leiningen/git_deps.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyhede/lein-git-deps/HEAD/src/leiningen/git_deps.clj --------------------------------------------------------------------------------