> I would also like to add the classpath and set a classpathprefix like you > can do using the normal maven jar. > <addClasspath>true</addClasspath> > <classpathPrefix>lib/</classpathPrefix> > > Is there a way to do this with the shade plugin?
Generally, the thinking with Shade is that you are building an "uber-jar" that is going to contain the contents all your dependency jars along with your own code, so there should be no need to specify a classpath since it is all in one single jar file. What is your requirement? Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
