One of the components is looking for the persistence.xml using the java.class.path system property. It is desired to keep this file separately from jars in the /conf folder.
When running the ...
I have a large Java project with a large number of jar file dependencies. When I try to run the project (using exec) from Eclipse or Netbeans, Maven throws an exception ...
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. ...
Here is a question that I solved for previous maven 2.
Now with the introduction of maven 3 I have decided to migrate my project and my custom plugin I wrote ...
I'm writing a maven plugin that needs to read an XML file that resides in src/main/resources. So to do this, I need access to the current project's classpath. I saw
I am writing a maven plugin now and need to obtain the classpath of another java project. I would like to know if it is possible to get the classpath of ...