{"id":20847421,"url":"https://github.com/paketo-buildpacks/clojure-tools","last_synced_at":"2026-02-20T00:09:41.501Z","repository":{"id":37103888,"uuid":"395892823","full_name":"paketo-buildpacks/clojure-tools","owner":"paketo-buildpacks","description":"A Cloud Native Buildpack that builds Clojure-based applications from source","archived":false,"fork":false,"pushed_at":"2026-02-16T03:12:44.000Z","size":556,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-16T10:17:40.015Z","etag":null,"topics":["build-system","clojure","cnb","jvm-applications"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paketo-buildpacks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-08-14T04:48:09.000Z","updated_at":"2026-02-06T15:14:03.000Z","dependencies_parsed_at":"2023-10-23T04:27:01.338Z","dependency_job_id":"c44824d7-c229-49a8-8046-8adbacb99a8f","html_url":"https://github.com/paketo-buildpacks/clojure-tools","commit_stats":{"total_commits":216,"total_committers":7,"mean_commits":"30.857142857142858","dds":0.3055555555555556,"last_synced_commit":"18752f0bd2775139ae79e3cca6d66088545e89f9"},"previous_names":[],"tags_count":77,"template":false,"template_full_name":null,"purl":"pkg:github/paketo-buildpacks/clojure-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paketo-buildpacks%2Fclojure-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paketo-buildpacks%2Fclojure-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paketo-buildpacks%2Fclojure-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paketo-buildpacks%2Fclojure-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paketo-buildpacks","download_url":"https://codeload.github.com/paketo-buildpacks/clojure-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paketo-buildpacks%2Fclojure-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29637398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build-system","clojure","cnb","jvm-applications"],"created_at":"2024-11-18T02:20:29.764Z","updated_at":"2026-02-20T00:09:41.487Z","avatar_url":"https://github.com/paketo-buildpacks.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Paketo Buildpack for Clojure Tools\n\n## Buildpack ID: `paketo-buildpacks/clojure-tools`\n## Registry URLs: `docker.io/paketobuildpacks/clojure-tools`\n\nThe Paketo Buildpack for Clojure Tools is a Cloud Native Buildpack that builds Clojure-based applications from source.\n\n## Behavior\n\nThis buildpack will participate all the following conditions are met\n\n* `\u003cAPPLICATION_ROOT\u003e/deps.edn` exists\n\nThe buildpack will do the following:\n\n* Requests that a JDK be installed\n* Links the `~/.m2` to a layer for caching\n* If `\u003cAPPLICATION_ROOT\u003e/deps.edn` exists\n  * Contributes Clojure Tools to a layer with all commands on `$PATH`\n  * Runs `\u003cCLOJURE_TOOLS_ROOT\u003e/clojure -X:uberjar` to build the application\n* Removes the source code in `\u003cAPPLICATION_ROOT\u003e`, following include/exclude rules\n* If `$BP_CLJ_BUILT_ARTIFACT` matched a single file\n  * Restores `$BP_CLJ_BUILT_ARTIFACT` from the layer, expands the single file to `\u003cAPPLICATION_ROOT\u003e`\n* If `$BP_CLJ_BUILT_ARTIFACT` matched a directory or multiple files\n  * Restores the files matched by `$BP_CLJ_BUILT_ARTIFACT` to `\u003cAPPLICATION_ROOT\u003e`\n\n## Configuration\n\n| Environment Variable            | Description                                                                                                                                                                                                              |\n| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| `$BP_CLJ_TOOLS_BUILD_ENABLED`   | Configure the arguments to enable tools build.                                                                                                                                                                           |\n| `$BP_CLJ_TOOLS_BUILD_ARGUMENTS` | Configure the arguments to pass to build system. Defaults to `-T:build uber`.                                                                                                                                            |\n| `$BP_CLJ_DEPS_ARGUMENTS`        | Configure the arguments to pass to build system. Defaults to `-X:uberjar`.                                                                                                                                               |\n| `$BP_CLJ_BUILT_MODULE`          | Configure the module to find application artifact in. Defaults to the root module (empty).                                                                                                                               |\n| `$BP_CLJ_BUILT_ARTIFACT`        | Configure the built application artifact explicitly. Supersedes `$BP_CLJ_BUILT_MODULE`. Defaults to `target/*.jar`. Can match a single file, multiple files or a directory. Can be one or more space separated patterns. |\n| `$BP_INCLUDE_FILES`         | Colon separated list of glob patterns to match source files. Any matched file will be retained in the final image. Defaults to `` (i.e. nothing).                                                                                               |\n| `$BP_EXCLUDE_FILES`         | Colon separated list of glob patterns to match source files. Any matched file will be specifically removed from the final image. If include patterns are also specified, then they are applied first and exclude patterns can be used to further reduce the fileset. |\n\n## Bindings\n\nThe buildpack optionally accepts the following bindings:\n\n### Type: `dependency-mapping`\n\n| Key                   | Value   | Description                                                                                       |\n| --------------------- | ------- | ------------------------------------------------------------------------------------------------- |\n| `\u003cdependency-digest\u003e` | `\u003curi\u003e` | If needed, the buildpack will fetch the dependency with digest `\u003cdependency-digest\u003e` from `\u003curi\u003e` |\n\n## License\n\nThis buildpack is released under version 2.0 of the [Apache License][a].\n\n[a]: http://www.apache.org/licenses/LICENSE-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaketo-buildpacks%2Fclojure-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaketo-buildpacks%2Fclojure-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaketo-buildpacks%2Fclojure-tools/lists"}