├── .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 ├── pom.xml ├── 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 │ └── profiles.clj ├── pcmpl-lein.el ├── project.clj ├── resources ├── leiningen.png ├── leiningen │ ├── bootclasspath-deps.clj │ ├── help │ │ ├── copying │ │ ├── deploying │ │ ├── faq │ │ ├── gpg │ │ ├── mixed-source │ │ ├── news │ │ ├── profiles │ │ ├── project.clj │ │ ├── readme │ │ ├── sample │ │ ├── templates │ │ └── tutorial │ └── 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.clj │ ├── new │ ├── app.clj │ ├── default.clj │ ├── plugin.clj │ ├── template.clj │ └── templates.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.clj │ │ ├── new │ │ └── templates.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 └── sample-index.zip ├── 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-snapshot │ └── project.clj ├── managed-deps │ └── 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-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 ├── 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 ├── 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 │ ├── profiles.clj │ └── 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 ├── bitter.ttf ├── grench.html ├── img │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ └── leiningen.jpg ├── inconsolata.ttf ├── 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 /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/.build.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/COPYING -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/README.md -------------------------------------------------------------------------------- /bash_completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bash_completion.bash -------------------------------------------------------------------------------- /bin/bump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/bump -------------------------------------------------------------------------------- /bin/issues.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/issues.clj -------------------------------------------------------------------------------- /bin/lein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/lein -------------------------------------------------------------------------------- /bin/lein-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/lein-pkg -------------------------------------------------------------------------------- /bin/lein.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/lein.bat -------------------------------------------------------------------------------- /bin/lein.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/lein.cmd -------------------------------------------------------------------------------- /bin/lein.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/lein.ps1 -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/bin/release -------------------------------------------------------------------------------- /doc/BEGINNER_MISTAKES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/BEGINNER_MISTAKES.md -------------------------------------------------------------------------------- /doc/DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/DEPLOY.md -------------------------------------------------------------------------------- /doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/FAQ.md -------------------------------------------------------------------------------- /doc/GPG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/GPG.md -------------------------------------------------------------------------------- /doc/MANAGED_DEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/MANAGED_DEPS.md -------------------------------------------------------------------------------- /doc/MIXED_PROJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/MIXED_PROJECTS.md -------------------------------------------------------------------------------- /doc/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/PLUGINS.md -------------------------------------------------------------------------------- /doc/PROFILES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/PROFILES.md -------------------------------------------------------------------------------- /doc/TEMPLATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/TEMPLATES.md -------------------------------------------------------------------------------- /doc/TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/TUTORIAL.md -------------------------------------------------------------------------------- /doc/ja/PLUGINS_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/ja/PLUGINS_ja.md -------------------------------------------------------------------------------- /doc/ja/TUTORIAL_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/ja/TUTORIAL_ja.md -------------------------------------------------------------------------------- /doc/ja/lein_ja.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/ja/lein_ja.1 -------------------------------------------------------------------------------- /doc/lein.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/doc/lein.1 -------------------------------------------------------------------------------- /lein-pprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/lein-pprint/README.md -------------------------------------------------------------------------------- /lein-pprint/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/lein-pprint/project.clj -------------------------------------------------------------------------------- /lein-pprint/src/leiningen/pprint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/lein-pprint/src/leiningen/pprint.clj -------------------------------------------------------------------------------- /lein-pprint/test/leiningen/test/pprint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/lein-pprint/test/leiningen/test/pprint.clj -------------------------------------------------------------------------------- /leiningen-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/README.md -------------------------------------------------------------------------------- /leiningen-core/dev-resources/checkouts/lib1/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/checkouts/lib1/project.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/checkouts/lib2/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/checkouts/lib2/project.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/p1.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/p1.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/p2.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/p2.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/p3.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/p3.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/p4.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/p4.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/p5.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/p5.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/profile-metadata.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/profile-metadata.clj -------------------------------------------------------------------------------- /leiningen-core/dev-resources/replace-repositories.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/dev-resources/replace-repositories.clj -------------------------------------------------------------------------------- /leiningen-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/pom.xml -------------------------------------------------------------------------------- /leiningen-core/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/project.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/classpath.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/eval.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/eval.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/main.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/pedantic.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/pedantic.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/project.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/ssl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/ssl.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/user.clj -------------------------------------------------------------------------------- /leiningen-core/src/leiningen/core/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/src/leiningen/core/utils.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/bluuugh.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/bluuugh.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/classpath.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/eval.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/eval.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/helper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/helper.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/main.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/mirrors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/mirrors.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/pedantic.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/pedantic.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/project.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/user.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/core/test/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/core/test/utils.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/fixed_and_var_args.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/fixed_and_var_args.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/one_or_two.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/one_or_two.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/sirius.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/sirius.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/var_args.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/var_args.clj -------------------------------------------------------------------------------- /leiningen-core/test/leiningen/zero.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/leiningen-core/test/leiningen/zero.clj -------------------------------------------------------------------------------- /leiningen-core/test/resources/profiles-empty.clj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leiningen-core/test/resources/profiles.clj: -------------------------------------------------------------------------------- 1 | {:user {:plugins [[lein-pprint "1.1.1"]]}} 2 | -------------------------------------------------------------------------------- /pcmpl-lein.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/pcmpl-lein.el -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/project.clj -------------------------------------------------------------------------------- /resources/leiningen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen.png -------------------------------------------------------------------------------- /resources/leiningen/bootclasspath-deps.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/bootclasspath-deps.clj -------------------------------------------------------------------------------- /resources/leiningen/help/copying: -------------------------------------------------------------------------------- 1 | ../../../COPYING -------------------------------------------------------------------------------- /resources/leiningen/help/deploying: -------------------------------------------------------------------------------- 1 | ../../../doc/DEPLOY.md -------------------------------------------------------------------------------- /resources/leiningen/help/faq: -------------------------------------------------------------------------------- 1 | ../../../doc/FAQ.md -------------------------------------------------------------------------------- /resources/leiningen/help/gpg: -------------------------------------------------------------------------------- 1 | ../../../doc/GPG.md -------------------------------------------------------------------------------- /resources/leiningen/help/mixed-source: -------------------------------------------------------------------------------- 1 | ../../../doc/MIXED_PROJECTS.md -------------------------------------------------------------------------------- /resources/leiningen/help/news: -------------------------------------------------------------------------------- 1 | ../../../NEWS.md -------------------------------------------------------------------------------- /resources/leiningen/help/profiles: -------------------------------------------------------------------------------- 1 | ../../../doc/PROFILES.md -------------------------------------------------------------------------------- /resources/leiningen/help/project.clj: -------------------------------------------------------------------------------- 1 | ../../../sample.project.clj -------------------------------------------------------------------------------- /resources/leiningen/help/readme: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /resources/leiningen/help/sample: -------------------------------------------------------------------------------- 1 | ../../../sample.project.clj -------------------------------------------------------------------------------- /resources/leiningen/help/templates: -------------------------------------------------------------------------------- 1 | ../../../doc/TEMPLATES.md -------------------------------------------------------------------------------- /resources/leiningen/help/tutorial: -------------------------------------------------------------------------------- 1 | ../../../doc/TUTORIAL.md -------------------------------------------------------------------------------- /resources/leiningen/new/app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/CHANGELOG.md -------------------------------------------------------------------------------- /resources/leiningen/new/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/LICENSE -------------------------------------------------------------------------------- /resources/leiningen/new/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/README.md -------------------------------------------------------------------------------- /resources/leiningen/new/app/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/core.clj -------------------------------------------------------------------------------- /resources/leiningen/new/app/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/gitignore -------------------------------------------------------------------------------- /resources/leiningen/new/app/hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/hgignore -------------------------------------------------------------------------------- /resources/leiningen/new/app/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/intro.md -------------------------------------------------------------------------------- /resources/leiningen/new/app/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/project.clj -------------------------------------------------------------------------------- /resources/leiningen/new/app/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/app/test.clj -------------------------------------------------------------------------------- /resources/leiningen/new/default/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/CHANGELOG.md -------------------------------------------------------------------------------- /resources/leiningen/new/default/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/LICENSE -------------------------------------------------------------------------------- /resources/leiningen/new/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/README.md -------------------------------------------------------------------------------- /resources/leiningen/new/default/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/core.clj -------------------------------------------------------------------------------- /resources/leiningen/new/default/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/gitignore -------------------------------------------------------------------------------- /resources/leiningen/new/default/hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/hgignore -------------------------------------------------------------------------------- /resources/leiningen/new/default/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/intro.md -------------------------------------------------------------------------------- /resources/leiningen/new/default/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/project.clj -------------------------------------------------------------------------------- /resources/leiningen/new/default/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/default/test.clj -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/CHANGELOG.md -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/LICENSE -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/README.md -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/gitignore -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/hgignore -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/name.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/name.clj -------------------------------------------------------------------------------- /resources/leiningen/new/plugin/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/plugin/project.clj -------------------------------------------------------------------------------- /resources/leiningen/new/template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/CHANGELOG.md -------------------------------------------------------------------------------- /resources/leiningen/new/template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/LICENSE -------------------------------------------------------------------------------- /resources/leiningen/new/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/README.md -------------------------------------------------------------------------------- /resources/leiningen/new/template/foo.clj: -------------------------------------------------------------------------------- 1 | (def {{name}} :foo) 2 | -------------------------------------------------------------------------------- /resources/leiningen/new/template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/gitignore -------------------------------------------------------------------------------- /resources/leiningen/new/template/hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/hgignore -------------------------------------------------------------------------------- /resources/leiningen/new/template/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/project.clj -------------------------------------------------------------------------------- /resources/leiningen/new/template/temp.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/leiningen/new/template/temp.clj -------------------------------------------------------------------------------- /resources/repl-welcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/resources/repl-welcome -------------------------------------------------------------------------------- /sample.project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/sample.project.clj -------------------------------------------------------------------------------- /src/leiningen/change.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/change.clj -------------------------------------------------------------------------------- /src/leiningen/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/check.clj -------------------------------------------------------------------------------- /src/leiningen/classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/classpath.clj -------------------------------------------------------------------------------- /src/leiningen/clean.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/clean.clj -------------------------------------------------------------------------------- /src/leiningen/compile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/compile.clj -------------------------------------------------------------------------------- /src/leiningen/deploy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/deploy.clj -------------------------------------------------------------------------------- /src/leiningen/deps.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/deps.clj -------------------------------------------------------------------------------- /src/leiningen/do.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/do.clj -------------------------------------------------------------------------------- /src/leiningen/help.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/help.clj -------------------------------------------------------------------------------- /src/leiningen/install.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/install.clj -------------------------------------------------------------------------------- /src/leiningen/jar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/jar.clj -------------------------------------------------------------------------------- /src/leiningen/javac.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/javac.clj -------------------------------------------------------------------------------- /src/leiningen/new.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new.clj -------------------------------------------------------------------------------- /src/leiningen/new/app.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new/app.clj -------------------------------------------------------------------------------- /src/leiningen/new/default.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new/default.clj -------------------------------------------------------------------------------- /src/leiningen/new/plugin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new/plugin.clj -------------------------------------------------------------------------------- /src/leiningen/new/template.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new/template.clj -------------------------------------------------------------------------------- /src/leiningen/new/templates.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/new/templates.clj -------------------------------------------------------------------------------- /src/leiningen/plugin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/plugin.clj -------------------------------------------------------------------------------- /src/leiningen/pom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/pom.clj -------------------------------------------------------------------------------- /src/leiningen/release.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/release.clj -------------------------------------------------------------------------------- /src/leiningen/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/repl.clj -------------------------------------------------------------------------------- /src/leiningen/retest.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/retest.clj -------------------------------------------------------------------------------- /src/leiningen/run.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/run.clj -------------------------------------------------------------------------------- /src/leiningen/search.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/search.clj -------------------------------------------------------------------------------- /src/leiningen/show_profiles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/show_profiles.clj -------------------------------------------------------------------------------- /src/leiningen/static_classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/static_classpath.clj -------------------------------------------------------------------------------- /src/leiningen/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/test.clj -------------------------------------------------------------------------------- /src/leiningen/trampoline.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/trampoline.clj -------------------------------------------------------------------------------- /src/leiningen/uberjar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/uberjar.clj -------------------------------------------------------------------------------- /src/leiningen/update_in.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/update_in.clj -------------------------------------------------------------------------------- /src/leiningen/upgrade.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/upgrade.clj -------------------------------------------------------------------------------- /src/leiningen/vcs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/vcs.clj -------------------------------------------------------------------------------- /src/leiningen/version.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/version.clj -------------------------------------------------------------------------------- /src/leiningen/with_profile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/src/leiningen/with_profile.clj -------------------------------------------------------------------------------- /test/.gnupg/gpg.conf: -------------------------------------------------------------------------------- 1 | keyserver keys.openpgp.org -------------------------------------------------------------------------------- /test/.gnupg/pubring.kbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/.gnupg/pubring.kbx -------------------------------------------------------------------------------- /test/.gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/.gnupg/trustdb.gpg -------------------------------------------------------------------------------- /test/leiningen/echo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/echo.clj -------------------------------------------------------------------------------- /test/leiningen/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/project.clj -------------------------------------------------------------------------------- /test/leiningen/test/change.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/change.clj -------------------------------------------------------------------------------- /test/leiningen/test/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/check.clj -------------------------------------------------------------------------------- /test/leiningen/test/clean.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/clean.clj -------------------------------------------------------------------------------- /test/leiningen/test/compile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/compile.clj -------------------------------------------------------------------------------- /test/leiningen/test/deploy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/deploy.clj -------------------------------------------------------------------------------- /test/leiningen/test/deps.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/deps.clj -------------------------------------------------------------------------------- /test/leiningen/test/do.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/do.clj -------------------------------------------------------------------------------- /test/leiningen/test/help.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/help.clj -------------------------------------------------------------------------------- /test/leiningen/test/helper.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/helper.clj -------------------------------------------------------------------------------- /test/leiningen/test/install.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/install.clj -------------------------------------------------------------------------------- /test/leiningen/test/jar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/jar.clj -------------------------------------------------------------------------------- /test/leiningen/test/javac.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/javac.clj -------------------------------------------------------------------------------- /test/leiningen/test/jvm_opts.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/jvm_opts.clj -------------------------------------------------------------------------------- /test/leiningen/test/new.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/new.clj -------------------------------------------------------------------------------- /test/leiningen/test/new/templates.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/new/templates.clj -------------------------------------------------------------------------------- /test/leiningen/test/pom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/pom.clj -------------------------------------------------------------------------------- /test/leiningen/test/release.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/release.clj -------------------------------------------------------------------------------- /test/leiningen/test/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/repl.clj -------------------------------------------------------------------------------- /test/leiningen/test/run.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/run.clj -------------------------------------------------------------------------------- /test/leiningen/test/search.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/search.clj -------------------------------------------------------------------------------- /test/leiningen/test/static_classpath.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/static_classpath.clj -------------------------------------------------------------------------------- /test/leiningen/test/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/test.clj -------------------------------------------------------------------------------- /test/leiningen/test/uberjar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/uberjar.clj -------------------------------------------------------------------------------- /test/leiningen/test/update_in.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/update_in.clj -------------------------------------------------------------------------------- /test/leiningen/test/vcs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/vcs.clj -------------------------------------------------------------------------------- /test/leiningen/test/with_profile.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/leiningen/test/with_profile.clj -------------------------------------------------------------------------------- /test/sample-connect-string: -------------------------------------------------------------------------------- 1 | myhost:23 2 | -------------------------------------------------------------------------------- /test/sample-connect-string-http: -------------------------------------------------------------------------------- 1 | http://localhost:23/repl 2 | -------------------------------------------------------------------------------- /test/sample-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test/sample-index.zip -------------------------------------------------------------------------------- /test_projects/.ssh/allowed_signers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/.ssh/allowed_signers -------------------------------------------------------------------------------- /test_projects/.ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/.ssh/id_rsa -------------------------------------------------------------------------------- /test_projects/.ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/.ssh/id_rsa.pub -------------------------------------------------------------------------------- /test_projects/.ssh/verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/.ssh/verify -------------------------------------------------------------------------------- /test_projects/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/README.txt -------------------------------------------------------------------------------- /test_projects/bad-require/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/bad-require/.gitignore -------------------------------------------------------------------------------- /test_projects/bad-require/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/bad-require/project.clj -------------------------------------------------------------------------------- /test_projects/bad-require/src/bad_require/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/bad-require/src/bad_require/core.clj -------------------------------------------------------------------------------- /test_projects/data-readers-backwards-compatibility/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/data-readers-backwards-compatibility/project.clj -------------------------------------------------------------------------------- /test_projects/file-not-found-thrower/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/file-not-found-thrower/.gitignore -------------------------------------------------------------------------------- /test_projects/file-not-found-thrower/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/file-not-found-thrower/project.clj -------------------------------------------------------------------------------- /test_projects/file-not-found-thrower/src/file_not_found_thrower/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/file-not-found-thrower/src/file_not_found_thrower/core.clj -------------------------------------------------------------------------------- /test_projects/java-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/java-main/.gitignore -------------------------------------------------------------------------------- /test_projects/java-main/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/java-main/project.clj -------------------------------------------------------------------------------- /test_projects/java-main/src/java/my/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/java-main/src/java/my/java/Main.java -------------------------------------------------------------------------------- /test_projects/jvm-opts/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/jvm-opts/project.clj -------------------------------------------------------------------------------- /test_projects/leaky-composite/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/leaky-composite/project.clj -------------------------------------------------------------------------------- /test_projects/lein-test-exit-code/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-exit-code/project.clj -------------------------------------------------------------------------------- /test_projects/lein-test-exit-code/test/lein_test_exit_code/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-exit-code/test/lein_test_exit_code/core_test.clj -------------------------------------------------------------------------------- /test_projects/lein-test-reload-bug/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-reload-bug/project.clj -------------------------------------------------------------------------------- /test_projects/lein-test-reload-bug/test/lein_test_reload_bug/a_deftype.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-reload-bug/test/lein_test_reload_bug/a_deftype.clj -------------------------------------------------------------------------------- /test_projects/lein-test-reload-bug/test/lein_test_reload_bug/b_protocol.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-reload-bug/test/lein_test_reload_bug/b_protocol.clj -------------------------------------------------------------------------------- /test_projects/lein-test-reload-bug/test/lein_test_reload_bug/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/lein-test-reload-bug/test/lein_test_reload_bug/core_test.clj -------------------------------------------------------------------------------- /test_projects/managed-deps-snapshot/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/managed-deps-snapshot/project.clj -------------------------------------------------------------------------------- /test_projects/managed-deps/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/managed-deps/project.clj -------------------------------------------------------------------------------- /test_projects/more-gen-classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/.gitignore -------------------------------------------------------------------------------- /test_projects/more-gen-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/README.md -------------------------------------------------------------------------------- /test_projects/more-gen-classes/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/doc/intro.md -------------------------------------------------------------------------------- /test_projects/more-gen-classes/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/project.clj -------------------------------------------------------------------------------- /test_projects/more-gen-classes/src/more_gen_classes/bar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/src/more_gen_classes/bar.clj -------------------------------------------------------------------------------- /test_projects/more-gen-classes/src/more_gen_classes/baz.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/src/more_gen_classes/baz.clj -------------------------------------------------------------------------------- /test_projects/more-gen-classes/src/more_gen_classes/foo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/more-gen-classes/src/more_gen_classes/foo.clj -------------------------------------------------------------------------------- /test_projects/native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/native/.gitignore -------------------------------------------------------------------------------- /test_projects/native/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/native/project.clj -------------------------------------------------------------------------------- /test_projects/overlapped-sourcepaths/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/overlapped-sourcepaths/project.clj -------------------------------------------------------------------------------- /test_projects/overlapped-sourcepaths/src/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/preserve-eval-meta/.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | lib 4 | classes 5 | -------------------------------------------------------------------------------- /test_projects/preserve-eval-meta/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/preserve-eval-meta/project.clj -------------------------------------------------------------------------------- /test_projects/preserve-eval-meta/src/preserve_eval_meta/core.clj: -------------------------------------------------------------------------------- 1 | (ns preserve-eval-meta.core) 2 | 3 | (defn -main [& args] 4 | (System/exit 0)) 5 | -------------------------------------------------------------------------------- /test_projects/provided/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/provided/project.clj -------------------------------------------------------------------------------- /test_projects/provided/src/provided/core/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/provided/src/provided/core/Example.java -------------------------------------------------------------------------------- /test_projects/reflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/reflector/.gitignore -------------------------------------------------------------------------------- /test_projects/reflector/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/reflector/project.clj -------------------------------------------------------------------------------- /test_projects/reflector/src/reflector/classy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/reflector/src/reflector/classy.clj -------------------------------------------------------------------------------- /test_projects/reflector/src/reflector/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/reflector/src/reflector/main.clj -------------------------------------------------------------------------------- /test_projects/sample-bad-user/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-bad-user/project.clj -------------------------------------------------------------------------------- /test_projects/sample-bad-user/src/nom/nom/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-bad-user/src/nom/nom/check.clj -------------------------------------------------------------------------------- /test_projects/sample-bad-user/src/nom/nom/nom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-bad-user/src/nom/nom/nom.clj -------------------------------------------------------------------------------- /test_projects/sample-bad-user/test/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-bad-user/test/user.clj -------------------------------------------------------------------------------- /test_projects/sample-deploy/deploy-me-0.1.0-SNAPSHOT-fat.jarr: -------------------------------------------------------------------------------- 1 | I am a teapot! 2 | -------------------------------------------------------------------------------- /test_projects/sample-deploy/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-deploy/project.clj -------------------------------------------------------------------------------- /test_projects/sample-failing/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-failing/project.clj -------------------------------------------------------------------------------- /test_projects/sample-failing/src/nom/nom/nom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-failing/src/nom/nom/nom.clj -------------------------------------------------------------------------------- /test_projects/sample-failing/test/sample/unreadable.clj: -------------------------------------------------------------------------------- 1 | (ns sample.unreadable 2 | 3 | -------------------------------------------------------------------------------- /test_projects/sample-fixture-error/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-fixture-error/project.clj -------------------------------------------------------------------------------- /test_projects/sample-fixture-error/test/test_a.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-fixture-error/test/test_a.clj -------------------------------------------------------------------------------- /test_projects/sample-fixture-error/test/test_b.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-fixture-error/test/test_b.clj -------------------------------------------------------------------------------- /test_projects/sample-fixture-error/test/test_c.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-fixture-error/test/test_c.clj -------------------------------------------------------------------------------- /test_projects/sample-no-aot/dev-resources/dev.clj: -------------------------------------------------------------------------------- 1 | "don't include me in the uberjar!" 2 | -------------------------------------------------------------------------------- /test_projects/sample-no-aot/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-no-aot/project.clj -------------------------------------------------------------------------------- /test_projects/sample-no-aot/src/nom/nom/nom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-no-aot/src/nom/nom/nom.clj -------------------------------------------------------------------------------- /test_projects/sample-no-aot/test/namespace.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-no-aot/test/namespace.clj -------------------------------------------------------------------------------- /test_projects/sample-no-aot/test/selectors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-no-aot/test/selectors.clj -------------------------------------------------------------------------------- /test_projects/sample-ordered-aot/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-ordered-aot/project.clj -------------------------------------------------------------------------------- /test_projects/sample-ordered-aot/src/sample_ordered_aot/baz.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-ordered-aot/src/sample_ordered_aot/baz.clj -------------------------------------------------------------------------------- /test_projects/sample-ordered-aot/src/sample_ordered_aot/foo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-ordered-aot/src/sample_ordered_aot/foo.clj -------------------------------------------------------------------------------- /test_projects/sample-profile-meta/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-profile-meta/project.clj -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/project.clj -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/src/nom/nom/clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/src/nom/nom/clj.clj -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/src/nom/nom/cljc.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/src/nom/nom/cljc.cljc -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/test/clj_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/test/clj_test.clj -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/test/cljc_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/test/cljc_test.cljc -------------------------------------------------------------------------------- /test_projects/sample-reader-cond/test/selectors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample-reader-cond/test/selectors.clj -------------------------------------------------------------------------------- /test_projects/sample/.nrepl-port: -------------------------------------------------------------------------------- 1 | 4242 -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | lib 4 | classes -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/checkouts/sample2/README -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/checkouts/sample2/project.clj -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/src/sample2/alt.clj: -------------------------------------------------------------------------------- 1 | (ns sample2.alt) 2 | -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/src/sample2/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/checkouts/sample2/src/sample2/core.clj -------------------------------------------------------------------------------- /test_projects/sample/checkouts/sample2/test/sample2/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/checkouts/sample2/test/sample2/core_test.clj -------------------------------------------------------------------------------- /test_projects/sample/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/project.clj -------------------------------------------------------------------------------- /test_projects/sample/src/nom/nom/check.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/src/nom/nom/check.clj -------------------------------------------------------------------------------- /test_projects/sample/src/nom/nom/nom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/src/nom/nom/nom.clj -------------------------------------------------------------------------------- /test_projects/sample/test/test_nom_nom_nom.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/sample/test/test_nom_nom_nom.clj -------------------------------------------------------------------------------- /test_projects/tricky-name/.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | lib 4 | classes 5 | -------------------------------------------------------------------------------- /test_projects/tricky-name/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/tricky-name/project.clj -------------------------------------------------------------------------------- /test_projects/tricky-name/src/org/domain/tricky_name/brunch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/tricky-name/src/org/domain/tricky_name/brunch.clj -------------------------------------------------------------------------------- /test_projects/tricky-name/src/org/domain/tricky_name/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/tricky-name/src/org/domain/tricky_name/core.clj -------------------------------------------------------------------------------- /test_projects/tricky-name/src/org/domain/tricky_name/munch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/tricky-name/src/org/domain/tricky_name/munch.clj -------------------------------------------------------------------------------- /test_projects/uberjar-components-merging/components1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/uberjar-components-merging/components1.xml -------------------------------------------------------------------------------- /test_projects/uberjar-components-merging/components2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/uberjar-components-merging/components2.xml -------------------------------------------------------------------------------- /test_projects/uberjar-components-merging/expected-components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/uberjar-components-merging/expected-components.xml -------------------------------------------------------------------------------- /test_projects/uberjar-merging/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/uberjar-merging/project.clj -------------------------------------------------------------------------------- /test_projects/uberjar-merging/resources/data_readers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/uberjar-merging/resources/data_readers.clj -------------------------------------------------------------------------------- /test_projects/with-aliases/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-aliases/project.clj -------------------------------------------------------------------------------- /test_projects/with-aliases2/profiles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-aliases2/profiles.clj -------------------------------------------------------------------------------- /test_projects/with-aliases2/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-aliases2/project.clj -------------------------------------------------------------------------------- /test_projects/with-classifiers/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-classifiers/project.clj -------------------------------------------------------------------------------- /test_projects/with-pom-plugins/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-pom-plugins/project.clj -------------------------------------------------------------------------------- /test_projects/with-resources/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/test_projects/with-resources/project.clj -------------------------------------------------------------------------------- /test_projects/with-resources/resources/nested/dir/sample.txt: -------------------------------------------------------------------------------- 1 | Do not remove me! 2 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/404.html -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/_foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/_foot.html -------------------------------------------------------------------------------- /web/bitter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/bitter.ttf -------------------------------------------------------------------------------- /web/grench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/grench.html -------------------------------------------------------------------------------- /web/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /web/img/favicon/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/android-chrome-256x256.png -------------------------------------------------------------------------------- /web/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /web/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /web/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /web/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /web/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/favicon.ico -------------------------------------------------------------------------------- /web/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/manifest.json -------------------------------------------------------------------------------- /web/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /web/img/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /web/img/leiningen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/img/leiningen.jpg -------------------------------------------------------------------------------- /web/inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/inconsolata.ttf -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/index.html -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/stylesheets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/base.css -------------------------------------------------------------------------------- /web/stylesheets/grench.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/grench.css -------------------------------------------------------------------------------- /web/stylesheets/htmlize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/htmlize.css -------------------------------------------------------------------------------- /web/stylesheets/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/layout.css -------------------------------------------------------------------------------- /web/stylesheets/lein.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/lein.css -------------------------------------------------------------------------------- /web/stylesheets/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/stylesheets/skeleton.css -------------------------------------------------------------------------------- /web/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/template.html -------------------------------------------------------------------------------- /web/wiki/.gitignore: -------------------------------------------------------------------------------- 1 | /index.cgi 2 | -------------------------------------------------------------------------------- /web/wiki/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/wiki/.htaccess -------------------------------------------------------------------------------- /web/wiki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/web/wiki/Makefile -------------------------------------------------------------------------------- /zsh_completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technomancy/leiningen/HEAD/zsh_completion.zsh --------------------------------------------------------------------------------