about castor on ibiblio

2005-04-06 Thread Nicolas De Loof
Hello, I was going to ask for upload of castor 0.9.6 on ibiblio as I discoverd a strange repository structure for this groupId : http://www.ibiblio.org/maven/castor/ has subdirectories by version, not by artifact type What's about this ? How to make maven download such an artifact ? Nico. This

Re: Continuous Integration + multiproject:site generation

2005-04-06 Thread Laurent PETIT
Patrick Roumanoff wrote: From what I understand, you only need to have one project in cruisecontrol to trigger your multiproject goals. just make sure the modificationset for the multiproject goal is an aggregation of the modificationset for the subprojects. my cruisecontrol maven line looks like

multiproject

2005-04-06 Thread Bahaa Nasrallah
Hi, I have a main project A that depends on subprojects B and C. A needs B and C as jar dependencies to be built so B and C must be compiled and jared and then to compile A. how can i perform that order with multiproject goal? how can i refer to B and C as depndencies in the project.xml of A ?

project dependencies

2005-04-06 Thread Bahaa Nasrallah
Hi, How in Maven we specify that a project depends on another subprojects? Lets say we have a project A that depends on subprojects B and C (as jars). how can we specify that A depends on B and C? how it is done in the dependecies section? Regards, Bahaa

Antwort: multiproject

2005-04-06 Thread Christian . Heine
Hi, this is easy with maven. To do that, you must define a reactor and dependencies in each project descriptor depends on the pom source of the other project source results: A: dependency groupId${pom.groupId}/groupId artifactIdB/artifactId version${pom.currentVersion}/version

Re: multiproject

2005-04-06 Thread Bahaa Nasrallah
Thanks Christian, I have problem, when i run maven i get (Attempting to downlaod A-.jar Error retrieving artifact from [http://www.ibiblio.org/maven/A/jars/A-.jars) A.jar should be created during the build and not before it! do you have any suggestions? Thanks in advance On Apr 6, 2005 12:36

Re: about castor on ibiblio

2005-04-06 Thread Brett Porter
They are in addition to the actual ones under /jars/ - nothing to worry about. - Brett On Apr 6, 2005 6:46 PM, Nicolas De Loof [EMAIL PROTECTED] wrote: Hello, I was going to ask for upload of castor 0.9.6 on ibiblio as I discoverd a strange repository structure for this groupId :

Re: multiproject

2005-04-06 Thread John Taylor
Hi Bahaa - it looks like you haven't defined the version of the jar file that you're dependent on. Regards, John Bahaa Nasrallah wrote: Thanks Christian, I have problem, when i run maven i get (Attempting to downlaod A-.jar Error retrieving artifact from

Re: multiproject

2005-04-06 Thread John Taylor
(or alternatively, that you didn't define a currentVersion) John Taylor wrote: Hi Bahaa - it looks like you haven't defined the version of the jar file that you're dependent on. Regards, John Bahaa Nasrallah wrote: Thanks Christian, I have problem, when i run maven i get (Attempting to downlaod

Re: about castor on ibiblio

2005-04-06 Thread Nicolas De Loof
My project requires castro 0.9.6. How to set dependency to it ? Do I need to ask for upload, even artifact is allready on ibiblio at a strange location ? Brett Porter a écrit : They are in addition to the actual ones under /jars/ - nothing to worry about. - Brett On Apr 6, 2005 6:46 PM, Nicolas

Re: about castor on ibiblio

2005-04-06 Thread Brett Porter
oh, I see. Preferably, you should contact the castor developers and ask them to rearrange it at: http://dist.codehaus.org/castor/ That's where it comes from. You can also file an upload request. If I see them on IRC, I'll try and remember to ask. - Brett On Apr 6, 2005 10:49 PM, Nicolas De Loof

Re: multiproject

2005-04-06 Thread Kenney Westerhof
On Wed, 6 Apr 2005, Bahaa Nasrallah wrote: Looks like you have a dependency on A somewhere. Anyway, building C which depends on B (you probably have A specified there as a dependency) won't work unless B is installed in the local repository. So run maven jar:install instead. Thanks, i have

Re: multiproject

2005-04-06 Thread Nicolas Chalumeau
You need to use SNAPSHOT version to force maven to resolve the build order Nicolas On Apr 6, 2005 3:14 PM, Kenney Westerhof [EMAIL PROTECTED] wrote: On Wed, 6 Apr 2005, Bahaa Nasrallah wrote: Looks like you have a dependency on A somewhere. Anyway, building C which depends on B (you

Re: about castor on ibiblio

2005-04-06 Thread Brett Porter
FYI: I spoke to Ralf on IRC, and as a result I have filed this: http://bugzilla.exolab.org/show_bug.cgi?id=1927 - Brett On Apr 6, 2005 10:55 PM, Brett Porter [EMAIL PROTECTED] wrote: oh, I see. Preferably, you should contact the castor developers and ask them to rearrange it at:

Re: maven and cruisecontrol

2005-04-06 Thread Jon Strayer
Stephen Gray wrote: Hi, I am trying to use maven to kick off cruisecontrol but Im having a problem with my cvs connection. I am using the following in my project.xml scm:cvs:local:ignored:/home/cvs:devbase which works fine when I run maven on its own. Im getting the following error; BUILD

Re: project dependencies

2005-04-06 Thread Alexandre Touret
Hi, I think you could set this dependency in the project descriptor project.xml like this dependencies dependency groupIdthe group/groupId artifactIdthe artifact/artifactId typejar/type version1.0/version /dependency /dependencies Alexandre Bahaa Nasrallah wrote: Hi,

Re: about castor on ibiblio

2005-04-06 Thread Nicolas De Loof
I've voted for this bug... symlinks from /jars may be a simple resolution. Thanks a lot. Brett Porter a écrit : FYI: I spoke to Ralf on IRC, and as a result I have filed this: http://bugzilla.exolab.org/show_bug.cgi?id=1927 - Brett On Apr 6, 2005 10:55 PM, Brett Porter [EMAIL PROTECTED] wrote:

Re: multiproject

2005-04-06 Thread John Taylor
Errm...I'm not sure that's true. As Kenney says, you seem to have a project that depends on A-1.0.jar, which is odd, as I thought you said A depended on BC. Can you clarify the dependencies for us? If, as in your original email, A depends on BC, then what I would have is:

RE: seperate src and test directories

2005-04-06 Thread Durham David R Jr Contr 805 CSPTS/SCE
No, the targetPath is defined as being relative to maven.build.dest (for normal resources) and maven.test.dest (for unit test resources). You shouldn't put your test resources in maven.build.dest as they'll end up in the JAR (or whatever is being built). Yeah, that's a good point. I don't

RE: Generation of javadoc with multiple src directories

2005-04-06 Thread Richard . Batchelor
Hi Fred, It appears to work correctly if you use a preGoal on maven-javadoc-plugin:report goal to set your maven.compile.src.set property. Regards, Richard. -Original Message- From: Frédéric Burlet [mailto:[EMAIL PROTECTED] Sent: 15 March 2005 13:00 To: users@maven.apache.org Subject:

Failure in Jelly Ant tags

2005-04-06 Thread eblack
Hi, Can anyone explain the relationship of Maven to Jelly:Ant tags? I'm using the Jelly Ant tags, and there seems to be a bug in it's implementation of the regexp mapping task, so I thought I would submit a bug report. I went to the Ant tag under the Jelly site and this was the link for issue

Re: maven-ui plugin 0.6 release!

2005-04-06 Thread Peter van de Hoef
Cool. This is a nice tool for Maven plugin development and testing. Minor problem: to get it working on Linux, I had to change line 65 of 'plugin.jelly': from: File runner_base = new File(basedir, \\components\\runner); into: File runner_base = new File(basedir, /components/runner); Otherwise

Re: maven-ui plugin 0.6 release!

2005-04-06 Thread Peter van de Hoef
Did not get the tree-view either :-( The rest is working fine, thanks. Peter van de Hoef wrote: Cool. This is a nice tool for Maven plugin development and testing. Minor problem: to get it working on Linux, I had to change line 65 of 'plugin.jelly': from: File runner_base = new File(basedir,

Generating application.xml and WebSphere specific deployment descriptors

2005-04-06 Thread Louis Burroughs
I have been trying to create an EAR file that has the application.xml (the normal generated file has the correct dependecies, but lacks security info) and the WebSphere specific .xmi files generated for it using the xdoclet plugin. Unfortunately, I can't find much outside of the realm of

RE: Continuous Integration + multiproject:site generation

2005-04-06 Thread Patrick Roumanoff
Thanks for the answer. It is indeed a good solution. Just one think : in your goal above, you don't call the artifact:install goal, so I don't see how your dependent projects can refer to the last good versions of each other ? you are right, the line was a strip-down version of my goal