{"id":30777971,"url":"https://github.com/wildfly/prospero","last_synced_at":"2026-01-29T18:02:04.936Z","repository":{"id":36961546,"uuid":"364971949","full_name":"wildfly/prospero","owner":"wildfly","description":"Prospero is a tool combining Galleon feature packs and wildfly-channels to provision and update Wildfly server.","archived":false,"fork":false,"pushed_at":"2025-12-17T14:02:05.000Z","size":4397,"stargazers_count":11,"open_issues_count":38,"forks_count":28,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-12-21T02:26:58.230Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"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":"2021-05-06T16:25:37.000Z","updated_at":"2025-12-17T14:02:09.000Z","dependencies_parsed_at":"2025-12-17T22:11:43.071Z","dependency_job_id":null,"html_url":"https://github.com/wildfly/prospero","commit_stats":null,"previous_names":["wildfly/prospero"],"tags_count":51,"template":false,"template_full_name":null,"purl":"pkg:github/wildfly/prospero","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fprospero","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fprospero/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fprospero/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fprospero/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wildfly","download_url":"https://codeload.github.com/wildfly/prospero/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildfly%2Fprospero/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28825392,"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-09-05T05:10:51.786Z","updated_at":"2026-01-29T18:02:04.927Z","avatar_url":"https://github.com/wildfly.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Prospero \nProspero is a tool combining Galleon feature packs and wildfly-channels to provision \nand update Wildfly server.\n\n## Example:\nThe demo below provisions and updates Wildfly 29.0.0.Final.\n\n1. Build prospero\n   ```\n      cd \u003cPROSPERO_HOME\u003e\n      mvn clean install\n   ```\n2. Provision server\n   ```\n      ./prospero install --profile=wildfly --dir=wfly-29 --channel=examples/wildfly-29.0.0.Final-channel.yaml\n   ```\n3. Update server\n   1. Edit `examples/wildfly-29.0.0.Final-manifest.yaml` (configured in the wildfly-29.0.0.Final-channel.yaml) and update undertow-core version to:\n   ```\n      - groupId: \"io.undertow\"\n        artifactId: \"undertow-core\"\n        version: \"2.3.8.Final\"\n   ```\n   2. Update server\n   ```\n      ./prospero update perform --dir=wfly-29\n   ```\n\n## Contributing\nPlease see the instructions available in the [contribution guide](CONTRIBUTING.md).\n\n## Building distribution\nThe full distribution of Prospero includes a Galleon feature pack, a standalone zip and documentation. Building those projects is excluded by default and enabled only if a maven `dist` profile is enabled.\n```\n   cd \u003cPROSPERO_HOME\u003e\n   mvn clean install -Pdist\n```\n\n## Running integration tests\nSlower tests (e.g. including provisioning a full server), are located in integration-tests directory and are enabled by `-DallTests` property.\n```\n   cd \u003cPROSPERO_HOME\u003e\n   mvn clean install -DallTests\n```\n## Configuring log level\n\nProspero uses a logging configuration file named `prospero-logging.properties`.\n\nThis file defines the log levels used by Prospero and its dependencies.  \n\nLocated in: `\u003cPROSPERO_HOME\u003e/dist/build/target/prospero-\u003cversion\u003e-SNAPSHOT/bin`\n\nTo adjust the verbosity, edit the log level entries:\n\n`logger.org.wildfly.prospero.level=INFO`\n\n`logger.com.networknt.schema.level=INFO`\n\n`logger.org.eclipse.aether.internal.impl.level=INFO`\n\n**Root logger level (applies to all loggers not explicitly configured)**\n`logger.level=INFO`\n\nValid log levels are:\n\n`ERROR, WARN, INFO, DEBUG, TRACE`\n\n**Example: Enable `DEBUG` logs**\n\nTo enable detailed logs for Prospero:\n\n`logger.org.wildfly.prospero.level=DEBUG`\n\nTo apply `DEBUG` logging globally:\n\n`logger.level=DEBUG`\n\n**Console and File Logging**\n\nProspero logs to both the console and a file. Their log levels can be configured using:\n\n`handler.CONSOLE.level=WARN`\n\n`handler.FILE.level=DEBUG`\n\n**Using --debug for temporary detailed logs**\n\nYou can also enable detailed `DEBUG` logs temporarily by adding the `--debug` option to any Prospero command.  \nThis does **not require editing** the `prospero-logging.properties` file.\n\nExample:\n\n`./prospero install --profile=wildfly --dir=wfly-29 --channel=examples/wildfly-29.0.0.Final-channel.yaml --debug`\n\nLicense\n-------\n* [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fprospero","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwildfly%2Fprospero","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildfly%2Fprospero/lists"}