feat: add Hexagonal Architecture Spring Rules validation#22
Merged
Conversation
…example Introduced a reusable Hexagonal Architecture validation rule library: - Added ArchUnit tests for enforcing dependency rules in `spring-rules` submodule (e.g., no domain model dependency on frameworks). - Configured publishing to Maven Central with necessary metadata and signing. - Enabled OWASP dependency scanning and JReleaser integration. Created an example `single-module-spring` project demonstrating rule application: - Configured Architecture Validator Gradle plugin. - Integrated `spring-rules` library for validation.
…s.versions.toml` - Replaced direct plugin and dependency versions with aliases from `libs.versions.toml`. - Updated `build.gradle` to use `alias(libs.plugins)` and `libs.<library>.iff` syntax. - Added plugin and dependency declarations for `architecture-validator` and Spring in `libs.versions.toml`.
…dule-spring` settings.gradle
Arc-E-Tect
added a commit
that referenced
this pull request
Jun 11, 2026
# [0.4.0](v0.3.4...v0.4.0) (2026-06-11) ### ✨ New and updated features * add Hexagonal Architecture Spring Rules validation ([#22](#22)) ([569dabc](569dabc)), closes [#22](#22) * **examples:** add refreshVersions and libs.versions.toml to jacoco-marker example ([#21](#21)) ([659e206](659e206)), closes [#21](#21) ### 📝 Documentation * **readme:** update version to 0.3.4 [skip ci] ([6ceaee8](6ceaee8)) ### 🔧 Misc * **dependencyUpdate:** update Library repo workflow references using the Updater ([#20](#20)) ([1d176ad](1d176ad)), closes [#20](#20)
Owner
Author
|
🎉 This PR is included in version 0.4.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
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.
Summary
This pull request introduces the following changes:
New Features:
single-module-springexample project to demonstrate and validate the rule library:spring-ruleslibrary.Additional Notes
This implementation supports fostering cleaner, maintainable architectural patterns in Spring-based projects while modernizing example projects for better clarity and usability.