RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Ext-Mike.Hogan
Thanks Luke - that makes sense. > -Original Message- > From: ext Luke Taylor [mailto:[EMAIL PROTECTED] > Sent: 02 July, 2003 03:05 > To: Maven Users List > Subject: Re: "Unsatisfied dependencies" for reactor > dependencies in Beta > 9 > > > [EMAIL PROTECTED] wrote: > > >>>This works fo

Re: struts 1.1 artifacts now on ibiblio

2003-07-01 Thread tek1
Is there a sample of how to specify a reference to the various Struts .tld files in the project.xml file (to include in the resulting .war)? Thank you. At 12:57 03/07/02 +1000, you wrote: Struts 1.1 jar and the tlds are available. -- dIon Gillard, Multitask Consulting Blog: http://blogs.c

struts 1.1 artifacts now on ibiblio

2003-07-01 Thread dion
Struts 1.1 jar and the tlds are available. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Work: http://www.multitask.com.au

Re: Problem with changelog, Maven 1.0-beta-9

2003-07-01 Thread dion
Maven doesn't need that tag to execute other stuff. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Work: http://www.multitask.com.au "Dave Ford" <[EMAIL PROTECTED]> wrote on 01/07/2003 06:00:24 AM: > > This line is a give away: > > Caused by: java.la

Re: AW: jelly work with a list

2003-07-01 Thread dion
You could trim the strings after you get them, e.g. ${directory.trim()} -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Work: http://www.multitask.com.au [EMAIL PROTECTED] wrote on 02/07/2003 01:46:14 AM: > Thank you, its work fine > > But I must omi

Re: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Luke Taylor
[EMAIL PROTECTED] wrote: This works for beta 8 but not beta 9. What ya reckon? It looks like the dependency problem is between your "toplevel" project code and one of the subprojects ("base"). Since the reactor works out dependencies between the subprojects it's being run on I don't think it

Re: build maven

2003-07-01 Thread Ben Walding
While this may sound like a good idea, consider that the repository is currently 325M and contains a lot of stuff that you will never use. It would only be of real use if you were going offline for a long period of time and might need a whole lot of odd versions. Moretti, Luciano (MED) wrote:

Re: Javadoc plugin links property

2003-07-01 Thread Tim Pizey
On Tuesday 01 July 2003 3:19 pm, Martin Skopp wrote: > On Tue, 2003-07-01 at 18:10, Tim Pizey wrote: > > > does the console say > > > > > > Linking with API information from ... > > > > Yes, then it says: > > /usr/local/packages/dist/test/src/org/paneris/cbitlog/model/CategoryTable > >.java:29: war

RE: build maven

2003-07-01 Thread Moretti, Luciano (MED)
David- I don't know of it, and can't find it in my list of goals, but I am a Newbie... If you're under linux/unix I'd probably use wget to handle that. wget is really well designed to get recursive online filesystems and copy them to the local filesystem. after a little experimenting on our loca

RE: build maven

2003-07-01 Thread David Liles
I was under the impression that there was a generic call that could be made that basically downloads all of the available jars and places them in the repository strucuture. -Original Message- From: Moretti, Luciano (MED) [mailto:[EMAIL PROTECTED] Sent: Tue 7/1/2

RE: build maven

2003-07-01 Thread Moretti, Luciano (MED)
Dave- Maven will automatically generate the repository on the 1st run. There is no specific step needed to build a local repository- it will fetch the needed jars off the web when they are called for. Just create your project.properties file, make sure that you have the proxy configuration stuff

build maven

2003-07-01 Thread David Liles
I just downloaded and installed maven 1.0 b9. What is the syntax I need to use to begin the process to have maven generate all of the repository jar files?

maven-1.0-beta9 and ant-1.5.3? [RESOLVED]

2003-07-01 Thread tek1
Sorry for posting too soon. After digging a little more, I discovered references to the old Ant version in: MAVEN_HOME/bin/classworlds.conf MAVEN_HOME/bin/forehead.conf Updating the references to ant-1.5.3.jar and ant-optional-1.5.3.jar fixed it. Thanks again. --

maven-1.0-beta9 and ant-1.5.3?

2003-07-01 Thread tek1
Is it possible to use ant-1.5.3 with maven-1.0-beta9? I removed: MAVEN_HOME/lib/ant-1.5.1.jar MAVEN_HOME/lib/ant-optional-1.5.1.jar and replaced it with version 1.5.3 files. However, when I try to run Maven, I'm getting the below exception: java.net.MalformedURLException: unknow

RE: How does maven set the classpath?

2003-07-01 Thread Moretti, Luciano (MED)
No, for some reason they chose to separate the source & test directories. File structure- util |-test | |-com | | |-src |-com ... So I have src/ & test/ in my project.xml file. Thanks, Luciano Moretti -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTE

Re: jelly work with a list

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 10:25, [EMAIL PROTECTED] wrote: > Hi > > I define a property : > my.list.directories=${dir.one}, ${dir.two} > > And I try to iterate in this list so I do : > > > > > But I do only one iteration and the var equals : "${dir.one}, ${dir.two}" > with the values of ${dir

RE: How does maven set the classpath?

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 10:22, Moretti, Luciano (MED) wrote: > Ok, if I'm understanding correctly the following will copy all files > with the extension .properties from the to > $(basedir)/target/test-classes/ > > > > > > **/*Test.java > > > > > > >

Re: AW: jelly work with a list

2003-07-01 Thread Nicolas . CHALUMEAU
Thank you, its work fine But I must omit the space : my.list.directories=${dir.one},${dir.two} I will try util:replace to do this. Now I have something that transform a directory structure in an other with a properties config. Nicolas, >Hi Nicolas, > >I'm not a perfect jelly hacker but try thi

Re: Instiating a Project object ( was Re: Executing Maven throughJava Webstart)

2003-07-01 Thread Paul Libbrecht
Jason van Zyl wrote: Jason van Zyl wrote: Jason van Zyl wrote: import org.apache.maven.MavenUtils; File f = new File( "project.xml" ); Project p = MavenUtils.getProject( f ); It works perfectly fine inside Maven. You also have to define what you mean "inside Maven". Clarity is your only hope of g

Re: Javadoc plugin links property

2003-07-01 Thread Martin Skopp
On Tue, 2003-07-01 at 18:10, Tim Pizey wrote: > > does the console say > > > > Linking with API information from ... > Yes, then it says: > /usr/local/packages/dist/test/src/org/paneris/cbitlog/model/CategoryTable.java:29: > warning - Tag @see: reference not found: org.melati.poem.prepro.TableDef

Re: Javadoc plugin links property

2003-07-01 Thread Tim Pizey
Martin, Thanks a lot for your reply. On Tuesday 01 July 2003 8:16 am, Martin Skopp wrote: > On Mon, 2003-06-30 at 20:48, Tim Pizey wrote: > > I cannot persuade my cvs snapshot version of Maven > > (1.0-BETA-10-SNAPSHOT) to pass a links argument to javadoc. > > > > I have > > maven.javadoc.sourc

AW: jelly work with a list

2003-07-01 Thread Rademacher Tobias
Hi Nicolas, I'm not a perfect jelly hacker but try this. ${my.list.directories} ... Hopt this helps! Toby > > Hi > > I define a property : > my.list.directories=${dir.one}, ${dir.two} > > And I try to iterate in this list so I do : > > > > > But I do only one it

jelly work with a list

2003-07-01 Thread Nicolas . CHALUMEAU
Hi I define a property : my.list.directories=${dir.one}, ${dir.two} And I try to iterate in this list so I do : But I do only one iteration and the var equals : "${dir.one}, ${dir.two}" with the values of ${dir.one} and ${dir.two}. The list is not separate. Does list of properties are e

RE: How does maven set the classpath?

2003-07-01 Thread Moretti, Luciano (MED)
Ok, if I'm understanding correctly the following will copy all files with the extension .properties from the to $(basedir)/target/test-classes/ **/*Test.java $(basedir)/test/com/ge/medit/util/resources **/*.properties

Re: Instiating a Project object ( was Re: Executing Maven throughJava Webstart)

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 09:12, Paul Libbrecht wrote: > Paul Libbrecht wrote: > > Jason van Zyl wrote: > >> import org.apache.maven.MavenUtils; > >> > >> File f = new File( "project.xml" ); > >> Project p = MavenUtils.getProject( f ); > >> > > > > > > Well... doesn't sound perfect... > > > > -> run

RE: How does maven set the class path?

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 09:15, Moretti, Luciano (MED) wrote: > Thanks for the reply- but I have a few questions- > > 1) $(basedir) is the variable name for the directory from which maven > was invoked right? No, it is the base directory for the project currently being worked on. > 2) can I point t

Re: Instiating a Project object ( was Re: Executing Maven throughJava Webstart)

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 08:40, Paul Libbrecht wrote: > Jason van Zyl wrote: > >>To make that thing short, allow me a quick question: how can I > >>instantiate a maven Project object ? Oh, and should I switch to the dev > >>list for that ? (just fearing). > > > > > > import org.apache.maven.MavenU

Maven and Perforce

2003-07-01 Thread Marc Gemis
How do I make the (optional) ant task 'p4sync' work under Maven 1.0 beta 9? This task requires the oro library. For ant I have to drop this jar-file into the lib directory. What is the corresponding place under maven ? thanks in advance, Marc

AW: AW: Can I use yDoc with Maven?

2003-07-01 Thread Rademacher Tobias
Hi Jason, > I will add as a prerequisite for 1.0-final a method to > retrieve plugins > (or any artifact, easily from the repo) so we don't have to > include them > in Maven. This would be cool as over time you and the community have to maintain to much projects which leads to similar problems

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Ext-Mike.Hogan
> > This works for beta 8 but not beta 9. What ya reckon? > > This is when we switched the default dependency resolver from the > commons-graph one to the werkz one so I'll take a peek later > when I get > a moment. I have to run off right now. No problem. I changed the small example I posted

Re: AW: Can I use yDoc with Maven?

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 07:44, Rademacher Tobias wrote: > > I just wanted to use yDoc with maven. Is there any plugin available..? > > or any guidence to the plugin? > > We have written a plugin. Any interest to contribute to to maven? I will add as a prerequisite for 1.0-final a method to retrieve

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 04:54, [EMAIL PROTECTED] wrote: > Jason, > > I extracted my problem out into the smallest example possible. Its attached. If > you extract it into a dir and invoke maven, it should first jar:install base, the > jar:install toplevel. > > This works for beta 8 but not beta

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Jason van Zyl
On Tue, 2003-07-01 at 04:07, [EMAIL PROTECTED] wrote: > Don't get it Jason. Are you saying all dependencies should be specified as follows > in beta 9: > > > junit > junit > 3.8.1 > > > I tried this for one of the reactor-generated-dependencies but it didn't work. > > Is there a

Re: Problem with changelog, Maven 1.0-beta-9

2003-07-01 Thread Dave Ford
> This line is a give away: > Caused by: java.lang.IllegalArgumentException: > repository connection string contains less than six tokens Why does the documentation for the connection tag say Optional? Dave Ford Smart Soft - The Developer Training Company http://www.smart-soft.com - Origina

Re: Instiating a Project object ( was Re: Executing Maven throughJava Webstart)

2003-07-01 Thread Paul Libbrecht
Paul Libbrecht wrote: Jason van Zyl wrote: import org.apache.maven.MavenUtils; File f = new File( "project.xml" ); Project p = MavenUtils.getProject( f ); Well... doesn't sound perfect... -> runing this as a test gives me an out-of-memory error, it looks like it's not a good idea to invoke Mav

RE: How does maven set the class path?

2003-07-01 Thread Moretti, Luciano (MED)
Thanks for the reply- but I have a few questions- 1) $(basedir) is the variable name for the directory from which maven was invoked right? 2) can I point to the originals, or should I still copy them over into the target/classes hierarchy. 3) I still don't know how to get the classpath that Maven

Re: AW: Instiating a Project object ( was Re: Executing Maven through Java Webstart)

2003-07-01 Thread Paul Libbrecht
On Mardi, juil 1, 2003, at 14:49 Europe/Paris, Rademacher Tobias wrote: -> what interests me is to have the dependencies... and what I get in maven.xml, says true whereas the project has an amount of dependencies. Am I following the wrong route ? Didn't ${pom.artifacts} work

AW: Instiating a Project object ( was Re: Executing Maven through Java Webstart)

2003-07-01 Thread Rademacher Tobias
> -> what interests me is to have the dependencies... and what I get in > maven.xml, > >says true whereas the project has an amount of dependencies. > > Am I following the wrong route ? Didn't ${pom.artifacts} work Bye Toby --

Re: Instiating a Project object ( was Re: Executing Maven throughJava Webstart)

2003-07-01 Thread Paul Libbrecht
Jason van Zyl wrote: To make that thing short, allow me a quick question: how can I instantiate a maven Project object ? Oh, and should I switch to the dev list for that ? (just fearing). import org.apache.maven.MavenUtils; File f = new File( "project.xml" ); Project p = MavenUtils.getProject(

AW: Can I use yDoc with Maven?

2003-07-01 Thread Rademacher Tobias
Please have a look at http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-535 It works on WindowsNT and on Solaris (so I guess on linux-to). We used JDK 1.4 (!!) for test as it supports java.awt.headless mode. For JDK 1.3/1.2 you need a running X-Server. Toby > -Ursprüngliche Nachric

[war] use jsp / conf file in subproject for the war

2003-07-01 Thread Nicolas . CHALUMEAU
Hi I have a project with 2 subprojets. This 2 subprojects specialize some extra functionalities of the base webapp In the project I have some jsp page, configuration files and classes that I want to include in my subprojects war. Is maven war goal allow to use the base project war process for

RE: Can I use yDoc with Maven?

2003-07-01 Thread S. Radhakrishnan
But, will it work with Linux also.. I have tried the with the build-sample.xml file downloaded from yDoc site in Linux. It says "Missing Resource: class2svg.jar not found" RK -Original Message- From: Rademacher Tobias [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 5:15 PM To: 'Ma

RE: Can I use yDoc with Maven?

2003-07-01 Thread S. Radhakrishnan
yup.. sure. RK. -Original Message- From: Rademacher Tobias [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 5:15 PM To: 'Maven Users List'; '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: AW: Can I use yDoc with Maven? > I just wanted to use yDoc with maven. Is there any plug

AW: Can I use yDoc with Maven?

2003-07-01 Thread Rademacher Tobias
> I just wanted to use yDoc with maven. Is there any plugin available..? > or any guidence to the plugin? We have written a plugin. Any interest to contribute to to maven? Bye Toby - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Can I use yDoc with Maven?

2003-07-01 Thread S. Radhakrishnan
Hi everybody, I just wanted to use yDoc with maven. Is there any plugin available..? or any guidence to the plugin? Regards, RK. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Ext-Mike.Hogan
Here is the attachment. > -Original Message- > From: ext [mailto:[EMAIL PROTECTED] > Sent: 01 July, 2003 11:55 > To: [EMAIL PROTECTED] > Subject: RE: "Unsatisfied dependencies" for reactor > dependencies in Beta > 9 > > > Jason, > > I extracted my problem out into the smallest example

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Ext-Mike.Hogan
Jason, I extracted my problem out into the smallest example possible. Its attached. If you extract it into a dir and invoke maven, it should first jar:install base, the jar:install toplevel. This works for beta 8 but not beta 9. What ya reckon? Thanks, Mike. > -Original Message- >

Re: Javadoc plugin links property

2003-07-01 Thread Martin Skopp
On Mon, 2003-06-30 at 20:48, Tim Pizey wrote: > I cannot persuade my cvs snapshot version of Maven > (1.0-BETA-10-SNAPSHOT) to pass a links argument to javadoc. > > I have > maven.javadoc.source=1.4 > I have tried > maven.javadoc.link=http://melati.org/javadoc/ > and > maven.javadoc.links=http:

RE: "Unsatisfied dependencies" for reactor dependencies in Beta 9

2003-07-01 Thread Ext-Mike.Hogan
Don't get it Jason. Are you saying all dependencies should be specified as follows in beta 9: junit junit 3.8.1 I tried this for one of the reactor-generated-dependencies but it didn't work. Is there a real-life deployment of Maven that uses reactor-generated-dependencies that I