{"id":19300280,"url":"https://github.com/zenliucn/bytebuddy-assmbeler","last_synced_at":"2025-07-15T16:06:51.497Z","repository":{"id":62304090,"uuid":"559464290","full_name":"ZenLiuCN/bytebuddy-assmbeler","owner":"ZenLiuCN","description":"utilities for use byte-buddy build class","archived":false,"fork":false,"pushed_at":"2022-11-27T08:49:03.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T01:30:37.729Z","etag":null,"topics":["asm","byte-buddy"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZenLiuCN.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":"2022-10-30T07:34:49.000Z","updated_at":"2022-10-30T09:54:08.000Z","dependencies_parsed_at":"2022-10-30T11:16:00.639Z","dependency_job_id":null,"html_url":"https://github.com/ZenLiuCN/bytebuddy-assmbeler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZenLiuCN/bytebuddy-assmbeler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZenLiuCN%2Fbytebuddy-assmbeler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZenLiuCN%2Fbytebuddy-assmbeler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZenLiuCN%2Fbytebuddy-assmbeler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZenLiuCN%2Fbytebuddy-assmbeler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZenLiuCN","download_url":"https://codeload.github.com/ZenLiuCN/bytebuddy-assmbeler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZenLiuCN%2Fbytebuddy-assmbeler/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265444585,"owners_count":23766431,"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":["asm","byte-buddy"],"created_at":"2024-11-09T23:14:26.641Z","updated_at":"2025-07-15T16:06:51.469Z","avatar_url":"https://github.com/ZenLiuCN.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Assembler\n[![](https://jitpack.io/v/ZenLiuCN/bytebuddy-assmbeler.svg)](https://jitpack.io/#ZenLiuCN/bytebuddy-assmbeler)\n\nUtilities for use ByteBuddy to generate classes.\n\n## Component\n### Maker\nUtilities to make Description for Elements.\n+ TypeMaker : make `TypeDescription.Latent`\n+ MethodMaker : make `MethodDescription.Latent`\n+ MethodTokenMaker : make `MethodDescription.Token`\n+ FieldMaker : make `FieldDescription.Latent`\n+ FieldTokenMaker : make `FieldDescription.Token`\n+ TypeVariableMaker : make `TypeVariableToken`\n+ ParameterTokenMaker : make `ParameterDescription.Token`\n+ generic(*) : a wrapper for `TypeDescription.Generic.Builder`\n+ annotation(*) : a wrapper for `AnnotationDescription.Builder`\n### Assembler\nUtilities to build ByteCode with ASM like mode.\n+ Manual: Simplest builder with only ByteCode operates.\n+ Compute: Complex builder with stack compute and type trace.\n### ByteBuddyPlugin and Extension\n+ ByteBuddyPlugin: the implement of Byte-Buddy's `Plugin`\n+ Extension: SPI for use by `ByteBuddyPlugin`\n\nuse with maven for compile time enhancement:\n```xml\n  \u003cplugin\u003e\n        \u003cgroupId\u003enet.bytebuddy\u003c/groupId\u003e\n        \u003cartifactId\u003ebyte-buddy-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e${byte-buddy-maven-plugin.version}\u003c/version\u003e\n        \u003cexecutions\u003e\n            \u003cexecution\u003e\n                \u003cid\u003epost-compile\u003c/id\u003e\n                \u003cphase\u003ecompile\u003c/phase\u003e\n                \u003cgoals\u003e\n                    \u003cgoal\u003etransform\u003c/goal\u003e\n                \u003c/goals\u003e\n            \u003c/execution\u003e\n            \u003cexecution\u003e\n                \u003cid\u003epost-test-compile\u003c/id\u003e\n                \u003cphase\u003etest-compile\u003c/phase\u003e\n                \u003cgoals\u003e\n                    \u003cgoal\u003etransform-test\u003c/goal\u003e\n                \u003c/goals\u003e\n            \u003c/execution\u003e\n        \u003c/executions\u003e\n        \u003cconfiguration\u003e\n            \u003c!-- this will autoload ByteBuddyPlugin and all Extensions --\u003e\n            \u003cclassPathDiscovery\u003etrue\u003c/classPathDiscovery\u003e\n        \u003c/configuration\u003e\n    \u003c/plugin\u003e\n```\n\n## License\nGPL-2.0-only WITH Classpath-exception-2.0 (SPDX identifier)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenliucn%2Fbytebuddy-assmbeler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzenliucn%2Fbytebuddy-assmbeler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenliucn%2Fbytebuddy-assmbeler/lists"}