> How do I modify the java classpath so it includes artifacts my pom.xml > depends on? I need to make those artifacts available to a shell script that > is launched from maven/WAS6 plugin.
Take a look at the dependency plugin, specifically the build-classpath mojo: http://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html It is open source so you should be able to figure it out. Your plugin needs to do something similar. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
