Skip to content

Commit a266727

Browse files
committed
Use ${maven.artifactId} instead of vertx-sql-client-templates
1 parent b75cdcc commit a266727

File tree

1 file changed

+3
-3
lines changed
  • vertx-sql-client-templates/src/main/asciidoc

1 file changed

+3
-3
lines changed

vertx-sql-client-templates/src/main/asciidoc/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ will trigger the generation of a corresponding mapper class.
205205
The _codegen_ annotation processor generates these classes at compilation time. It is a feature of the Java
206206
compiler so _no extra step_ is required, it is just a matter of configuring correctly your build:
207207

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}`
209209
dependencies to your build.
210210

211211
Here a configuration example for Maven:
@@ -220,7 +220,7 @@ Here a configuration example for Maven:
220220
</dependency>
221221
<dependency>
222222
<groupId>io.vertx</groupId>
223-
<artifactId>vertx-sql-client-template</artifactId>
223+
<artifactId>${maven.artifactId}</artifactId>
224224
<version>${maven.version}</version>
225225
</dependency>
226226
----
@@ -230,7 +230,7 @@ This feature can also be used in Gradle:
230230
[source]
231231
----
232232
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}"
234234
----
235235

236236
IDEs usually provide usually support for annotation processors.

0 commit comments

Comments
 (0)