The GuicedEE BOM centralizes dependency versions across the GuicedEE ecosystem. Import it into your Maven project to align compatible module versions without hardcoding each artifact’s version.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>guicedee-bom</artifactId>
<version>${guicedee.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
<!-- Now you can omit versions for GuicedEE artifacts -->
</dependencyManagement>
Then declare dependencies without versions:
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>guiced-vertx</artifactId>
</dependency>
- Pact:
PACT.md - Rules:
RULES.md - Guides:
GUIDES.md - Architecture index:
docs/architecture/README.md
- License: Apache 2.0
- Contributions: Issues/PRs welcome. Keep docs updated with any artifact changes.