inheriting generating classpath inside plugins

2006-02-16 Thread Jake Pezaro
i have written a new plugin. however, no matter what dependencies are defined by the calling pom, my pluging has only 2 jars on it's classpath. they are: when running maven from the command line: .../maven-2.0.2/core/boot/classworlds-1.1.jar when running maven from eclipse:

Re: inheriting generating classpath inside plugins

2006-02-16 Thread andrew
Hi Jake, Have a look at the following: How Maven's classloaders work http://maven.apache.org/guides/mini/guide-maven-classloading.html ... each plugin has its own classloader, including its dependencies, itself, and the libraries above. It *does not* contain the project dependencies as in Maven