├── .clj-kondo ├── config.edn └── imports │ ├── babashka │ └── fs │ │ └── config.edn │ ├── http-kit │ └── http-kit │ │ ├── config.edn │ │ └── httpkit │ │ └── with_channel.clj │ ├── lread │ └── status-line │ │ └── config.edn │ ├── rewrite-clj │ └── rewrite-clj │ │ └── config.edn │ └── taoensso │ └── encore │ ├── config.edn │ └── taoensso │ ├── encore.clj │ └── encore_hooks.clj ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bb.edn ├── deps.edn ├── resources └── clj-easy │ └── graal-build-time-version.txt ├── scripts ├── bump_version.clj └── lint.clj ├── src └── clj_easy │ └── graal_build_time │ ├── InitClojureClasses.java │ └── packages.clj ├── test-hello-world ├── bb.edn ├── build.clj ├── deps.edn ├── lib1 │ ├── bb.edn │ ├── build.clj │ ├── deps.edn │ └── src │ │ └── gbt_test_org │ │ └── p2 │ │ └── core.clj ├── lib2 │ ├── bb.edn │ ├── build.clj │ ├── deps.edn │ └── src │ │ └── gbt_test_org │ │ └── core.clj └── src │ ├── hello │ └── core.clj │ └── hello_world │ └── main.clj ├── test-single-segment ├── bb.edn ├── build.clj ├── deps.edn └── src │ └── single_segment │ └── main.clj └── test └── clj_easy └── graal_build_time └── packages_test.clj /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/babashka/fs/config.edn: -------------------------------------------------------------------------------- 1 | {:lint-as {babashka.fs/with-temp-dir clojure.core/let}} 2 | -------------------------------------------------------------------------------- /.clj-kondo/imports/http-kit/http-kit/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/http-kit/http-kit/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/http-kit/http-kit/httpkit/with_channel.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/http-kit/http-kit/httpkit/with_channel.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/lread/status-line/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/lread/status-line/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/taoensso/encore/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/taoensso/encore.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/taoensso/encore/taoensso/encore.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/taoensso/encore_hooks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.clj-kondo/imports/taoensso/encore/taoensso/encore_hooks.clj -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/README.md -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/bb.edn -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/deps.edn -------------------------------------------------------------------------------- /resources/clj-easy/graal-build-time-version.txt: -------------------------------------------------------------------------------- 1 | 1.0.5 -------------------------------------------------------------------------------- /scripts/bump_version.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/scripts/bump_version.clj -------------------------------------------------------------------------------- /scripts/lint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/scripts/lint.clj -------------------------------------------------------------------------------- /src/clj_easy/graal_build_time/InitClojureClasses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/src/clj_easy/graal_build_time/InitClojureClasses.java -------------------------------------------------------------------------------- /src/clj_easy/graal_build_time/packages.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/src/clj_easy/graal_build_time/packages.clj -------------------------------------------------------------------------------- /test-hello-world/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/bb.edn -------------------------------------------------------------------------------- /test-hello-world/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/build.clj -------------------------------------------------------------------------------- /test-hello-world/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/deps.edn -------------------------------------------------------------------------------- /test-hello-world/lib1/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib1/bb.edn -------------------------------------------------------------------------------- /test-hello-world/lib1/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib1/build.clj -------------------------------------------------------------------------------- /test-hello-world/lib1/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib1/deps.edn -------------------------------------------------------------------------------- /test-hello-world/lib1/src/gbt_test_org/p2/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib1/src/gbt_test_org/p2/core.clj -------------------------------------------------------------------------------- /test-hello-world/lib2/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib2/bb.edn -------------------------------------------------------------------------------- /test-hello-world/lib2/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib2/build.clj -------------------------------------------------------------------------------- /test-hello-world/lib2/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib2/deps.edn -------------------------------------------------------------------------------- /test-hello-world/lib2/src/gbt_test_org/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/lib2/src/gbt_test_org/core.clj -------------------------------------------------------------------------------- /test-hello-world/src/hello/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/src/hello/core.clj -------------------------------------------------------------------------------- /test-hello-world/src/hello_world/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-hello-world/src/hello_world/main.clj -------------------------------------------------------------------------------- /test-single-segment/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-single-segment/bb.edn -------------------------------------------------------------------------------- /test-single-segment/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-single-segment/build.clj -------------------------------------------------------------------------------- /test-single-segment/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-single-segment/deps.edn -------------------------------------------------------------------------------- /test-single-segment/src/single_segment/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test-single-segment/src/single_segment/main.clj -------------------------------------------------------------------------------- /test/clj_easy/graal_build_time/packages_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-easy/graal-build-time/HEAD/test/clj_easy/graal_build_time/packages_test.clj --------------------------------------------------------------------------------