Re: how deploy a jar in the webapp?

2007-01-05 Thread garbandi
I'm still quite new to maven, so excuse if i'm wrong, but as far as i know, maven deploys compiled java-classes as class-files into WEB-INF/classes. If you really need your classes to be deployed as a jar file, i think you'll have to create a separate jar-project and add this as a dependency to

RE: using hibernate3-maven-plugin:hmb2ddl with test-classes

2007-01-05 Thread garbandi
hi johann, thanks for your help. adding the flag to the properties leads to various lines of output [INFO] found EJB3 Entity bean: XXX where XXX now contains the classes in the test-classes directory but then i receive a new ClassNotFoundException for those classes: Caused by:

RE: using hibernate3-maven-plugin:hmb2ddl with test-classes

2007-01-04 Thread garbandi
hi johann, i've moved to 2.0. but i didn't find myself a way to scan the classes in test-classes. so i would appreciate your help. best regards, andi Johann Reyes-2 wrote: Hello Andi I believe that with version 1.0-SNAPSHOT you can not scan the test-classes, but 2.0-SNAPSHOT can do.

using hibernate3-maven-plugin:hmb2ddl with test-classes

2007-01-03 Thread garbandi
hi, how can i set up hibernate3-maven-plugin (i'm using snapshot 1.0) to let hmb2ddl scan classes from target/test-classes for annotations? some backgroundinfo: i'm trying to set up a jar-project that uses hibernate-annotations. it contains base-classes that use the @MappedSuperclass. i want to