Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ Releases are automated via GitHub Actions and occur when a push or merge is made
## Tips for Contributors
- Keep changes focused - small, atomic PRs are easier to review
- If you're unsure about an approach, open a Draft PR early for feedback
- Think about future maintainers - clear code, clear cods, clear tests
- Think about future maintainers - clear code, clear docs, clear tests
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Annotations Maven Central](https://img.shields.io/maven-central/v/io.github.eventhorizonlab/spi-tooling-annotations?color=blue)](https://central.sonatype.com/artifact/io.github.eventhorizonlab/spi-tooling-annotations)
[![Processor Maven Central](https://img.shields.io/maven-central/v/io.github.eventhorizonlab/spi-tooling-processor?color=blue)](https://central.sonatype.com/artifact/io.github.eventhorizonlab/spi-tooling-processor)
[![Build](https://github.com/EventHorizonLab/SPI-Tooling/actions/workflows/release-and-publish.yml/badge.svg)](https://github.com/EventHorizonLab/SPI-Tooling/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md)

---
## 📖 Overview
Expand All @@ -18,7 +18,7 @@ This is designed for:

---
## ✨ Features
- **Annotation‑driven**: Mark your contracts with `@ServiceContract` and service implementations with `@ServiceProvider(Contract:class)`
- **Annotation‑driven**: Mark your contracts with `@ServiceContract` and service implementations with `@ServiceProvider(Contract::class)`
- **Automatic `META-INF/services` generation** at compile time.
- **Multi‑module aware**: Handles aggregation across modules without collisions.
- **Deterministic output**: Stable ordering for reproducible builds.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kotlin.code.style=official
group=io.github.eventhorizonlab
baseVersion=0.1.21
baseVersion=0.1.22
org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
Loading