You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,23 @@ The generated JSON-parser uses `org.json:json`.
18
18
<version>0.0.1-SNAPSHOT</version>
19
19
</dependency>
20
20
```
21
+
* If you wish to use JPMS, also add the annotation processor to the `maven-compiler-plugin`
22
+
```xml
23
+
<plugin>
24
+
<artifactId>maven-compiler-plugin</artifactId>
25
+
<version>3.8.1</version>
26
+
<configuration>
27
+
<release>11</release>
28
+
<annotationProcessorPaths>
29
+
<annotationProcessorPath>
30
+
<groupId>io.github.danthe1st</groupId>
31
+
<artifactId>compile-time-json-parser</artifactId>
32
+
<version>0.0.1-SNAPSHOT</version>
33
+
</annotationProcessorPath>
34
+
</annotationProcessorPaths>
35
+
</configuration>
36
+
</plugin>
37
+
```
21
38
* Enable annotation processing for this project under `Settings`>`Build, Execution, Deployment`>`Compiler`>`Annotation Processors`>`Enable Annotation Processing`
0 commit comments