We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5035899 commit 216d219Copy full SHA for 216d219
docs/authoring-recipes/recipe-development-environment.md
@@ -203,12 +203,16 @@ dependencies {
203
<artifactId>maven-surefire-plugin</artifactId>
204
<version>3.0.0-M9</version>
205
</plugin>
206
- <!-- lombok is optional, but recommended for authoring recipes -->
207
<plugin>
208
<groupId>org.apache.maven.plugins</groupId>
209
<artifactId>maven-compiler-plugin</artifactId>
210
<version>3.13.0</version>
211
<configuration>
+ <!-- Jackson deserialization requires named parameters -->
212
+ <compilerArgs>
213
+ <arg>-parameters</arg>
214
+ </compilerArgs>
215
+ <!-- lombok is optional, but recommended for authoring recipes -->
216
<annotationProcessorPaths>
217
<path>
218
<groupId>org.projectlombok</groupId>
0 commit comments