Re: include tag in maven.xml

2004-05-23 Thread dion_gillard
Hi James, For more information about Barclays Capital, please visit our web site at > http://www.barcap.com. Internet communications are not secure and > therefore the Barclays Group does not accept legal responsibility > for the contents of this message. Although the Barclays Group

Re: problem with multiproject:clean when new subproject added

2004-05-20 Thread dion_gillard
Your cruisecontrol initiated Maven project should have no dependencies on other subprojects. -- dIon Gillard, Multitask Consulting Ian Kent <[EMAIL PROTECTED]> wrote on 21/05/2004 06:33:58 AM: > We have a software project that has been modularized into many maven > projects (subprojects). > W

Re: src vs non-src jars

2004-05-18 Thread dion_gillard
I'd much rather we enhance the jar plugin to have a property that allows the source to be included in the built jar. -- dIon Gillard, Multitask Consulting Manuel Darveau <[EMAIL PROTECTED]> wrote on 19/05/2004 05:53:15 AM: > Hi! > > I want to be able to create to jar from my project. > One th

RE: Again about the POM Parser in Maven 1

2004-05-17 Thread dion_gillard
Post the entire POM to one of us to validate. -- dIon Gillard, Multitask Consulting [EMAIL PROTECTED] wrote on 17/05/2004 11:21:07 PM: > then I understood you correctly > > if (projectFile.exists() && projectFile.canRead()) > 130 { > 131 return MavenUtils.getProject( > 132

Re: javadoc on generated source directories

2004-05-13 Thread dion_gillard
"Denis McLaughlin" <[EMAIL PROTECTED]> wrote on 14/05/2004 09:45:58 AM: > > Hi, > > We're generating some source into target/generate, and we'd like to run > javadoc on it. Currently (RC1) javadoc is only run on the source in > pom.build.sourceDirectory. Reading through the mailing list, I

RE: Disappearing Tag Library

2004-05-13 Thread dion_gillard
I believe Jelly core is also not in the default namespace any more. -- dIon Gillard, Multitask Consulting Maxwell Grender-Jones <[EMAIL PROTECTED]> wrote on 13/05/2004 11:12:45 PM: > It did for me - I had to make the same change. > > M > On Thu, 2004-05-13 at 01:48, Brett Porter wrote: > > I

Re: Bug in the junit plugin?

2004-05-12 Thread dion_gillard
This is not good. They should both be processed in the same way. Raise a bug report in Jira. -- dIon Gillard, Multitask Consulting Frederic Gedin <[EMAIL PROTECTED]> wrote on 12/05/2004 06:42:40 PM: > Frederic Gedin a écrit : > > > Hello > > > > > > I am facing a problem with maven junit plu

Re: Dependancies without repositories. Was: Re: Dependencies

2004-05-10 Thread dion_gillard
We just use a corporate repo for things like javamail, jms and commercial stuff. -- dIon Gillard, Multitask Consulting Brill Pappin <[EMAIL PROTECTED]> wrote on 11/05/2004 01:01:08 AM: > Aside: For any Maven developers paying attention here... this is > something that needs some special atten

Re: Repository Connection Issue

2004-05-09 Thread dion_gillard
Shouldn't it be pom.repository.connection? -- dIon Gillard, Multitask Consulting "Tim Riley" <[EMAIL PROTECTED]> wrote on 07/05/2004 11:08:05 PM: > I have attempted to parameterize some of the values in the project. > xml specifically > > ${project.repository.connection} > ${project.re

Re: compatible jars

2004-05-08 Thread dion_gillard
Why not just use a groupId of struts for the commons jars? -- dIon Gillard, Multitask Consulting "James Hughes" <[EMAIL PROTECTED]> wrote on 07/05/2004 11:43:39 PM: > Does Maven provide a mechanism for documenting/specifying compatible > artifacts across groups in a repository? > > For exampl

Re: Javadoc

2004-05-06 Thread dion_gillard
I'll fix that one. -- dIon Gillard, Multitask Consulting [EMAIL PROTECTED] wrote on 07/05/2004 12:10:15 PM: > I believe this is a bug in the javadoc:jar goal: > > > value="${maven.war.build.dir}/${maven.final.name}_javadoc.jar" > /> > destfile="${maven.javadoc.final.nam

Re: Javadoc

2004-05-06 Thread dion_gillard
I believe this is a bug in the javadoc:jar goal: It uses (for some unknown reason) the maven.war.build.dir property, which is completely bizarre. -- dIon Gillard, Multitask Consulting "Raphael Philipe Mendes da Silva" <[EMAIL PROTECTED]> wrote on 06/05/2004 04:07:54 PM: >

Re: [maven2] Anything Groovy in Maven2?

2004-05-03 Thread dion_gillard
Jason van Zyl <[EMAIL PROTECTED]> wrote on 03/05/2004 11:27:06 PM: > On Mon, 2004-05-03 at 09:00, Incze Lajos wrote: > > > That's why I would consider groovy, as it has an ant builder (almost the > > same way as jelly has) Will Groovy end up as an unmaintained project like Jelly has? -- dIon Gi

RE: [maven2] Anything Groovy in Maven2?

2004-05-03 Thread dion_gillard
Maczka Michal <[EMAIL PROTECTED]> wrote on 03/05/2004 11:31:21 PM: > I don't think it will be that bad. Now clean, jar, compile plugin and it's > goal can be easly reused in other plugins > (e.g you don't have to write the same code for test plugin). The same can be said for the jelly code. > M

Re: [maven2] Anything Groovy in Maven2?

2004-05-03 Thread dion_gillard
Trygve Laugstøl <[EMAIL PROTECTED]> wrote on 03/05/2004 08:43:15 PM: [snip] > I relly don't thinkt this is so bad. Most of the plugins are much more than > one liners and as you can see the overhead for each file here is 4 lines. 4 lines, and it's not as functional. The Maven2 clean plugin is

RE: How to set suppressions for checkstyle plugin

2004-05-03 Thread dion_gillard
See http://maven.apache.org/reference/plugins/checkstyle/properties.html On that page, check out the entry for maven.checkstyle.properties. Copy one of the ones found in the plugin and then set that property in your project.properties, e.g. maven.checkstyle.properties=${basedir}/mycheckstyle.xm

RE: [maven2] Anything Groovy in Maven2?

2004-05-03 Thread dion_gillard
"Vincent Massol" <[EMAIL PROTECTED]> wrote on 03/05/2004 09:12:42 PM: > > > > -Original Message- > > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > > Sent: 03 May 2004 06:06 > > To: Maven Users List > > Subject: Re: [maven2] Anything Groovy in Maven2? > > > > [snip] > > > > And

Re: [maven2] Anything Groovy in Maven2?

2004-05-03 Thread dion_gillard
Jason van Zyl <[EMAIL PROTECTED]> wrote on 03/05/2004 01:03:57 PM: > On Sun, 2004-05-02 at 21:10, [EMAIL PROTECTED] wrote: > > > Given the vast amount of ant build scripts out there, there must be a few. > > Yes, but that's a result of there never being a choice. If someone had > made a build t

Re: [maven2] Anything Groovy in Maven2?

2004-05-02 Thread dion_gillard
Jason van Zyl <[EMAIL PROTECTED]> wrote on 03/05/2004 10:48:22 AM: > On Sun, 2004-05-02 at 18:43, Alex Karasulu wrote: > > Hiya, > > > > Was just wondering if there were any ideas regarding the use of Groovy > > with maven2 or is scripting totally out of the picture? > > > > I'm especially fo

Re: Maven Abbot plugin - feedback wanted

2004-05-01 Thread dion_gillard
Can abbot be used for web app testing? -- dIon Gillard, Multitask Consulting "Vincent Massol" <[EMAIL PROTECTED]> wrote on 01/05/2004 07:46:11 AM: > Hi Abbot and Maven users, > > I've just committed today a Maven plugin for Abbot. See > http://maven.apache.org/reference/plugins/abbot/ for more

RE: EAR task and tag

2004-04-30 Thread dion_gillard
"Vincent Massol" <[EMAIL PROTECTED]> wrote on 01/05/2004 12:27:58 AM: > Darren, > > I don't think the wsr type is a known type... > The ear plugin doesn't check against types. If you mark a dependency as ear.bundle, it's included. -- dIon Gillard, Multitask Consulting ---

Re: EAR task and tag

2004-04-30 Thread dion_gillard
"Darren Hartford" <[EMAIL PROTECTED]> wrote on 01/05/2004 12:19:02 AM: > Hey all, > Regarding Maven-1.0-rc2 (binary install) on Win2000, I have the > following in my project.xml: > > ==snip== > > MYPROJECT > MYEJBSESSION > ${pom.currentVersion} > ejb > >

multiproject:site stops transforming xdocs to html?

2004-04-30 Thread dion_gillard
I've got a weird one on our test box and remember reading up here about something similar happening to someone else, but couldn't find it in the archives. If I run multiproject:site or -Dgoal=site multiproject:goal, the xdoc plugin stops transforming the generated xml files to html, and the re

Re: Eclipse Plugin Ideas

2004-04-29 Thread dion_gillard
I think a better approach here would be to make the eclipse plugin update the existing file instead of overwrite it, or possibly only overwrite a single section of the file. -- dIon Gillard, Multitask Consulting "Charles N. Harvey III" <[EMAIL PROTECTED]> wrote on 30/04/2004 02:08:16 AM: > C

Re: Multiproject and Reactor

2004-04-29 Thread dion_gillard
"Ricardo de Souza Moura" <[EMAIL PROTECTED]> wrote on 29/04/2004 12:23:02 PM: > Hi folks, > > What the difference betwenn Multproject and Reactor ? Multiproject lets you deal with multiple projects in a consistent way and without writing code in maven.xml. > I use reactor, but I don't use the

Re: Is there a Maven WebLogic Plugin available?!

2004-04-29 Thread dion_gillard
Nathan Coast made a weblogic plugin a while back, but it only worked with the EJBGen tool from WebLogic. The Cactus plugin has WebLogic functionality too from memory. -- dIon Gillard, Multitask Consulting "Göschl,Siegfried" <[EMAIL PROTECTED]> wrote on 29/04/2004 07:48:19 PM: > Hi folks, >

RE: Problem with HEAD and -o or -X

2004-04-28 Thread dion_gillard
Done. -- dIon Gillard, Multitask Consulting Brett Porter <[EMAIL PROTECTED]> wrote on 29/04/2004 11:13:04 AM: > Interesting. Something must have changed in CLI as I noticed that sometimes > "" was being recorded as a goal. > > I haven't seen it, but can you file this in JIRA, and attach the o

Problem with HEAD and -o or -X

2004-04-28 Thread dion_gillard
I've had a problem recently with HEAD where goals are being ignored and only the default goal for a project is being executed, e.g. I have a project with a default goal of 'inl:nightly-build', which is defined in maven.xml, and when I run "maven -o multiproject:clean", it executes the default g

RE: changelog plugin vs cvs executable

2004-04-28 Thread dion_gillard
I think I'll just update the plugin xdocs/index.xml unless someone objects. -- dIon Gillard, Multitask Consulting Brett Porter <[EMAIL PROTECTED]> wrote on 29/04/2004 09:25:21 AM: > Good suggestion dion. Can you create a JIRA issue, preferably with a patch? > :) > > > -Original Message--

RE: changelog plugin vs cvs executable

2004-04-28 Thread dion_gillard
Menetrieux Remy <[EMAIL PROTECTED]> wrote on 27/04/2004 07:37:59 PM: > Changelog use the scm plugin to connect at cvs. > I have post an answer for this last week. > Rémy The Changelog plugin does not use the SCM plugin to do it's cvs work. It uses the netbeans cvslib. The issue is that CVSNT

changelog plugin vs cvs executable

2004-04-27 Thread dion_gillard
I recently had a problem with the changelog plugin where it was coming back with an error saying there was an incorrect password provided. Running 'cvs up' and 'cvs login' all worked fine, and cvs itself seemed ok. It appears the plugin reads (and expects) a ~/.cvspass file. This file wasn't p

Re: Call of jelly invokeStatic in maven.xml

2004-04-26 Thread dion_gillard
Is ch.netcetera.golo.IDgen in one of the jars in your project.xml? -- dIon Gillard, Multitask Consulting Martin Jaeger <[EMAIL PROTECTED]> wrote on 26/04/2004 09:43:07 PM: > Hi together > > After my project is compiled and packaged I want to deploy it to our > server. For this I have to get an

Re: Dependencies

2004-04-25 Thread dion_gillard
Bill Madison <[EMAIL PROTECTED]> wrote on 26/04/2004 01:43:05 AM: > Geoffrey, > > Even if I do it the way you suggested, it still doesnt > solve the problem of cut&paste and the versioning > issue. I'm lookiing for something where I can place > the jars and point to the location, If at all I can