We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16913a2 commit b108c46Copy full SHA for b108c46
README.md
@@ -7,6 +7,8 @@ Uses Annotation processing to automatically add `META-INF/services` entries for
7
8
## Usage
9
### 1. Add dependency:
10
+
11
+#### Maven:
12
```xml
13
<dependency>
14
<groupId>io.avaje</groupId>
@@ -17,6 +19,12 @@ Uses Annotation processing to automatically add `META-INF/services` entries for
17
19
</dependency>
18
20
```
21
22
+#### Gradle:
23
+```kotlin
24
+compileOnly("io.avaje:avaje-spi-service:${spi.version}")
25
+annotationProcessor("io.avaje:avaje-spi-service:${spi.version}")
26
+```
27
28
When working with Java modules you need to add the annotation module as a static dependency.
29
```java
30
module my.module {
0 commit comments