I am almost there :) Fixed several issues:
- Lombok "val" does not work ok in all cases for JDK 11+ -- changed to use "final var" instead
- AspectJ compiler (ajc) does not recognize source level 16, only 14 -- any workaround for this?
- Findbugs does not support JDKs beyond 8 -- changed to Spotbugs
Still... I am getting this:
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ my-module ---
[WARNING] Can't extract module name from json-path-assert-2.5.0.jar: json.path.assert: Invalid module name: 'assert' is not a Java identifier
[WARNING] Can't extract module name from xalan-2.7.2.jar: Provider class org.apache.bsf.BSFManager not in module
[WARNING] Can't extract module name from java-8-matchers-1.9.jar: java.8.matchers: Invalid module name: '8' is not a Java identifier
[INFO] Changes detected - recompiling the module!
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] module not found: org.openqa.selenium.core
[ERROR] module not found: httpcore
[ERROR] module not found: httpclient
[INFO] 3 errors
Any suggestion(s)?