From b6430ae504e445afdd17914cc9b1e9388e26b9a2 Mon Sep 17 00:00:00 2001 From: thehanslevi Date: Fri, 19 Jun 2026 22:32:29 -0400 Subject: [PATCH] docs: fix quick start Maven coordinates --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0d2543f..c07efc4 100644 --- a/README.md +++ b/README.md @@ -33,26 +33,26 @@ This is designed for: Groovy DSL: ```groovy dependencies { - implementation "com.github.eventhorizonlab:spi-tooling-annotations:" + implementation "io.github.eventhorizonlab:spi-tooling-annotations:" // --- BELOW ONLY REQUIRED FOR PROJECTS USING @ServiceProvider --- // Kotlin projects: - kapt "com.github.eventhorizonlab:spi-tooling-processor:" + kapt "io.github.eventhorizonlab:spi-tooling-processor:" // Java projects: - annotationProcessor("com.github.eventhorizonlab:spi-tooling:") + annotationProcessor("io.github.eventhorizonlab:spi-tooling-processor:") } ``` Gradle kts: ```kotlin dependencies { - implementation("com.github.eventhorizonlab:spi-tooling-annotations:") + implementation("io.github.eventhorizonlab:spi-tooling-annotations:") // --- BELOW ONLY REQUIRED FOR PROJECTS USING @ServiceProvider --- // Kotlin projects: - kapt("com.github.eventhorizonlab:spi-tooling-processor:") + kapt("io.github.eventhorizonlab:spi-tooling-processor:") // Java projects: - annotationProcessor("com.github.eventhorizonlab:spi-tooling-processor:") + annotationProcessor("io.github.eventhorizonlab:spi-tooling-processor:") } ``` ➡️ See [Kapt](https://kotlinlang.org/docs/kapt.html#0) for more information