Skip to content

Commit 3dd17cc

Browse files
authored
Merge pull request #192 from SentryMan/patch-1
Remove Compiler Plugin from quick start
2 parents 10c8fa1 + 736da4e commit 3dd17cc

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -45,30 +45,6 @@ to generate adapter code for Javalin and Helidon SE/Nima.
4545
<scope>provided</scope>
4646
</dependency>
4747
```
48-
If there are other annotation processors and they are specified via <i>maven-compiler-plugin</i> then we add avaje-http-generator there instead.
49-
```xml
50-
<plugin>
51-
<groupId>org.apache.maven.plugins</groupId>
52-
<artifactId>maven-compiler-plugin</artifactId>
53-
<configuration>
54-
<annotationProcessorPaths> <!-- All annotation processors specified here -->
55-
<path>
56-
<groupId>io.avaje</groupId>
57-
<artifactId>avaje-inject-generator</artifactId>
58-
<version>${avaje-inject.version}</version>
59-
</path>
60-
<path>
61-
<groupId>io.avaje</groupId>
62-
<artifactId>avaje-http-javalin-generator</artifactId>
63-
<version>${avaje-http.version}</version>
64-
</path>
65-
<path>
66-
... other annotation processor ...
67-
</path>
68-
</annotationProcessorPaths>
69-
</configuration>
70-
</plugin>
71-
```
7248

7349
## Define a Controller (These APT processors work with both Java and Kotlin.)
7450
```java

tests/test-nima-jsonb/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>io.avaje</groupId>
3333
<artifactId>avaje-jsonb</artifactId>
34-
<version>1.4-RC7</version>
34+
<version>1.4-RC8</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>io.helidon.nima.webserver</groupId>
@@ -79,7 +79,7 @@
7979
<path>
8080
<groupId>io.avaje</groupId>
8181
<artifactId>avaje-jsonb-generator</artifactId>
82-
<version>1.4-RC7</version>
82+
<version>1.4-RC8</version>
8383
</path>
8484
</annotationProcessorPaths>
8585
</configuration>

0 commit comments

Comments
 (0)