Re: How to store and access plugin resources in maven 2

2006-02-20 Thread dan tran
use this.getClass().getClassLoader().getResourceAsStream( resourceLocation ); to copy your resource to where ever you want. -D On 2/20/06, Scott Ryan <[EMAIL PROTECTED]> wrote: > > In Maven 1 there was a way to store resources with your plugin that you > could easily access inside the plugin to

How to store and access plugin resources in maven 2

2006-02-20 Thread Scott Ryan
In Maven 1 there was a way to store resources with your plugin that you could easily access inside the plugin to copy out the resources etc. I used this for delivering templates etc. I accessed the directory via the plugin-resources parameter and it worked very well. Is there such a parameter av