Skip to content

Commit

Permalink
Fix use of deprecated Maven properties
Browse files Browse the repository at this point in the history
  • Loading branch information
charphi committed Jan 25, 2021
1 parent 84013e3 commit f8e14c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions picocli-codegen/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ The picocli annotation processor supports the options below.

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

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.
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.


==== Other Options
Expand Down Expand Up @@ -227,7 +227,7 @@ To set an annotation processor option in Maven, you need to use the `maven-compi
<version>${maven-compiler-plugin-version}</version>
<configuration>
<compilerArgs>
<arg>-Aproject=${groupId}/${artifactId}</arg>
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
</compilerArgs>
</configuration>
</plugin>
Expand Down

0 comments on commit f8e14c7

Please sign in to comment.