RE: Changelog error with CruiseControl

2004-10-15 Thread James . Shute
It may have been fixed by the fix for this one http://jira.public.thoughtworks.org/browse/CC-46? Though I raised that for when the path to maven.bat contains a space, rather than space afterwards -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: 15 October 2004 00:23

Aspectj plugin missing ajdoc goal

2004-10-15 Thread stéphane bouchet
Hello, I am using the aspectJ plugin with success but it seems that the ajdoc goal was removed in the last version (3.2) . it was present in the first version of the plugin. It could be very usefull to generate the documentation in the same time than the javadoc. Is there any plan about this

Maven generated EAR :java.lang.NoClassDefFoundError: com/ibm/ejs/container/EJSWrapperBase

2004-10-15 Thread jmutonho
I'm getting one of those , when I try to install the Maven generated ear on my appserver.If I generate the ear using WSAD i do not get the same error and the application runs smoothly. I've compared the Class-Path: entry in my ejb projects MANIFEST.MF files for the maven generated ear and

repository and deployments

2004-10-15 Thread Brett Porter
Hi all, I've made the following changes for maven-plugins at sourceforge: - moved http://maven-plugins.sf.net/maven/maven-plugins to /repository/maven-plugins (old one is symlinked) - copied http://maven-plugins.sf.net/maven/findbugs to /repository/findbugs (I'm assuming this is the distribution

Re: reactor default goals?

2004-10-15 Thread Brett Porter
funnily enough, goals= will work I think. default goes into maven.xml for now. On Fri, 15 Oct 2004 05:32:58 -0700, Ben Anderson [EMAIL PROTECTED] wrote: Hi, In my subprojects I've set the default goal in both project.xml and maven.xml project default=war:war which works fine when I run

Re: reactor default goals?

2004-10-15 Thread jmutonho
In my subprojects I've set the default goal in both project.xml and maven.xml project default=war:war which works fine when I run maven from that directory. So, my first question is - where should the default be declared - project.xml or maven.xml? In your maven.xml Now the more

Re: Cannot get Maven to build from a cvs tag

2004-10-15 Thread Brett Porter
prepare is intended to be run to do the tagging, so you don't need to do that first. I've never tried running them together. Try splitting it into two commands with perform second. Cheers, Brett On Thu, 14 Oct 2004 13:24:07 -0700 (PDT), Pat Nolan [EMAIL PROTECTED] wrote: I am unable to get

Re: MavenUtil.getProject()

2004-10-15 Thread Brett Porter
That call is going to rely heavily on the corect construction of a jelly context so that it can attempt to evaluate values. Maybe some values are not being substituted? What are the dependencies in the project.xml? It seems one of them is malformed. The differences between 1.3 and 1.4 would just

Re: Problems downloading dependencies

2004-10-15 Thread Brett Porter
This only happens on your own repository, right? External ones seem to download ok? Is it some limitation on your internal server that causes the error? Googling the exact error message: No buffer space available (maximum connections reached?): recv failed indicates there are some problems with

Dependency problens when generating war file

2004-10-15 Thread Roberto Castro
Hi, all. I've been facing two problens generating a war file. Maven inserts jar files into war files with version number in its name. To avoid this, I created a goal in maven.xml to rename jar file, like this: move

Re: Cannot get Maven to build from a cvs tag

2004-10-15 Thread Pat Nolan
Brett, thanks for the response. The only problem with what you suggest is that I need to release from a branch (other than the main HEAD branch). I'm assuming the prepare goal will tag HEAD with the tag name I specify. This won't work for my situation. I'm trying to do a release from a branch. Any

Re: Dependency problens when generating war file

2004-10-15 Thread Brett Porter
Put anything you want in WEB-INF in src/webapp/WEB-INF (assuming a default maven.war.src). tlds should probably be used from inside a JAR in a servlet 2.3 container - search the archives for tld :) As far as renaming the jars: why? They work just the same with the versions, and make it clearer

Re: Cannot get Maven to build from a cvs tag

2004-10-15 Thread Brett Porter
prepare tags whatever you currently have checked out, which should be the branch if that is what you are releasing. On Fri, 15 Oct 2004 06:09:05 -0700 (PDT), Pat Nolan [EMAIL PROTECTED] wrote: Brett, thanks for the response. The only problem with what you suggest is that I need to release from

RE: Dependency problens when generating war file

2004-10-15 Thread Maczka Michal
-Original Message- From: Roberto Castro [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 3:03 PM To: [EMAIL PROTECTED] Subject: Dependency problens when generating war file Hi, all. I've been facing two problens generating a war file. Maven inserts jar files into war

RE: JSLTagLibrary

2004-10-15 Thread STRAYER, JON \(SBCSI\)
project xmlns:ant=jelly:ant xmlns:archive=deploy:archive xmlns:util=deploy:util xmlns:define=jelly:define xmlns:deploy=deploy xmlns:maven=jelly:maven xmlns:j=jelly:core xmlns:i=jelly:interaction xmlns:u=jelly:util

RE: Maven generated EAR :java.lang.NoClassDefFoundError: com/ibm/ejs/container/EJSWrapperBase

2004-10-15 Thread Lageson,Thomas M
The com/ibm/ejs/* classes are the ibm generated classes that you get when you generate the ejb classes from within WSAD. Unless you actually store those generated files within your scm they won't be available. Maven doesn't know how to generate them. I ended up storing the generated ejb files in

MPEAR-26 (WAS Re: Dependency problens when generating war file)

2004-10-15 Thread Felipe Leme
Brett, On Fri, 15 Oct 2004 23:07:30 +1000, Brett Porter [EMAIL PROTECTED] wrote: As far as renaming the jars: why? They work just the same with the versions, and make it clearer what is bundled. I also don't see why the renaming matters in a WAR, but I think it makes sense in a EAR. In fact,

Re: ant:style failure

2004-10-15 Thread Brett Porter
using systemScope: see the FAQ on the maven site. On Fri, 15 Oct 2004 06:47:18 -0700, Ben Anderson [EMAIL PROTECTED] wrote: Hi, I'm trying to use the ant:style tag but am getting this error: BUILD FAILED File.. c:\java2\struts\struts-faces\core-library\maven.xml Element... ant:style

RE: Maven generated EAR :java.lang.NoClassDefFoundError: com/ibm/ejs/container/EJSWrapperBase

2004-10-15 Thread jmutonho
You could also look at the WebSphere plugin to see if that will work for you. I'm using that and it does generate the deploy code correctly, with all the com/ibm/ejs/* classes.I've noticed that com/ibm/ejs/container/EJSWrapperBase class is located in the ibm ejbcontainter.jar.The ejb jars

Re: MPEAR-26 (WAS Re: Dependency problens when generating war file)

2004-10-15 Thread Brett Porter
makes sense On Fri, 15 Oct 2004 10:34:09 -0300, Felipe Leme [EMAIL PROTECTED] wrote: Brett, On Fri, 15 Oct 2004 23:07:30 +1000, Brett Porter [EMAIL PROTECTED] wrote: As far as renaming the jars: why? They work just the same with the versions, and make it clearer what is bundled. I

Re: distributionDirectory and siteDirectory tags

2004-10-15 Thread Eric Black
Thanks Thomas and Brett, I was omitting the distributionSite tag in project.xml. Once I specified that, it worked fine.

Re: maven jar gives error

2004-10-15 Thread Michael Gaffney
FYI, please make sure you keep the discussion on the list so everyone can benefit and help out. I'm not sure I understand what you are trying to do. Looking at the project file you posted, it seems you are trying to build the maven project itself. Is this correct? If you are trying to build

problem unsubscribing

2004-10-15 Thread Paterline, David L.
Hi, I know it's bad form to post this to the list, but I've tried to unsubscribe using these directions: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] and, it apparently does

RES: Dependency problens when generating war file

2004-10-15 Thread Roberto Castro
Hi, Jeff. I decided not to rename the jar files. It worked correctly with the version number in jar name. The other problem with tld and xml files, I realised, the directories of my web application are not following the correct pattern. Tld's ans xml files are in webapp/config, and not in

How to share and update maven?

2004-10-15 Thread Helck, Christopher
I have a set of projects that will be worked on by multiple developers. How do I make sure everyone is using the same version of maven and its various plugins? What I've done is checked maven into my souce control system and added it to my path. I'm expecting other developers to set their paths

How to do production builds with Maven?

2004-10-15 Thread Helck, Christopher
In my company developers have access to the web and www.ibiblio.org so using Maven is easy. When I hand the software over to our certification team they typically check the software out of source control and build it on a secure machine that does not have access to the web. I would like the

Re: How to do production builds with Maven?

2004-10-15 Thread Jason van Zyl
On Fri, 2004-10-15 at 16:31, Helck, Christopher wrote: How can I do this? I've thought about mirroring www.ibiblio.org/maven on an internal machine and having developers and certification teams use it instead, but this seems like a lot of work. Any ideas? If the certification team is allow to

RE: Aspectj plugin missing ajdoc goal

2004-10-15 Thread Carlos Sanchez
Hi, It was removed because the ajdoc ant task was removed from AspectJ. There're no plans to implement it. If you're interested you can give some ideas or provide a patch. Regards Carlos Sanchez A Coruña, Spain http://www.jroller.com/page/carlossg -Original Message- From: stéphane

Re: problem unsubscribing

2004-10-15 Thread Brett Porter
make sure you mail to that address with the address you subscribed with as the from address. (check the full headers of the message - you'll see the address you got it by) On Fri, 15 Oct 2004 10:58:53 -0400, Paterline, David L. [EMAIL PROTECTED] wrote: Hi, I know it's bad form to post this

Re: How to share and update maven?

2004-10-15 Thread Brett Porter
Hi, 1.0.1 is backwards compatible with 1.0, so you sohuldn't have any problems. Other than that, you need to control which one is run manually by changing MAVEN_HOME before running it. However, we'll always aim to make upgrading versions as seamless as possible. As far as sharing:I just

Re: How to do production builds with Maven?

2004-10-15 Thread Ben Walding
Jason van Zyl wrote: On Fri, 2004-10-15 at 16:31, Helck, Christopher wrote: How can I do this? I've thought about mirroring www.ibiblio.org/maven on an internal machine and having developers and certification teams use it instead, but this seems like a lot of work. Any ideas? If the

[ANN] Maven Dashboard Plugin 1.5 released

2004-10-15 Thread vmassol
The maven team is pleased to announce the Maven Dashboard Plugin 1.5 release! http://maven.apache.org/reference/plugins/dashboard/ Generate a dashboard containing global statistics about other maven reports Changes in this version include: New Features: o Added dashboard report example to