Re: Jar:deploy building incorrect file path with extra : before the a rtifact Id

2004-08-27 Thread Per Abich
Looks like a cvs notation to me. Maybe you have specified upload via CVS? I'd say you have CVSROOT=C:/apachehtdocs/maven/dev/ and the module name echostar-toolkit/poms/echostar-toolkit-1.0.0.0.pom. But I am not experienced enought with maven to tell you how you produced it. Check your

Re: RE: Is there a way to separate maven's repository from my reposit ory?

2004-08-27 Thread Per Abich
If you cannot turn it off, maybe you can clear it with a pre-Goal for the clean goal. The compile would then repopulate it from all known repositories (meaning all repos you have specified). Maybe you should automate the building process and use cruisecontrol so that the repository of the

Re: maven site:generate --OutOf MemoryError

2004-08-27 Thread jeff mutonho
After the OutOfMemoryError I've tried the following on the Linux box which has 512MB of RAM.I set the MAVEN_OPTS=-Xmx512m environment variable in my .bash_profile file.I then run maven site:generate and when it get to the point where it prints the following : xdoc:jelly-transform: [echo]

Re: maven site:generate --OutOf MemoryError

2004-08-27 Thread Shinobu Kawai
Hi jeff, After the OutOfMemoryError I've tried the following on the Linux box which has 512MB of RAM.I set the MAVEN_OPTS=-Xmx512m environment variable in my .bash_profile file.I then run maven site:generate and when it get to the point where it prints the following :

war:deploy

2004-08-27 Thread James . Shute
I've finally got round to moving my build over to using the xxx:deploy goals. This works a treat for jars, but I'm having an issue with wars. The build can produce various different builds of the war, which contain different config settings for the environment it will run in. To distinguish

RE: automated eclipse projects

2004-08-27 Thread Aleksandr Shneyderman
Use Multiproject import plugin. So you would run maven -Dgoal=eclipse multiproject:goal This will create .classpath and .project files Then use mutiproject plugin to import projects in bulk. Here is the link to the plugin: http://eclipse-plugins.2y.net/eclipse/plugin_details.jsp?id=599 Alex.

aspectj multiproject

2004-08-27 Thread thorsten maus
hi there .. running into a problem i cannot see any way out .. short description: setup a multiproject with the following directories common-jar sample-ejb foo-ear the common-jar contains the aspectj (.aj) files in a separated directory as well the foo-ear has dependencies to common-jar and

Re: aspectj multiproject

2004-08-27 Thread thorsten maus
sorry .. i forgot to add the aspect source .. public aspect LoggerAspect { pointcut traceMethods() : execution(* *.*(..)); before() : traceMethods() { Signature sig = thisJoinPointStaticPart.getSignature(); System.out.println(sig.getName()+ reached); } this

RE: parse DTD validation behind a firewall

2004-08-27 Thread thomas woytaszek
Thank-you! Works like a charm. On Thu, 2004-08-26 at 19:00, W. Sean Hennessy wrote: With the use of a catalog.xml and URI/System rewrite you may convert remote references to local ones.. Then you need only a local copy of the appropriate DTD sets.. So given the DTD... !DOCTYPE application

developer activity report with CVS_PROXY

2004-08-27 Thread Dominik Dahlem
Hi all, I'm running into a problem with the developer activity report. I'd like to support an development environment where there may or may not be a cvs-proxy installed to tunnel all cvs commands. When I specify repository connection scm:cvs:pserver:[EMAIL

Re: maven-examples-plugin - cannot find it

2004-08-27 Thread Nathan Coast
the maven example plugin at codeczar is intended to standardise the process of developing and documenting example projects for maven plugins. If this is what you're after, it can be found here: http://www.codeczar.com/products/maven-example-plugin/index.html There wasn't much feedback after the

RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
Hi, Have you checked http://maven.apache.org/reference/plugins/aspectj/ ? If so, I need some debug info: Does it work when not in multiproject? What goal are you calling? Have you added this to foo-ear? dependency groupIdgroupid/groupId

RE: RE: Is there a way to separate maven's repository from my repository?

2004-08-27 Thread Courtney, Craig
I am using CruiseControl but I'm going to go in a different direction. I think I'm going to create a plug-in that validates the dependencies in all POMs as a sort of checkstyle check that will flag the build. Craig -Original Message- From: Per Abich [mailto:[EMAIL PROTECTED] Sent:

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
hi carlos .. nice to hear from you again .. --- Carlos Sanchez [EMAIL PROTECTED] wrote: Hi, Have you checked http://maven.apache.org/reference/plugins/aspectj/ ? yes .. i did so ... for now over three days .. If so, I need some debug info: the debug flag for aspectj is not working

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
well .. i created a new project ... no multiproject .. added dependencies to --- thorsten maus [EMAIL PROTECTED] wrote: hi carlos .. nice to hear from you again .. --- Carlos Sanchez [EMAIL PROTECTED] wrote: Hi, Have you checked

Re: maven-examples-plugin - cannot find it

2004-08-27 Thread Jose Gonzalez Gomez
Well, I was talking about this: http://maven.apache.org/reference/plugins/examples/ I think they aren't the same, are they? Nathan Coast wrote: the maven example plugin at codeczar is intended to standardise the process of developing and documenting example projects for maven plugins.

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
the main problem is that i have to put the activeJ tags inside my foo-ear project.xml file. it looks like the plugin does not validate them other than in the main project file. i created a new project without the multiproject settings .. and dropped a dependency to my former common-jar with the

RE: Jar:deploy building incorrect file path with extra : before t he a rtifact Id

2004-08-27 Thread Ryan, Scott
Thanks for the tip but we do not use CVS. I have checked all my files project.xml, maven.xml, build.properties and project.properties and there are no colons anywhere in those files so it must be getting added by one of the plugins. Any other ideas? The jar:install works fine it is just he

RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
It seems that you're having trouble with setting up a multiproject, not with aspectj itself. It doesn't matter if you use multiproject or not, you have to be able to call aspectj in every project without modifying anything. Check it and send your project.xml files if you want help.

What can I do in xdocs?

2004-08-27 Thread Joel Shellman
What exactly are the capabilities of xdocs? Can I include information from the POM in there somehow? I'm seeing limited information and I'm wondering if that means that that's all it can do. Are the xml files in xdocs dir static only and although transformed, they are not parsed and data

Re: maven-examples-plugin - cannot find it

2004-08-27 Thread Dion Gillard
No. The example plugin is here: http://cvs.apache.org/viewcvs.cgi/maven-plugins/examples/ On Fri, 27 Aug 2004 16:22:51 +0200, Jose Gonzalez Gomez [EMAIL PROTECTED] wrote: Well, I was talking about this: http://maven.apache.org/reference/plugins/examples/ I think they

RE: Downloading source / javadocs

2004-08-27 Thread James . Shute
With dist:deploy-src -Original Message- From: Arnaud HERITIER [mailto:[EMAIL PROTECTED] Sent: 27 August 2004 17:57 To: 'Maven Users List' Subject: RE: Downloading source / javadocs Be careful James, In the next javadoc plugin release (currently in CVS) the type for the javadoc

Re: Downloading source / javadocs

2004-08-27 Thread Dion Gillard
On Fri, 27 Aug 2004 19:12:13 +0200, Arnaud HERITIER [EMAIL PROTECTED] wrote: The dist plugin doesn't use the standard deployment mechanism: artifact:deploy artifact=${maven.dist.dir}/${maven.final.name}-src.tar.gz type=distribution-src-targz project=${pom}

RE: Downloading source / javadocs

2004-08-27 Thread Arnaud HERITIER
Huh? I thought the artifact plugin WAS the standard deployment mechanism. Yes, it is the standard deployment mechanism but with a particular typeHandler, the maven repository structure isn't respected (${groupId}/${type}s/${artifactId}-${release}.${type}). In this case maven can't

RE: aspectj multiproject

2004-08-27 Thread thorsten maus
thanks carlos .. you were right .. it was more a problem of understanding the multiproject approach .. the execution of the maven goal reveals the following information: + | Building the foo-ear file | Memory: 2M/3M

Re: Pass classpath to ant

2004-08-27 Thread Maury Jarrell
I'm a little confused myself. You want to use the generated path in an ant ant task, right? I was just trying to demonstrate: 1. How to build a path including the pom dependencies and 2. How to echo that path should you want to do so One note: My choice of the path id as base.path was

Creating WAR for Websphere

2004-08-27 Thread jeff mutonho
Guys , I'm battling to create a war that can be deployed on a Websphere app server.I've tried playing around with the war plugin , without luck.The problem is mostly of the directory structure of the EAR.Hints? jeff mutonho __ Do You Yahoo!?

RE: aspectj maven.aspectj.source

2004-08-27 Thread Carlos Sanchez
Hi, Thanks for pointing this out, it has just been fixed in CVS. You can download it from http://cvs.apache.org/repository/maven/plugins/maven-aspectj-plugin-3.2-SNAP SHOT.jar Regards Carlos Sanchez A Coruña, Spain Oness Project http://oness.sourceforge.net -Original Message-

Re: Creating WAR for Websphere-correction

2004-08-27 Thread jeff mutonho
The last line was suppose to be The problem is mostly of the directory structure of the WAR.Hints? jeff mutonho jeff mutonho [EMAIL PROTECTED] wrote:Guys , I'm battling to create a war that can be deployed on a Websphere app server.I've tried playing around with the war plugin , without

RE: aspectj multiproject

2004-08-27 Thread Carlos Sanchez
I think you can't weave into a war file. Check aspectj documentation. -Original Message- From: thorsten maus [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 7:29 PM To: Maven Users List Subject: RE: aspectj multiproject thanks carlos .. you were right .. it was more a

Re: RE: Jar:deploy building incorrect file path with extra : before t he a rtifact Id

2004-08-27 Thread Per Abich
If you could post the project.xml (maybe directly to me?) I could take a look. I still think maven interprets something as a cvs-connection string. Per On Fri, 27 Aug 2004 08:31:17 -0600, Ryan, Scott [EMAIL PROTECTED] wrote: Thanks for the tip but we do not use CVS. I have checked all my files

RE: RE: Jar:deploy building incorrect file path with extra : before t he a rtifact Id

2004-08-27 Thread Carlos Sanchez
Hi, You have to configure properly the artifact plugin, check its properties at http://maven.apache.org/reference/plugins/artifact Regards Carlos Sanchez A Coruña, Spain Oness Project http://oness.sourceforge.net -Original Message- From: Per Abich [mailto:[EMAIL PROTECTED]

RE: RE: Jar:deploy building incorrect file path with extra : befo re t he a rtifact Id

2004-08-27 Thread Ryan, Scott
Here is my build.properties file and the project.xml. It is still trying to include the : in the name for some reason after the maven.repo.test.directory and the artifactId. I am running on Windows by the way. Error Message Deploying:

RE: RE: Jar:deploy building incorrect file path with extra : befo re t he a rtifact Id

2004-08-27 Thread Ryan, Scott
Well I found the issue. I am using inheritance and I have left the groupId parameter blank groupId/ in the superclass and then failed to override it in my subclass. I guess when the pom.artifactDirectory was built it placed a : in the placeholder for the empty groupId. Once I actually set a

Re: war:deploy

2004-08-27 Thread Brett Porter
This is the artifact strategy for Maven is for a project to produce one artifact per project. I assume the way you are doing this, you need to re-run maven to build the others? The preferred Maven approach is to create small subprojects (possibly just with a POM and different properties) that

RE: aspectj maven.aspectj.source

2004-08-27 Thread Sonnathi, Venkat
Thank you. -Original Message- From: Carlos Sanchez [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 3:20 PM To: 'Maven Users List' Subject: RE: aspectj maven.aspectj.source Hi, Thanks for pointing this out, it has just been fixed in CVS. You can download it from