Thankyou Mathew and Wayne it did copy from resources directory my point was to have it within the src so that evry package has its corresponding jdo files in the same place.
Thanks, -Viv On Tue, Jun 7, 2011 at 3:00 AM, Wayne Fay <[email protected]> wrote: > > maven install doesn't copy the metadata xml files to target ?? Do we need > to > > place the *.jdo files in the resources directory ?? > > By default, Maven will compile .java files under src/main/java and put > the compiled class files in the proper directory under target. And > Maven will copy files from src/main/resources directly into those same > directories under target. > > So the easiest fix is to just move those .jdo files to s/m/resources. > You can also configure things in your pom file so the files are copied > from under s/m/java but this only complicates things and is > unnecessary in most situations. > > Wayne > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
