RE: Name of generated files

2003-12-15 Thread Stéphane Philippart
Thanks for your responses, I'll try the solution of Tim even it's not goot to not have version number in the jar file name ! ;) -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTECTED] Sent: vendredi 12 décembre 2003 19:25 To: Maven Users List Subject: Re: Name of generated files

RE: Failed to download

2003-12-15 Thread Jörg Schaible
Hi Guillaume your project.xml defines dependencies to other jars and Maven is trying to download them. Butit seems that you are not online or have no direct internet access. If you're behind a proxy, have a look into Maven's User Guide to set the necessary properties in your build.properties fi

ejb:install problem

2003-12-15 Thread Stéphane Philippart
Hi all, I have a problem when I try to deploy a 'custom' ejb with ejb:install goal. By custom I mean an ejb with a given name, to do this I put the properties : maven.ejb.final.name=CustomEjb and maven.final.name=CustomEjb In the target directory the right ejb-jar is generated, ie CustomEjb

pom:deploy / war:deploy - won't deploy?

2003-12-15 Thread Neil Blue
Hello, I have a project where I would like to deploy the pom and the war. When I ran maven pom:deploy or maven war:deploy they both said that no remote repository was set. This seemed strange as the site and jar deploy both work. So I looked at the plugin.jelly files for these plugins and saw th

Re: Building J2EE project

2003-12-15 Thread __matthewHawthorne
I would consider checking in a static application.xml file. I may be wrong, but these types of customizations just seem to wacky to fit into the Maven system. [EMAIL PROTECTED] wrote: Thanks for the many helps offered to me regarding how to build a J2EE project. However, can someone also tell

dependencies and native code ??

2003-12-15 Thread Edmund Urbani
Hi all! Does anyone know how to make maven retrieve the correct jar for the platform it is running on? I am currently trying define the dependency to Sun's JAI in my project.xml, and I'd like to put the jars into my remote repository - instead of just having maven show the URL, where it can be

error in building site

2003-12-15 Thread Deepak Sable
HI , I am having problem in building the site .i type command maven site:generate from the base directory The last message that i get is as BUILD FAILED null:485:46: null:262:43: java.lang.OutOfMemoryError Total time: 4 minutes 4 seconds Urgent help required Thanks in advance. deepak

Re: Clover plugin won't recognize my licensed clover jar

2003-12-15 Thread Chad Woolley
Yes, it is the latest version. Vincent Massol wrote: Hi Chad, Are you using version 1.4 of the Clover plugin? Thanks -Vincent - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Réf. : error in building site

2003-12-15 Thread Nicolas . CHALUMEAU
Do a : set MAVEN_OPTS=-Xmx512m To provide more memory Nicolas, "Deepak Sable" <[EMAIL PROTECTED]> 15/12/2003 17:06 Veuillez répondre à "Maven Users List" Pour : "Maven Users List" <[EMAIL PROTECTED]> cc : Objet : error in building site HI , I am having problem

Re: error in building site

2003-12-15 Thread Brice Copy
Hi, I am having problem in building the site .i type command maven site:generate from the base directory The last message that i get is as BUILD FAILED null:485:46: null:262:43: java.lang.OutOfMemoryError Total time: 4 minutes 4 seconds Urgent help required You might want to take a look at t

RE: Tasklist / vdoclet report exception

2003-12-15 Thread Steve Garcia
I found out what the problem was. I was somehow using a bad version of the velocity-1.4-dev.jar artifact. I found it strange that some of my Maven projects worked just fine and others didn't. I've been managing different local artifact repositories so I decided to swap out one for another and tr

RE: deploy / war:deploy - won't deploy?

2003-12-15 Thread Michal Maczka
Which protocol are you using for deploying? Michal > -Original Message- > From: Neil Blue [mailto:[EMAIL PROTECTED] > Sent: Monday, December 15, 2003 10:30 AM > To: Maven Users List > Subject: pom:deploy / war:deploy - won't deploy? > > > Hello, > I have a project where I would like to

Jar which includes other

2003-12-15 Thread Serge Corbucci
I have numerous EJBs, with each EJB named "Foo" associated to the generated "Foo-client-fooversion.jar" artifact (thanks to ejb:client). I had to merge these client jar into only one 'client-all" jar. I did the following : 1) create a new POM file referencing all the jars you need to merge as dep

A cycle has been detected?

2003-12-15 Thread Brian Burridge
I have a subproject that is dependent on the parent project, and the parent project is dependent on the sub project. This doesn't cause a problem normally, because there are jars of both, and they both just use each others jars. However, when running the following goal from the main project I get t

Re: help in maven ...

2003-12-15 Thread dion
Set MAVEN_OPTS=-Xmx512m and try again. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Deepak Sable" <[EMAIL PROTECTED]> wrote on 16/12/2003 03:36:51 AM: > > > hi dion, > > am working on maven and when i type maven site:generate i get the following

Re: A cycle has been detected?

2003-12-15 Thread Loïc Minier
Brian Burridge <[EMAIL PROTECTED]> - Mon, Dec 15, 2003: > I have a subproject that is dependent on the parent project, and the > parent project is dependent on the sub project. This doesn't cause a > problem normally, because there are jars of both, and they both just use > each others jars. Howev

Problem with jar:deploy-snapshot

2003-12-15 Thread Yoway . Buorn
After having already deployed a snapshot, when I run jar:deploy-snapshot again, I get the following error: [echo] Executing cd /usr/apache/htdocs/maven/distributed/jars; chmod g+w distributed-20031215.231511.jar; chgrp staff distributed-20031215.231511.jar; ln -sf distributed-2003

Deploying a War File to0 a remote server (repository?)

2003-12-15 Thread Hahne, Ronald
Has any one successfully used mave to deploy a war file to a remote server? I have been able to deploy a jar to a remote location, But not a war. When I use war:deploy with the maven.xml and build.properties set up it goes through all the motions and evens says that it was copied via ssh but it doe

RE: Problem with jar:deploy-snapshot

2003-12-15 Thread Yoway . Buorn
Oh, there's one more problem I encountered with jar:deploy-snapshot. Once the snapshot has been deployed (which I can do by deleting the last symbolic link), I can't seem to downloaded the JAR. Here's the error message: Attempting to download djdan-SNAPSHOT.jar. Error retrieving artifact from [h

RE: Problem with jar:deploy-snapshot

2003-12-15 Thread Yoway . Buorn
I checked the permissions on the directories created and it turns out that all the directories are set to drwxrwx---. So I decided to just download the JAR from a web browser, and sure enough Apache wouldn't let me download it. So I can solve this problem by manually changing perms on the dire

RE: Problem with jar:deploy-snapshot

2003-12-15 Thread dion
jar:deploy does this: cd @deployDirectory@; chmod g+w ${maven.jar.to.deploy}; chgrp ${maven.remote.group} ${maven.jar.to.deploy}; ln -sf ${maven.jar.to.deploy} ${pom.artifactId}-SNAPSHOT.jar; echo ${snapshotVersion} > ${pom.artifactId}-snapshot-version I don't see anywhere that does a chmod a+rx

Re: JCoverage plugin problem

2003-12-15 Thread Scott Brickner
maven-jcoverage-plugin-1.0.1 (seems to happen with 1.0, too) On Wed, 2003-12-03 at 15:04, Emmanuel Venisse wrote: > What's you jcoverage plugin version? > > Emmanuel > > - Original Message - > From: "Scott Brickner" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, December