hello ,
I am running my java project within IntelliJ IDE and using Maven to compile the java code .
On executing the mvn clean compile -X command , I am running into the following compilation and build failures
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /<path to my java project location./../beamtutorial/src/main/java/module-info.java>:[5,37] modul
e not found: org.apache.beam.runners.direct
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project beamtutorial: Compilation failure
[ERROR] <path to my java project location...//beamtutorial/src/main/java/module-info.java:[5,37] modul
e not found: org.apache.beam.runners.direct
how can i fix the issue ?
thank you