gitextract_s64bzl69/ ├── .build.yml ├── .circleci/ │ └── config.yml ├── .gitattributes ├── .github/ │ └── README.md ├── .gitignore ├── CONTRIBUTING.md ├── COPYING ├── NEWS.md ├── README.md ├── bash_completion.bash ├── bin/ │ ├── bump │ ├── issues.clj │ ├── lein │ ├── lein-pkg │ ├── lein.bat │ ├── lein.cmd │ ├── lein.ps1 │ └── release ├── doc/ │ ├── BEGINNER_MISTAKES.md │ ├── DEPLOY.md │ ├── FAQ.md │ ├── GPG.md │ ├── MANAGED_DEPS.md │ ├── MIXED_PROJECTS.md │ ├── PLUGINS.md │ ├── PROFILES.md │ ├── TEMPLATES.md │ ├── TUTORIAL.md │ ├── ja/ │ │ ├── PLUGINS_ja.md │ │ ├── TUTORIAL_ja.md │ │ └── lein_ja.1 │ └── lein.1 ├── lein-pprint/ │ ├── README.md │ ├── project.clj │ ├── src/ │ │ └── leiningen/ │ │ └── pprint.clj │ └── test/ │ └── leiningen/ │ └── test/ │ └── pprint.clj ├── leiningen-core/ │ ├── README.md │ ├── dev-resources/ │ │ ├── checkouts/ │ │ │ ├── lib1/ │ │ │ │ └── project.clj │ │ │ └── lib2/ │ │ │ └── project.clj │ │ ├── p1.clj │ │ ├── p2.clj │ │ ├── p3.clj │ │ ├── p4.clj │ │ ├── p5.clj │ │ ├── profile-metadata.clj │ │ └── replace-repositories.clj │ ├── project.clj │ ├── src/ │ │ └── leiningen/ │ │ └── core/ │ │ ├── classpath.clj │ │ ├── eval.clj │ │ ├── main.clj │ │ ├── pedantic.clj │ │ ├── project.clj │ │ ├── ssl.clj │ │ ├── user.clj │ │ └── utils.clj │ └── test/ │ ├── leiningen/ │ │ ├── bluuugh.clj │ │ ├── core/ │ │ │ └── test/ │ │ │ ├── classpath.clj │ │ │ ├── eval.clj │ │ │ ├── helper.clj │ │ │ ├── main.clj │ │ │ ├── mirrors.clj │ │ │ ├── pedantic.clj │ │ │ ├── project.clj │ │ │ ├── user.clj │ │ │ └── utils.clj │ │ ├── fixed_and_var_args.clj │ │ ├── one_or_two.clj │ │ ├── sirius.clj │ │ ├── var_args.clj │ │ └── zero.clj │ └── resources/ │ └── profiles-empty.clj ├── pcmpl-lein.el ├── project.clj ├── resources/ │ ├── leiningen/ │ │ ├── bootclasspath-deps.clj │ │ └── new/ │ │ ├── app/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── core.clj │ │ │ ├── gitignore │ │ │ ├── hgignore │ │ │ ├── intro.md │ │ │ ├── project.clj │ │ │ └── test.clj │ │ ├── default/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── core.clj │ │ │ ├── gitignore │ │ │ ├── hgignore │ │ │ ├── intro.md │ │ │ ├── project.clj │ │ │ └── test.clj │ │ ├── plugin/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gitignore │ │ │ ├── hgignore │ │ │ ├── name.clj │ │ │ └── project.clj │ │ └── template/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── foo.clj │ │ ├── gitignore │ │ ├── hgignore │ │ ├── project.clj │ │ └── temp.clj │ └── repl-welcome ├── sample.project.clj ├── src/ │ └── leiningen/ │ ├── change.clj │ ├── check.clj │ ├── classpath.clj │ ├── clean.clj │ ├── compile.clj │ ├── deploy.clj │ ├── deps.clj │ ├── do.clj │ ├── help.clj │ ├── install.clj │ ├── jar.clj │ ├── javac.clj │ ├── new/ │ │ ├── app.clj │ │ ├── default.clj │ │ ├── plugin.clj │ │ ├── template.clj │ │ └── templates.clj │ ├── new.clj │ ├── plugin.clj │ ├── pom.clj │ ├── release.clj │ ├── repl.clj │ ├── retest.clj │ ├── run.clj │ ├── search.clj │ ├── show_profiles.clj │ ├── static_classpath.clj │ ├── test.clj │ ├── trampoline.clj │ ├── uberjar.clj │ ├── update_in.clj │ ├── upgrade.clj │ ├── vcs.clj │ ├── version.clj │ └── with_profile.clj ├── test/ │ ├── .gnupg/ │ │ ├── gpg.conf │ │ ├── pubring.kbx │ │ └── trustdb.gpg │ ├── leiningen/ │ │ ├── echo.clj │ │ ├── project.clj │ │ └── test/ │ │ ├── change.clj │ │ ├── check.clj │ │ ├── clean.clj │ │ ├── compile.clj │ │ ├── deploy.clj │ │ ├── deps.clj │ │ ├── do.clj │ │ ├── help.clj │ │ ├── helper.clj │ │ ├── install.clj │ │ ├── jar.clj │ │ ├── javac.clj │ │ ├── jvm_opts.clj │ │ ├── new/ │ │ │ └── templates.clj │ │ ├── new.clj │ │ ├── pom.clj │ │ ├── release.clj │ │ ├── repl.clj │ │ ├── run.clj │ │ ├── search.clj │ │ ├── static_classpath.clj │ │ ├── test.clj │ │ ├── uberjar.clj │ │ ├── update_in.clj │ │ ├── vcs.clj │ │ └── with_profile.clj │ ├── sample-connect-string │ └── sample-connect-string-http ├── test_projects/ │ ├── .ssh/ │ │ ├── allowed_signers │ │ ├── id_rsa │ │ ├── id_rsa.pub │ │ └── verify │ ├── README.txt │ ├── bad-require/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── bad_require/ │ │ └── core.clj │ ├── data-readers-backwards-compatibility/ │ │ └── project.clj │ ├── file-not-found-thrower/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── file_not_found_thrower/ │ │ └── core.clj │ ├── java-main/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── java/ │ │ └── my/ │ │ └── java/ │ │ └── Main.java │ ├── jvm-opts/ │ │ └── project.clj │ ├── leaky-composite/ │ │ └── project.clj │ ├── lein-test-exit-code/ │ │ ├── project.clj │ │ └── test/ │ │ └── lein_test_exit_code/ │ │ └── core_test.clj │ ├── lein-test-reload-bug/ │ │ ├── project.clj │ │ └── test/ │ │ └── lein_test_reload_bug/ │ │ ├── a_deftype.clj │ │ ├── b_protocol.clj │ │ └── core_test.clj │ ├── managed-deps/ │ │ └── project.clj │ ├── managed-deps-snapshot/ │ │ └── project.clj │ ├── more-gen-classes/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doc/ │ │ │ └── intro.md │ │ ├── project.clj │ │ └── src/ │ │ └── more_gen_classes/ │ │ ├── bar.clj │ │ ├── baz.clj │ │ └── foo.clj │ ├── native/ │ │ ├── .gitignore │ │ └── project.clj │ ├── overlapped-sourcepaths/ │ │ ├── project.clj │ │ └── src/ │ │ └── foo │ ├── preserve-eval-meta/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── preserve_eval_meta/ │ │ └── core.clj │ ├── provided/ │ │ ├── project.clj │ │ └── src/ │ │ └── provided/ │ │ └── core/ │ │ └── Example.java │ ├── reflector/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── reflector/ │ │ ├── classy.clj │ │ └── main.clj │ ├── sample/ │ │ ├── .nrepl-port │ │ ├── checkouts/ │ │ │ └── sample2/ │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ ├── project.clj │ │ │ ├── src/ │ │ │ │ └── sample2/ │ │ │ │ ├── alt.clj │ │ │ │ └── core.clj │ │ │ └── test/ │ │ │ └── sample2/ │ │ │ └── core_test.clj │ │ ├── project.clj │ │ ├── src/ │ │ │ └── nom/ │ │ │ └── nom/ │ │ │ ├── check.clj │ │ │ └── nom.clj │ │ └── test/ │ │ └── test_nom_nom_nom.clj │ ├── sample-bad-user/ │ │ ├── project.clj │ │ ├── src/ │ │ │ └── nom/ │ │ │ └── nom/ │ │ │ ├── check.clj │ │ │ └── nom.clj │ │ └── test/ │ │ └── user.clj │ ├── sample-deploy/ │ │ ├── deploy-me-0.1.0-SNAPSHOT-fat.jarr │ │ └── project.clj │ ├── sample-failing/ │ │ ├── project.clj │ │ ├── src/ │ │ │ └── nom/ │ │ │ └── nom/ │ │ │ └── nom.clj │ │ └── test/ │ │ └── sample/ │ │ └── unreadable.clj │ ├── sample-fixture-error/ │ │ ├── project.clj │ │ └── test/ │ │ ├── test_a.clj │ │ ├── test_b.clj │ │ └── test_c.clj │ ├── sample-no-aot/ │ │ ├── dev-resources/ │ │ │ └── dev.clj │ │ ├── project.clj │ │ ├── src/ │ │ │ └── nom/ │ │ │ └── nom/ │ │ │ └── nom.clj │ │ └── test/ │ │ ├── namespace.clj │ │ └── selectors.clj │ ├── sample-ordered-aot/ │ │ ├── project.clj │ │ └── src/ │ │ └── sample_ordered_aot/ │ │ ├── baz.clj │ │ └── foo.clj │ ├── sample-profile-meta/ │ │ └── project.clj │ ├── sample-reader-cond/ │ │ ├── project.clj │ │ ├── src/ │ │ │ └── nom/ │ │ │ └── nom/ │ │ │ ├── clj.clj │ │ │ └── cljc.cljc │ │ └── test/ │ │ ├── clj_test.clj │ │ ├── cljc_test.cljc │ │ └── selectors.clj │ ├── tricky-name/ │ │ ├── .gitignore │ │ ├── project.clj │ │ └── src/ │ │ └── org/ │ │ └── domain/ │ │ └── tricky_name/ │ │ ├── brunch.clj │ │ ├── core.clj │ │ └── munch.clj │ ├── uberjar-components-merging/ │ │ ├── components1.xml │ │ ├── components2.xml │ │ └── expected-components.xml │ ├── uberjar-merging/ │ │ ├── project.clj │ │ └── resources/ │ │ └── data_readers.clj │ ├── with-aliases/ │ │ └── project.clj │ ├── with-aliases2/ │ │ └── project.clj │ ├── with-classifiers/ │ │ └── project.clj │ ├── with-pom-plugins/ │ │ └── project.clj │ └── with-resources/ │ ├── project.clj │ └── resources/ │ └── nested/ │ └── dir/ │ └── sample.txt ├── web/ │ ├── .htaccess │ ├── 404.html │ ├── Makefile │ ├── _foot.html │ ├── grench.html │ ├── img/ │ │ └── favicon/ │ │ ├── browserconfig.xml │ │ └── manifest.json │ ├── index.html │ ├── robots.txt │ ├── stylesheets/ │ │ ├── base.css │ │ ├── grench.css │ │ ├── htmlize.css │ │ ├── layout.css │ │ ├── lein.css │ │ └── skeleton.css │ ├── template.html │ └── wiki/ │ ├── .gitignore │ ├── .htaccess │ └── Makefile └── zsh_completion.zsh