├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── project.clj ├── src └── leiningen │ ├── ancient.clj │ └── ancient │ ├── artifact │ ├── check.clj │ ├── files.clj │ ├── options.clj │ ├── reader.clj │ └── zip.clj │ ├── check.clj │ ├── cli.clj │ ├── collect.clj │ ├── console.clj │ ├── get.clj │ ├── test.clj │ ├── upgrade.clj │ ├── utils.clj │ └── verbose.clj └── test └── leiningen └── ancient ├── artifact ├── check_test.clj ├── files_test.clj ├── reader_test.clj └── zip_test.clj └── cli_test.clj /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/project.clj -------------------------------------------------------------------------------- /src/leiningen/ancient.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/artifact/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/artifact/check.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/artifact/files.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/artifact/files.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/artifact/options.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/artifact/options.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/artifact/reader.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/artifact/reader.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/artifact/zip.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/artifact/zip.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/check.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/cli.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/cli.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/collect.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/collect.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/console.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/console.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/get.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/get.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/test.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/upgrade.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/upgrade.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/utils.clj -------------------------------------------------------------------------------- /src/leiningen/ancient/verbose.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/src/leiningen/ancient/verbose.clj -------------------------------------------------------------------------------- /test/leiningen/ancient/artifact/check_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/test/leiningen/ancient/artifact/check_test.clj -------------------------------------------------------------------------------- /test/leiningen/ancient/artifact/files_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/test/leiningen/ancient/artifact/files_test.clj -------------------------------------------------------------------------------- /test/leiningen/ancient/artifact/reader_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/test/leiningen/ancient/artifact/reader_test.clj -------------------------------------------------------------------------------- /test/leiningen/ancient/artifact/zip_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/test/leiningen/ancient/artifact/zip_test.clj -------------------------------------------------------------------------------- /test/leiningen/ancient/cli_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsc/lein-ancient/HEAD/test/leiningen/ancient/cli_test.clj --------------------------------------------------------------------------------