├── .gitignore ├── CHANGES.md ├── README.md ├── project.clj ├── src └── leiningen │ └── sub.clj └── subtest ├── .gitignore ├── README.md ├── child ├── .gitignore ├── README.md ├── project.clj ├── src │ └── child │ │ └── core.clj └── test │ └── child │ └── core_test.clj ├── child2 ├── .gitignore ├── README.md ├── project.clj ├── src │ └── child2 │ │ └── core.clj └── test │ └── child2 │ └── core_test.clj ├── project.clj ├── src └── subtest │ └── core.clj └── test └── subtest └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | pom.xml 3 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/CHANGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/project.clj -------------------------------------------------------------------------------- /src/leiningen/sub.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/src/leiningen/sub.clj -------------------------------------------------------------------------------- /subtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/.gitignore -------------------------------------------------------------------------------- /subtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/README.md -------------------------------------------------------------------------------- /subtest/child/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child/.gitignore -------------------------------------------------------------------------------- /subtest/child/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child/README.md -------------------------------------------------------------------------------- /subtest/child/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child/project.clj -------------------------------------------------------------------------------- /subtest/child/src/child/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child/src/child/core.clj -------------------------------------------------------------------------------- /subtest/child/test/child/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child/test/child/core_test.clj -------------------------------------------------------------------------------- /subtest/child2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child2/.gitignore -------------------------------------------------------------------------------- /subtest/child2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child2/README.md -------------------------------------------------------------------------------- /subtest/child2/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child2/project.clj -------------------------------------------------------------------------------- /subtest/child2/src/child2/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child2/src/child2/core.clj -------------------------------------------------------------------------------- /subtest/child2/test/child2/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/child2/test/child2/core_test.clj -------------------------------------------------------------------------------- /subtest/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/project.clj -------------------------------------------------------------------------------- /subtest/src/subtest/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/src/subtest/core.clj -------------------------------------------------------------------------------- /subtest/test/subtest/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarshantanu/lein-sub/HEAD/subtest/test/subtest/core_test.clj --------------------------------------------------------------------------------