{"id":31943290,"url":"https://github.com/luminus-framework/lein-uberwar","last_synced_at":"2025-10-14T09:50:49.708Z","repository":{"id":57713805,"uuid":"43344057","full_name":"luminus-framework/lein-uberwar","owner":"luminus-framework","description":"plugin for packaging uberwars","archived":false,"fork":false,"pushed_at":"2022-10-11T14:06:30.000Z","size":20,"stargazers_count":5,"open_issues_count":2,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-19T12:11:10.866Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luminus-framework.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":null,"security":null,"support":null}},"created_at":"2015-09-29T04:07:35.000Z","updated_at":"2022-10-11T02:02:59.000Z","dependencies_parsed_at":"2022-08-25T10:30:50.718Z","dependency_job_id":null,"html_url":"https://github.com/luminus-framework/lein-uberwar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/luminus-framework/lein-uberwar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luminus-framework%2Flein-uberwar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luminus-framework%2Flein-uberwar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luminus-framework%2Flein-uberwar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luminus-framework%2Flein-uberwar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luminus-framework","download_url":"https://codeload.github.com/luminus-framework/lein-uberwar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luminus-framework%2Flein-uberwar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018554,"owners_count":26086404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-14T09:50:24.380Z","updated_at":"2025-10-14T09:50:49.700Z","avatar_url":"https://github.com/luminus-framework.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lein-uberwar\n\nA Leiningen plugin for packaging WAR archives, split out from [lein-ring](https://github.com/weavejester/lein-ring)\n\n## Install\n\n[![Clojars Project](https://img.shields.io/clojars/v/lein-uberwar.svg)](https://clojars.org/lein-uberwar)\n\nTo use Lein-Ring, add it as a plugin to your `project.clj` file or\nyour global profile:\n\n    :plugins [[lein-uberwar \"\u003clatest-version\u003e\"]]\n\nThen add a new `:uberwar` key to your `project.clj` file that contains a\nmap of configuration options. At minimum there must be a `:handler`\nkey that references your Ring handler:\n\n    :uberwar {:handler hello-world.core/handler}\n\n## Usage\n\n\n* `:init` -\n  A function to be called once before your handler starts. It should\n  take no arguments. If you've compiled your Ring application into a\n  war-file, this function will be called when your handler servlet is\n  first initialized.\n\n* `:destroy` -\n  A function called before your handler exits or is unloaded. It\n  should take no arguments. If your Ring application has been compiled\n  into a war-file, then this will be called when your hander servlet\n  is destroyed.\n\n* `:war-exclusions` -\n  A list of regular expressions for excluding files from the target\n  war. Defaults to excluding hidden files.\n\n* `:servlet-class` -\n  The servlet class name.\n\n* `:servlet-name` -\n  The name of the servlet (in web.xml). Defaults to the handler name.\n\n* `:url-pattern` -\n  The url pattern of the servlet mapping (in web.xml). Defaults to \"/*\".\n\n* `:servlet-path-info?` -\n  If true, a `:path-info` key is added to the request map. Defaults to true.\n\n* `:listener-class` -\n  Class used for servlet init/destroy functions. Called listener\n  because underneath it uses a ServletContextListener.\n\n* `:web-xml` -\n  web.xml file to use in place of auto-generated version (relative to project root).\n\n* `:servlet-version` -\n  The version of the servlet spec that we claim to conform\n  to. Attributes corresponding to this version will be added to the\n  web-app element of the web.xml. If not specified, defaults to 2.5.\n  For servlets with async handlers, this needs to be at least 3.0.\n\n* `:name` -\n  The name of the file generated by lein ring uberwar.\n\n* `:async?` -\n  If `true`, a 3 argument async handler function will be used\n  and a `supports-async` element will be generated in the generated\n  web.xml file.  If `false`, a `supports-async` element will be generated\n  with the value \"false\".  And finally if `nil` or not present (default),\n  no `supports-async` will be generated - this did not exist\n  before servlet api 3.0, so for servlet versions before 3.0\n  `nil` must be used\n\n\n## Building the WAR\n\nTo build the WAR run the following command in the console:\n\n   lein uberwar\n\n## License\n\nCopyright © 2015 Dmitri Sotnikov\n\nDistributed under the Eclipse Public License either version 1.0 or (at\nyour option) any later version.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluminus-framework%2Flein-uberwar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluminus-framework%2Flein-uberwar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluminus-framework%2Flein-uberwar/lists"}