File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
inject/src/main/java/io/avaje/inject Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -285,8 +285,11 @@ public BeanScope build() {
285285 Level .ERROR ,
286286 "Could not find any AvajeModule instances to wire. Possible Causes: \n "
287287 + "1. No beans have been defined.\n "
288- + "2. The avaje-inject-generator depedency was not available during compilation\n "
289- + "3. Perhaps using Gradle and a misconfigured IDE? Refer to https://avaje.io/inject#gradle" );
288+ + "2. The avaje-inject-generator depedency was not available during compilation"
289+ + (Runtime .version ().feature () >= 23
290+ ? " or -proc full was not enabled in maven compiler"
291+ : "" )
292+ + "\n 3. Perhaps using Gradle and a misconfigured IDE? Refer to https://avaje.io/inject#gradle" );
290293 }
291294
292295 postConstructList .forEach (builder ::addPostConstruct );
You can’t perform that action at this time.
0 commit comments