I wanted to check out the source in eclipse. I have used "Check out Maven Projects from SCM" but once it is checked out I get the error: "Plugin execution not covered by lifecycle configuration org.codehaus.mojo:javac" and ExpressionParser and ParseException are missing. Seems for me like the javacc stuff is not executed / installed properly ? Can you help me to solve the issue ?
Regards
Flo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Install the 'JavaCC Eclipse Plug-in' from the Help -> Eclipse Marketplace... menu option.
Then, open src/main/javacc/org/relique/jdbc/csv/where.jj in Eclipse and a 'JavaCC' menu and a JavaCC toolbar icon appear in Eclipse. Either of these can be used to compile where.jj to generate the java classes ExpressionParser and ParseException.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I wanted to check out the source in eclipse. I have used "Check out Maven Projects from SCM" but once it is checked out I get the error: "Plugin execution not covered by lifecycle configuration org.codehaus.mojo:javac" and ExpressionParser and ParseException are missing. Seems for me like the javacc stuff is not executed / installed properly ? Can you help me to solve the issue ?
Regards
Flo
Install the 'JavaCC Eclipse Plug-in' from the Help -> Eclipse Marketplace... menu option.
Then, open src/main/javacc/org/relique/jdbc/csv/where.jj in Eclipse and a 'JavaCC' menu and a JavaCC toolbar icon appear in Eclipse. Either of these can be used to compile where.jj to generate the java classes ExpressionParser and ParseException.
Thanks, I had the plugin installed. The classes were generated without any problems by hand. I just wanted to set up the dev environment properly.