File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
vertx-sql-client-templates/src/main/asciidoc Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ will trigger the generation of a corresponding mapper class.
205
205
The _codegen_ annotation processor generates these classes at compilation time. It is a feature of the Java
206
206
compiler so _no extra step_ is required, it is just a matter of configuring correctly your build:
207
207
208
- Just add the `io.vertx:vertx-codegen:processor` and `io.vertx:vertx-sql-client-template `
208
+ Just add the `io.vertx:vertx-codegen:processor` and `io.vertx:${maven.artifactId} `
209
209
dependencies to your build.
210
210
211
211
Here a configuration example for Maven:
@@ -220,7 +220,7 @@ Here a configuration example for Maven:
220
220
</dependency>
221
221
<dependency>
222
222
<groupId>io.vertx</groupId>
223
- <artifactId>vertx-sql-client-template </artifactId>
223
+ <artifactId>${maven.artifactId} </artifactId>
224
224
<version>${maven.version}</version>
225
225
</dependency>
226
226
----
@@ -230,7 +230,7 @@ This feature can also be used in Gradle:
230
230
[source]
231
231
----
232
232
annotationProcessor "io.vertx:vertx-codegen:${maven.version}:processor"
233
- compile "io.vertx:vertx-sql-client-template :${maven.version}"
233
+ compile "io.vertx:${maven.artifactId} :${maven.version}"
234
234
----
235
235
236
236
IDEs usually provide usually support for annotation processors.
You can’t perform that action at this time.
0 commit comments