Re: EJB Jar packaging

2008-07-13 Thread ChrisGWarp
Stephen Coy-3 wrote: The usual way of doing this is to package the EJB jar together with its dependencies in an EAR file. In a JEE5 environment the deps can either go in a lib directory in the EAR or (and for J2EE 1.3/4) be at the root of the EAR and a manifest classpath entry added

Re: EJB Jar packaging

2008-07-13 Thread Stephen Coy
In JEE5, jars in an EAR's lib directory do not need to be in the EJB jar's manifest classpath. In J2EE 1.3/1.4 these jars normally need to be in the EJB jar's manifest classpath, whether or not they are in a lib directory. If they are in a lib directory, then the manifest classpath

Re: question about dependency issue in maven

2008-07-13 Thread Siarhei Dudzin
I didn't find pom's in some of your submodules... Siarhei

RE: [ANN] Maven Site Plugin 2.0-beta-7 Released

2008-07-13 Thread Giovanni Azua
hi, I had been following this thread because the MSITE-274 is not working for me yet. I have of course checked that the plugin is defined within the build section and have tried several things but none work. I still get MSITE-274. During the build, the previous 2.0-beta-6 is still pulled, below

Re: [ANN] Maven Site Plugin 2.0-beta-7 Released

2008-07-13 Thread Dennis Lundberg
Try running 'mvn decendency:tree' to see if some of your dependencies are pulling in an old version of the Site Plugin. Also running 'mvn help:effective-pom' will show you the POM that is actually used when you run mvn. Giovanni Azua wrote: hi, I had been following this thread because the

Archetype, define file name

2008-07-13 Thread sverhagen
I am making an archetype for my project. I added a requiredProperty named serviceBaseName to make the default content of some Java files, e.g.: package ${package}; /** * Interface of the ${serviceBaseName} service */ public interface

Re: mvn eclipse:eclipse should use a different variable name than M2_REPO

2008-07-13 Thread Barrie Treloar
On Fri, Jul 11, 2008 at 8:09 PM, Arand, Thomas (NSN - DE/Muenich) [EMAIL PROTECTED] wrote: Hi all, I want to add two projects to eclipse. Unfortunately, they require the use of two different local maven repositories. Unfortunately, mvn eclipse:eclipse generates .classpath files where the

Re: question about dependency issue in maven

2008-07-13 Thread wohlgemuth
hm this is weird, can you tell me which/ I'm very sure they all have poms. did you try to checkout the code? The url for this is svn co https://binbase.svn.sourceforge.net/svnroot/binbase/trunk/binbase binbase thx for your help. g. On Sun, Jul 13, 2008 at 4:55 AM, Siarhei Dudzin [EMAIL

Re: EJB Jar packaging

2008-07-13 Thread Chris_Graham
Stephen Coy [EMAIL PROTECTED] wrote on 13/07/2008 21:07:57: In JEE5, jars in an EAR's lib directory do not need to be in the EJB jar's manifest classpath. Ah. Thanks makes it a lot clearer! Thanks for clearing that up for me. In J2EE 1.3/1.4 these jars normally need to be in the EJB

Re: Archetype sample for multi-projects

2008-07-13 Thread Chris_Graham
I had similar issues, and no answers here, so I'll try to help. s[e]th h[o]lth [EMAIL PROTECTED] wrote on 11/07/2008 03:18:36: Hello, Since monday i'm trying to build a multi-projects archetype without success... I tried many differents way to do it but i didn't reach this goal :x - I

module-directory variable

2008-07-13 Thread Erwin Mueller
Hallo I'm a pretty new user of mvn2 and I have a question: I use the exec-plugin to execute a script that starts the compilation of an IzPack installer. plugin groupIdorg.codehaus.mojo/groupId artifactIdexec-maven-plugin/artifactId version1.1-beta-1/version

RE: EJB Jar packaging

2008-07-13 Thread Martin Gainty
Stephen With Websphere this depends on how you've specified CLASSLOADER Mode http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzatz/51/program/clsadmcns.htm PARENT_LAST will load class from Local Classpath first PARENT_FIRST will load classes from Parent then the Local

Re: module-directory variable

2008-07-13 Thread Jason van Zyl
If you mean something that points to the top-level so you can create relative paths then no. This is something we would like to introduce. On 13-Jul-08, at 9:25 PM, Erwin Mueller wrote: Hallo I'm a pretty new user of mvn2 and I have a question: I use the exec-plugin to execute a script that