-
Notifications
You must be signed in to change notification settings - Fork 39
[WIP] Feature: CRD Generation to POJO Classes at Maven Build Time #450
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
Open
maeveho25
wants to merge
26
commits into
jenkinsci:main
Choose a base branch
from
maeveho25:feature/crd-generator-integration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
c52c662
-
maeveho25 bf0fe49
init
maeveho25 1ea861b
initialize CRD to POJO generator
maeveho25 72a6092
test
maeveho25 a68e870
test
maeveho25 df75560
Merge branch 'main' into feature/crd-generator-integration
maeveho25 7f1a5fd
fix: replace cobertura with jacoco for Java 17 compatibility
maeveho25 50084a3
fix: update JUnit Jupiter Engine to 5.12.2 for compatibility
maeveho25 5650c3e
feat: improve CRD Generator to run with mvn generate-sources
maeveho25 b90ae5d
fix: add generate-pojos profile for mvn generate-sources alias
maeveho25 fdd1d77
fix: disable equals/hashCode generation to avoid SpotBugs issues
maeveho25 fb13b9a
Update src/main/java/org/waveywaves/jenkins/plugins/tekton/generator/…
maeveho25 257522f
Update src/main/java/org/waveywaves/jenkins/plugins/tekton/generator/…
maeveho25 d156250
fix: add missing BASE_STEP_CLASS constant for CrdJavaGenerator
maeveho25 020299a
Update src/test/java/org/waveywaves/jenkins/plugins/tekton/client/bui…
maeveho25 10dca32
Update src/main/java/org/waveywaves/jenkins/plugins/tekton/generator/…
maeveho25 d9d387e
Update src/main/java/org/waveywaves/jenkins/plugins/tekton/generator/…
maeveho25 3f7c238
fix: correct syntax error in EnhancedCrdProcessor
maeveho25 4a13f13
fix: add missing constants BASE_STEP_CLASS and BASE_STEP_CRD_TYPES
maeveho25 3443578
fix: align BASE_STEP_CLASS with EnhancedCrdProcessor for consistency
maeveho25 a7e5d42
fix: revert to Tekton custom BaseStep - workflow.steps.BaseStep doesn…
maeveho25 756fee1
refactor: rename CRD generator classes for better clarity
maeveho25 ee6a362
security: replace System.exit() calls with proper exception handling
maeveho25 fee1ab1
fix: temporarily removed Jelly generating files
maeveho25 1683ab6
security: replace System.exit() with exceptions to fix Jenkins Securi…
maeveho25 ca723e0
security: remove System.exit() for jenkins security rule:
maeveho25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
-Pconsume-incrementals | ||
-Pmight-produce-incrementals | ||
-Dchangelist.format=-rc%d | ||
-Pdownload-binaries |
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependencies are duplicated in both the dependencies and dependencyManagement sections (jsonschema2pojo-core appears in both). This can lead to version conflicts and maintenance issues. Dependencies should be declared in dependencyManagement and referenced without versions in the dependencies section.
Copilot uses AI. Check for mistakes.