{"id":28947292,"url":"https://github.com/wildfly/galleon","last_synced_at":"2026-02-03T13:11:25.403Z","repository":{"id":38204578,"uuid":"125396942","full_name":"wildfly/galleon","owner":"wildfly","description":"Galleon Provisioning Tool","archived":false,"fork":false,"pushed_at":"2025-12-17T08:40:59.000Z","size":18488,"stargazers_count":30,"open_issues_count":12,"forks_count":33,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-27T02:54:03.160Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.wildfly.org/galleon/","language":"Java","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/wildfly.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":"dco.txt","cla":null}},"created_at":"2018-03-15T16:36:41.000Z","updated_at":"2025-12-17T08:41:02.000Z","dependencies_parsed_at":"2025-12-17T15:06:16.448Z","dependency_job_id":null,"html_url":"https://github.com/wildfly/galleon","commit_stats":null,"previous_names":[],"tags_count":97,"template":false,"template_full_name":null,"purl":"pkg:github/wildfly/galleon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fgalleon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fgalleon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fgalleon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fgalleon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wildfly","download_url":"https://codeload.github.com/wildfly/galleon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fgalleon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28825354,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T18:44:20.126Z","status":"ssl_error","status_checked_at":"2026-01-27T18:44:09.161Z","response_time":168,"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":[],"created_at":"2025-06-23T09:09:58.243Z","updated_at":"2026-02-03T13:11:25.387Z","avatar_url":"https://github.com/wildfly.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":":toc:\n:toc-placement!:\n\n= Galleon Provisioning\n\ntoc::[]\n\n= Overview\n\nGalleon is a provisioning tool designed to create and maintain software distributions that consist of one or more products (or components). The tool supports:\n\n* adding products to a distribution;\n\n** their default and customized configurations;\n\n* removing products from a distribution;\n\n* integration of the products in the distribution;\n\n* resolution and validation of the resulting configuration and runtime dependencies;\n\n* patching and version updates;\n\n* product-specific provisioning plugins;\n\n* detection of the changes in the provisioned distribution (its filesystem content and/or its configuration) applied by the user manually or by means of other management tools\n\n** to be able to preserve them after a version upgrade (having made sure the changes are compatible in the new version)\n\n** or create a provisioning configuration that could be used to reproduce the state of the distribution including the user changes;\n\n* exporting the provisioning configuration of the current state of the distribution with the goal to reproduce it later at another location.\n\nThe tool includes a command-line interface and a public API. There is also a Maven plugin that allows provisioning a distribution according to the provided configuration.\n\n= Download and Installation of the Command Line Tool\n\nReleases of the command line tool are available on the link:https://github.com/wildfly/galleon/releases[releases page].\n\nDownload and unzip the release zip and add the `bin` dir to your system path. Use `galleon.sh` or `galleon.bat` to launch the tool.\n\n= Project Modules\n\n== Module `galleon-parent`\n\nDefines main version and common dependencies of the project.\n\n== Module `core`\n\nGeneral provisioning and feature-pack API. Which allows to provision the desired\ninstallation specification at a specified location, install additional and/or\nuninstall existing feature-packs, export the currently provisioned specification\nto a file with the purpose to reproduce it at a different location.\n\n== Module `cli`\n\nCommand line interface which allows to:\n\n* Build feature-packs and install them into the Maven repository;\n* Provision an installation by pulling the feature-packs from the\n  Maven repository and installing them at the specified location.;\n* View the currently provisioned installation specification;\n* Export the currently provisioned installation specification to\n  a file with goal to reproduce the installation later.\n\nThe Maven assembly plug-in is configured to create a single executable JAR\nfile which contains all the dependencies.\n\n= CLI Commands\n\nThe CLI commands help is printed by calling the `help` command.\n\nFull documentation of the CLI commands can be found in link:https://docs.wildfly.org/galleon/[this] documentation.\n\n= Building and launching the tool\n \nThe tool can be built by executing the following Maven command:\n\n[source,shell]\n----\nmvn clean install\n----\n\nThe executable JAR will be built in `cli/target/galleon-cli.jar`\n\nThere is also a convenience `do.sh` script in the root directory\nof the project. If executed w/o arguments, it'll build and launch the tool.\n\n`./do.sh build` will only build the tool.\n`./do.sh run` will only launch the already built tool.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fgalleon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwildfly%2Fgalleon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fgalleon/lists"}