Skip to content

Commit f8e14c7

Browse files
authored
Fix use of deprecated Maven properties
1 parent 84013e3 commit f8e14c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

picocli-codegen/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ The picocli annotation processor supports the options below.
190190

191191
The generated files are written to `META-INF/native-image/picocli-generated/${project}`.
192192

193-
The `project` option can be omitted, but it is a good idea to specify the `project` option with a unique value for your project (e.g. `${groupId}/${artifactId}`) if your jar may be https://stackoverflow.com/a/49811665[shaded] with other jars into an uberjar.
193+
The `project` option can be omitted, but it is a good idea to specify the `project` option with a unique value for your project (e.g. `${project.groupId}/${project.artifactId}`) if your jar may be https://stackoverflow.com/a/49811665[shaded] with other jars into an uberjar.
194194

195195

196196
==== Other Options
@@ -227,7 +227,7 @@ To set an annotation processor option in Maven, you need to use the `maven-compi
227227
<version>${maven-compiler-plugin-version}</version>
228228
<configuration>
229229
<compilerArgs>
230-
<arg>-Aproject=${groupId}/${artifactId}</arg>
230+
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
231231
</compilerArgs>
232232
</configuration>
233233
</plugin>

0 commit comments

Comments
 (0)