{"id":15043435,"url":"https://github.com/thorntail/thorntail","last_synced_at":"2025-10-04T05:31:51.410Z","repository":{"id":55989070,"uuid":"52040340","full_name":"thorntail/thorntail","owner":"thorntail","description":"Source code for the Thorntail project","archived":true,"fork":false,"pushed_at":"2020-12-02T16:49:38.000Z","size":21556,"stargazers_count":390,"open_issues_count":50,"forks_count":223,"subscribers_count":50,"default_branch":"master","last_synced_at":"2024-12-21T09:42:02.369Z","etag":null,"topics":["java","microservices"],"latest_commit_sha":null,"homepage":"http://thorntail.io/","language":"Java","has_issues":false,"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/thorntail.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2016-02-18T21:32:47.000Z","updated_at":"2024-10-29T07:13:32.000Z","dependencies_parsed_at":"2022-08-15T10:51:19.999Z","dependency_job_id":null,"html_url":"https://github.com/thorntail/thorntail","commit_stats":null,"previous_names":["wildfly-swarm/wildfly-swarm","wildfly-swarm/wildfly-swarm-core"],"tags_count":65,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thorntail%2Fthorntail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thorntail%2Fthorntail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thorntail%2Fthorntail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thorntail%2Fthorntail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thorntail","download_url":"https://codeload.github.com/thorntail/thorntail/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235222543,"owners_count":18955327,"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","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":["java","microservices"],"created_at":"2024-09-24T20:49:02.523Z","updated_at":"2025-10-04T05:31:45.348Z","avatar_url":"https://github.com/thorntail.png","language":"Java","funding_links":[],"categories":["开发框架","java"],"sub_categories":["微服务框架"],"readme":"[![Build Status](https://ci.wildfly-swarm.io/buildStatus/icon?job=thorntail-linux)](https://ci.wildfly-swarm.io/job/thorntail-linux)\n[![License](https://img.shields.io/:license-Apache2-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.thorntail/thorntail/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.thorntail/thorntail)\n[![Join the chat at freenode:thorntail](https://img.shields.io/badge/irc-freenode%3A%20%23thorntail-blue.svg)](http://webchat.freenode.net/?channels=%23thorntail)\n\n![Thorntail: Rightsize your JavaEE Applications](http://thorntail.io/images/thorntail_horizontal_rgb_600px_reverse.png)\n\n\u003e Issues for v2/master are being tracked using the [Red Hat issue tracking system](https://issues.redhat.com/projects/THORN/issues?filter=allopenissues) (JIRA).\n\u003e Issues for v4 are being tracked in GitHub Issues.\n\u003e Bug reports and feature requests are greatly appreciated.\n\n# Thorntail Core\n\nThorntail provides a mechanism for building\napplications as *uber jars*, with just enough of the\nWildFly application server wrapped around it to support\neach application's use-case.\n\n\u003e Note: Thorntail requires Maven 3.2.5 or higher for building your application.\n\n\u003e Note: Thorntail requires JDK 8 or higher for building your application\n\u003e or for building Thorntail itself.\n\n# Project Configuration\n\nIn a normal WAR-based maven `pom.xml`, simply add the following\n```xml\n\u003cplugin\u003e\n  \u003cgroupId\u003eio.thorntail\u003c/groupId\u003e\n  \u003cartifactId\u003ethorntail-maven-plugin\u003c/artifactId\u003e\n  \u003cversion\u003e${version.thorntail}\u003c/version\u003e\n  \u003cexecutions\u003e\n    \u003cexecution\u003e\n      \u003cphase\u003epackage\u003c/phase\u003e\n      \u003cgoals\u003e\n        \u003cgoal\u003epackage\u003c/goal\u003e\n      \u003c/goals\u003e\n    \u003c/execution\u003e\n  \u003c/executions\u003e\n\u003c/plugin\u003e\n```\n\nThis will take the `.war` file normally created by your build, and wrap\nit in the wildfly-swarm mechanisms.\n\nIf you normally produce `myapp-1.0.war`, in your `target/` directory will\nthen also be present a `myapp-1.0-thorntail.jar`.\n\nIn order to specify the portions of the WildFly AS your application needs,\nyour `pom.xml` should specify some of the following dependencies within\nthe `io.thorntail` Maven group-id:\n\n* bean-validation\n* cdi\n* ee\n* io\n* jaxrs\n* logging\n* naming\n* request-controller\n* security\n* transactions\n* undertow\n* _and many more!_\n\n# How To Build Thorntail Itself\n\nThorntail attempts to be a well-behaved Maven project. To install to your local repository for usage:\n```bash\nmvn clean install\n```\n\nIf you're running short on time:\n\n```bash\nmvn clean install -DskipTests\n```\n\n# Documentation\n\nFor a more complete set of documentation, go to the [Thorntail Guide](https://docs.thorntail.io/).\n\n# Community\n\n* We hang out in `#thorntail` on irc.freenode.net.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthorntail%2Fthorntail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthorntail%2Fthorntail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthorntail%2Fthorntail/lists"}