-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Annotation processor base class for executing Smithy-Build plugins #2073
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hpmellema
force-pushed
the
annotation-processor
branch
from
December 14, 2023 19:58
b5ccf5f
to
02b6b85
Compare
hpmellema
force-pushed
the
annotation-processor
branch
from
December 14, 2023 20:01
02b6b85
to
8f8f0d1
Compare
hpmellema
force-pushed
the
annotation-processor
branch
from
December 14, 2023 20:43
3b460ce
to
383c560
Compare
Merged
milesziemer
reviewed
Dec 15, 2023
...tion-processor/src/main/java/software/amazon/smithy/processor/SmithyAnnotationProcessor.java
Outdated
Show resolved
Hide resolved
milesziemer
approved these changes
Dec 15, 2023
…hy/processor/SmithyAnnotationProcessor.java Co-authored-by: Miles Ziemer <45497130+milesziemer@users.noreply.github.com>
JordonPhillips
requested changes
Jan 24, 2024
...tion-processor/src/main/java/software/amazon/smithy/processor/SmithyAnnotationProcessor.java
Outdated
Show resolved
Hide resolved
...tion-processor/src/main/java/software/amazon/smithy/processor/SmithyAnnotationProcessor.java
Outdated
Show resolved
Hide resolved
...tion-processor/src/main/java/software/amazon/smithy/processor/SmithyAnnotationProcessor.java
Outdated
Show resolved
Hide resolved
…hy/processor/SmithyAnnotationProcessor.java Co-authored-by: Jordon Phillips <JordonPhillips@users.noreply.github.com>
JordonPhillips
approved these changes
Feb 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of changes:
Adds a base class for annotation processors for Smithy build plugins. This annotation processor executes smithy build for a single plugin and adds the generated artifacts (java code or
META-INF/
metadata files) to the generated sources for the project. Annotation processors are easily supported in all java build systems and this processor will be used for the trait codegen plugin to easily add generated traits.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.