Re: [OT] jalopy

2004-10-11 Thread Chad Woolley
Nathan Coast <[EMAIL PROTECTED]> wrote: Hi, How do people create their jalopy config files? I use the eclipse plugin and just export it from there. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

[ANN] Maven Checkstyle Plugin 2.5 released

2004-10-11 Thread vmassol
The maven team is pleased to announce the Maven Checkstyle Plugin 2.5 release! http://maven.apache.org/reference/plugins/checkstyle/ Changes in this version include: New Features: o Added new maven.checkstyle.suppressions.fileproperty. o Added generation of a Checkstyle RSS feed. Fixe

Using and classLoaders

2004-10-11 Thread Serge Huber
Hi all, I'm having some trouble using the Jelly define tags. Basically what I'm trying to do is define a jellyBean tag to use the Jasper compiler on a Tomcat version of my choice. So far I have tried something along the lines of :

Re: Current best practices for automating deployment to Weblogic 8?

2004-10-11 Thread Siegfried Goeschl
Hi Ryan, since I'm not a weblogic expert I have a question - would a remote deploy work if the application is already deployed?! Thanks in advance Siegfried Goeschl Ryan, Scott wrote: One thing to note is that this will not by default support remote deployment. You need to either FTP the files t

RE: Current best practices for automating deployment to Weblogic 8?

2004-10-11 Thread Ryan, Scott
One thing to note is that this will not by default support remote deployment. You need to either FTP the files to the source directory for the server or use a shared directory structure. The remote deploy will remotely deploy the EAR or WAR but only if the code is already accessible by the remote

RE: Specify directory for resources in ear

2004-10-11 Thread Oren Berenson
Yes, it is as expected like that. Thank you very much. Oren -Original Message- From: jeff mutonho [mailto:[EMAIL PROTECTED] Sent: 11 October 2004 13:46 To: Maven Users List Subject: Re: Specify directory for resources in ear Hi > maven.ear.appxml=${basedir}/META-INF Isn't that supp

Re: Specify directory for resources in ear

2004-10-11 Thread jeff mutonho
Hi > maven.ear.appxml=${basedir}/META-INF Isn't that suppose to be maven.ear.appxml=${basedir}/META-INF/application.xml ? I also specify **/META-INF/** under the "includes" in my EAR subproject's project.xml jeff mutonho --- Oren Berenson <[EMAIL PROTECTED]> wrote: > I want the applicatio

Re: Dependent jars in distribution zip file

2004-10-11 Thread Atluri Satish
The solution is written all over the place (Maven User Guide). Copying Dependent Jars bye Satish On Mon, 20 Sep 2004 16:25:26 +0530, Atluri Satish <[EMAIL PROTECTED]> wrote: > Hi > > I want to include dependent jar (Specified

Specify directory for resources in ear

2004-10-11 Thread Oren Berenson
I want the application.xml to be copied into /META-INF in the ear file. I set the properties as follow: maven.ear.appxml=${basedir}/META-INF maven.ear.src=${basedir}/META-INF maven.ear.resources=${basedir}/META-INF The application.xml is being picked up but it is inserted into the ear

RE: [SPAM] - RE: No goal [ejb:install] - Found word(s) list error in the Text body.

2004-10-11 Thread Oren Berenson
Thanks for that. It is now working fine. Oren -Original Message- From: Stéphane Nicoll [mailto:[EMAIL PROTECTED] Sent: 11 October 2004 11:07 To: Maven Users List Subject: RE: [SPAM] - RE: No goal [ejb:install] - Found word(s) list error in the Text body. Well, there's a pregoal whi

RE: [SPAM] - RE: No goal [ejb:install] - Found word(s) list error in the Text body.

2004-10-11 Thread Stéphane Nicoll
Well, there's a pregoal which will create the directory target\classes just before compiling (it's called java:prepare-filesystem). If you clean the target directory just before launching the compilation, the java:compile goal will obiously fail. I suggest the following as a replacement Cal

RE: No goal [ejb:install]

2004-10-11 Thread Oren Berenson
This is my maven.xml: !! Clean Calling ejb:install I get the following error: “D:\TestEJB\target\classes" does not exist or is not a directory It looks like the folder\classes have to exists for it to work. Is it cor

Re: Current best practices for automating deployment to Weblogic 8?

2004-10-11 Thread Pascal Thivent
Hi, there is a weblogic plugin at http://sourceforge.net/projects/maven-plugins/. It seems to be a wrapper around Weblogic deployment tool and ant tasks. -- Pascal On Mon, 11 Oct 2004 08:40:06 +0200, Thomas Recloux <[EMAIL PROTECTED]> wrote: > > I am wanting to automate deployment of our WARs /

RE: No goal [ejb:install]

2004-10-11 Thread Oren Berenson
Maven reported it installed. I installed it manually and then got different error regarding classes that don’t exists in the target folder. It worked only after running jar:install (or any command that compile). I expected ejb:install to compile classes before building jar. Is it not the case?