I am writing some coge-gen maven-plugin.
I need my project classpath be injected in to my plugin execution classpath.
I found this article. The solution there works but is quite long. Maybe someone of you know an out of the box solution.
|
I am writing some coge-gen maven-plugin. I need my project classpath be injected in to my plugin execution classpath. I found this article. The solution there works but is quite long. Maybe someone of you know an out of the box solution. |
|||
|
|
|
Found the answer! OK , Pascal is right , here it is for the foundation!! So here is the cleanest way ( as far as i know ) to add the compile classpath to the execution of you plugin. Here are some code samples from my code-gen plugin, that is actually generating some template code based on the code compiled. So I needed first the code compiled, then analyzed, generate some code, and then compiled again.
|
|||||||||||
|
|
followed this link.... did very similar thing for my code... i have created a maven-fit-plugin I have used exactly the same pom.xml for my plugin, reusing the IncludeProjectDependenciesComponentConfigurator I am using maven 2.2.0 if it can help, here's pom again
hope this helps rgds marco
|
||||
|
|
|
I took this approach and apparently it's working: 1 - a MavenProject parameter is needed within your Mojo class:
2 - and then you can get the classpath elements from project instance:
|
|||
|
|