Re: error when building multiple projects joined by maven2 module

2006-08-17 Thread Jesse McConnell
well first off, you shouldn't need the SCM sections in the child poms, maven uses the name of the module in the parent pom to determine how to check out the children The child poms need to use the parent tag to link back up to the top lvl parent pom. with that in place maven should sequentially

Re: component requirements

2006-08-17 Thread Gareth Tilley
Thanks Franz, that's exactly what I was looking for. franz see wrote: Gareth Tilley wrote: I've also had issues with this, how does one find out what components are available to a plugin? Frederik Bayart-2 wrote: Hallo, Does anybody know where I can find documentation of

Re: Assembly madness...

2006-08-17 Thread mike7
John Casey-3 wrote: FWIW, this issue is fixed in the current 2.2-SNAPSHOT version of the assembly plugin. I've added tests to verify it. And how do I access this 2.2? Actually, I can only access 2.1-SNAPSHOT that does not solve any issue. Thanks, Mike -- View this message in context:

Re: Authorized RW access to repositories

2006-08-17 Thread Arnaud Bailly
Hello, I have setup something quite similar for my former company, although the physical security requirements were less stringent: We had off-shore developers, customer-side developers and our own developers located both at our main office and customer's office. We needed to isolate each

Re: [m2] Assembly and classifiers

2006-08-17 Thread mike7
And has it been added? And if so, how can we use the feature? Without this feature, I'm going back to Ant... Cheers, Mike Brett Porter wrote: Sonuds like a good feature request to add to JIRA. - Brett On 11/2/05, Julien Stern [EMAIL PROTECTED] wrote: Is there a way to tell the

[m2] another assembly bug?

2006-08-17 Thread mike7
It seems that properties cannot be used within an assembly descriptor. This is a very needed feature when combined with profiles or classifiers (well, this doesn't work yet anyway). Thanks, Mike -- View this message in context:

RE: build after every checkin

2006-08-17 Thread Shute, James
Are there any plans to add support for this though? Those of us using Continuum in corporate environments may well not be able to add hooks into the scm system so it would certainly be a great plus point for me. James -Original Message- From: Emmanuel Venisse [mailto:[EMAIL

RE : RE : Web site generation for multiple projects

2006-08-17 Thread olivier . lambert
I use maven-site-plugin-2.0-beta-5.jar but the link menu ref=parent / in the child does not produce anything :( However, the link menu ref=modules / works fine ! Some idea ? thx __ SmalS-MvM sluit elke

More informations for Maven 2.x Plug-in for Eclipse?

2006-08-17 Thread Deng Ai
Hello everyone: Anybody know the news for the Maven 2.x plugin-in for Eclipse? Their site http://m2eclipse.codehaus.org/ est almost empty. The url for Eclipse doesn't work, It is like no any more maintenance for this plugin. Thanks for your informations.

Re: build after every checkin

2006-08-17 Thread Emmanuel Venisse
We can't add a hook in your scm. It's generally a script that you add in a directory of your scm. We can't create the full xml-rpc because it depends on how you want to use it, but we provide a helper class that will help you. Emmanuel Shute, James a écrit : Are there any plans to add

Can the latest released maven-idea-plugin handle [1.5,) like dependencies?

2006-08-17 Thread Geoffrey De Smet
I've checked out the latest mojo webstart plugin and a mvn install works fine. However when I do a mvn idea:idea it says successful but it talking about failures for the dependency resolution on artifacts which have version like [1.5,). The resulting idea files don't work. Does the idea plugin

RE: build after every checkin

2006-08-17 Thread Shute, James
Not sure you understood my point - our CVS repo is managed and administered by a separate team using servers we have no access to (other than via standard CVS access). Hence any sort of hook based approach is no use to me - regardless of whether there's a helper class or not. So some sort of

Re: build after every checkin

2006-08-17 Thread Emmanuel Venisse
oh I misunderstood. It's the default mode. With a small interval, it will be ok. Emmanuel Shute, James a écrit : Not sure you understood my point - our CVS repo is managed and administered by a separate team using servers we have no access to (other than via standard CVS access). Hence any

Re: Re: running unit tests for pom packaged project

2006-08-17 Thread Stefan Magnus Landrø
Are you basically saying that a parent project needs to have modules to allow unit tests to be run? Yes, and actually modules are just a way of simplyfying a complex build. Stefan

RE: build after every checkin

2006-08-17 Thread Shute, James
Excellent - thanks -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 8:26 AM To: continuum-users@maven.apache.org Subject: Re: build after every checkin oh I misunderstood. It's the default mode. With a small interval, it will be ok.

error when building multiple projects joined by maven2 module

2006-08-17 Thread Markus . Wahl
i have three maven2 projects A, B and C where A depends on B and C, and where B depends on C (for compilation and packaging). I have included the scm section in each projects pom.xml and I have tested that continuum can build them if I supply the poms and have continuum build them in the

Profile which removes a plugin execution from the build

2006-08-17 Thread Geoffrey De Smet
My pom contains the webstart plugin which executes on mvn install and signs all dependencies: build plugins /plugins pluginManagement plugin groupIdorg.codehaus.mojo/groupId

Re: Maven2/TestApp/Classpath testing and structuring issues

2006-08-17 Thread Paul Michael Reilly
Arnaud Bailly [EMAIL PROTECTED] writes: Paul Michael Reilly [EMAIL PROTECTED] writes: I use the Maven 2 quick start scaffold for this project so far. In AppTest, I spawn the app during setup via something like: Runtime.getRuntime().exec( java -cp the:class:path com.foo.App ).

RE: Profile which removes a plugin execution from the build

2006-08-17 Thread graham
Could you not use: profiles profile activation property namewebstart/name valuetrue/value /property /activation ... /profile /profiles with properties webstarttrue/webstart /properties in your pom.xml (or settings.xml). And then use: mvn

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a projectsupport.

2006-08-17 Thread Nicolas De Loof
I use hierarchical projects in eclipse myself. Import wizard doesn't search sub-directories if the top-directory has a .project file. I had to delete the .project generated during checkout before importing all sub-projects in one click. Then I can restore the .project and import the top level

Re: Profile which removes a plugin execution from the build

2006-08-17 Thread Geoffrey De Smet
Thanks, that would be a good work around. It stills feels a bit strange though, that profiles allow you to add and modify plugins, but AFAIK not remove plugins from the build. [EMAIL PROTECTED] wrote: Could you not use: profiles profile activation property

RE: cruisecontol plugin for maven 2.0

2006-08-17 Thread Adam Leggett
AFAIK Cruise Control now has built in support for m2 from version 2.4.1 onwards: http://cruisecontrol.sourceforge.net/main/configxml.html#maven2 -Original Message- From: manoj kaushik [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 4:14 AM To: Maven Users List Cc: [EMAIL

Re: running unit tests for pom packaged project

2006-08-17 Thread Denis McCarthy
Thanks for that information guys - I understand how things should be set up now. Unfortunately, I have a slight problem regarding a clash between mavens modules and eclipse (I realise eclipse's inner workings are slightly off topic, but I'm sure many on this list know more about it than I do).

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a projectsupport.

2006-08-17 Thread Ralph Pöllath
On 17.08.2006, at 10:24, Nicolas De Loof wrote: I use hierarchical projects in eclipse myself. Import wizard doesn't search sub-directories if the top-directory has a .project file. I had to delete the .project generated during checkout before importing all sub-projects in one click. Then I

Re: Maven2/TestApp/Classpath testing and structuring issues

2006-08-17 Thread Arnaud Bailly
Paul Michael Reilly [EMAIL PROTECTED] writes: You qualify. :-) Wait lurking some times on this list and you will find real maven hackers :-) The first testing tier will be based on the classes and will be mostly traditional unit testing, but I will observe that unit testing has never

J2ME development anyone?

2006-08-17 Thread Milos Kleint
hello, anyone doing J2ME development using maven2? any docs or hints available online? Regards Milos Kleint - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a projectsupport.

2006-08-17 Thread Nicolas De Loof
Are you talking about subclipse issue 511( http://subclipse.tigris.org/issues/show_bug.cgi?id=511 ) ? If so, people interested in having this fixed should probably create an account on tigris.org and vote for this issue. You're right. Please vote ! In the meantime, it might be worth

[M2] How to softcode 'version' in dependency declaration

2006-08-17 Thread hamdard
Hi Is it possible to softcode the version in the dependency declaration? For example, the pom could be like this: dependency groupIdcom.mycompany.ixaf/groupId artifactIdgw-plugin/artifactId version${myversion}/version /dependency And the myversion parameter is

RE: [M2] How to softcode 'version' in dependency declaration

2006-08-17 Thread graham
Yes, although take a look at the 'Better Builds with Maven' book (available from Mergere). It has a section on exactly this situation, where the version is controlled not from the settings.xml, but from the parent POM of your multi-module build, and propogated through all your dependencies.

RE: [M2] How to softcode 'version' in dependency declaration

2006-08-17 Thread Maximilian . Antoni
Have a look at dependency management (http://maven.apache.org/guides/introduction/introduction-to-dependency- mechanism.html). Cheers -Original Message- From: hamdard [mailto:[EMAIL PROTECTED] Sent: 17 August 2006 11:12 To: users@maven.apache.org Subject: [M2] How to softcode

Re: [M2] How to softcode 'version' in dependency declaration

2006-08-17 Thread Rohnny Moland
I guess it should be possible to add something like: properties gw-plugin.version1.0/gw-plugin.version /properties ..to your pom or settings file. HTH, Rohnny hamdard wrote: Hi Is it possible to softcode the version in the dependency declaration? For example, the pom could be like

Re: J2ME development anyone?

2006-08-17 Thread Marco Mistroni
hello, googleing... found this http://mojo.codehaus.org/j2me-maven-plugin/ i have never used it..don't have time right now. if you manage, give me a shout hth marco On 8/17/06, Milos Kleint [EMAIL PROTECTED] wrote: hello, anyone doing J2ME development using maven2? any docs or hints

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a projectsupport.

2006-08-17 Thread Nicolas De Loof
I've just tested it and it works fine with sub-projects. It also looks better than sublcipse IMHO, and has a better handling of renamed/moved files (specific icon) that subclipse handles as removed+added. In the meantime, it might be worth giving Subversive a try (

Re: running unit tests for pom packaged project

2006-08-17 Thread Barrie Treloar
these applications are separate projects in eclipse. I'm worried that if I combine them into a maven-ized single project with modules, I will no longer be able to deploy them as individual web applications within eclipse (using eclipse web tools project web server - tomcat in this instance).

Re: Dependency scopes

2006-08-17 Thread ceki
Nick, I very much appreciate your response. I wish the article of reference on subject, namely, Introduction to the Dependency Mechanism was somewhat more precise. Perhaps the maintainers of the document could have another look at it. Is filing a bug report appropriate? Nick Veys [EMAIL

Re: help with manifest EJB

2006-08-17 Thread Marco Mistroni
Hi alan, thanks for link but it didnt work out for me.. i am using maven-2.0.4, here's my pom.xml.. i'd need egenEJB adn egenCommon to go inside manifest ClassPath entry, but somehow they don't go... any help? thanks and regards marco ?xml version=1.0?project parent

RE: cruisecontol plugin for maven 2.0

2006-08-17 Thread Siegmann Daniel, NY
AFAIK Cruise Control now has built in support for m2 from version 2.4.1 onwards: http://cruisecontrol.sourceforge.net/main/configxml.html#maven2 For the record, I've been using CC 2.5.0 for our Maven2 projects, and I've not had any issues. CC 2.5.0 runs M2 projects just like M1 or Ant

Re: using javadoc overview and maven plugin

2006-08-17 Thread Robbie Minshall
My current conclusion: Definately want to use a relative path or else this will obviously break builds left and right. Using the ${basedir} looks like it will work nicely. However, right now it seems that the javadoc plugin is not replacing backslashes with slashes. I have put various

Re: help with manifest EJB / fixed

2006-08-17 Thread Marco Mistroni
hi silly me!! i was not declaring packaging=ejb on my pom.xml sorry for bothering, everything is fine now regards marco On 8/17/06, Marco Mistroni [EMAIL PROTECTED] wrote: Hi alan, thanks for link but it didnt work out for me.. i am using maven-2.0.4, here's my pom.xml.. i'd need egenEJB

Errors during site deploy

2006-08-17 Thread Jeff Mutonho
Should I be worried about the following errors that are poping out during site-deploy? [WARNING] No URL defined for the project - decoration links will not be resolved[INFO] Generate Continuous Integration report. [ERROR] VM #displayTree: error : too few arguments to macro. Wanted 2 got 0

RE: More informations for Maven 2.x Plug-in for Eclipse?

2006-08-17 Thread Chris Hilton
I'm not a dev on it so can't speak officially, but I'm a watcher on several bugs for it and know it is still being actively developed. I think there's a bit of a hold-up due to some changes in the way artifact resolution is being done to better integrate with Eclipse, which is hard enough on its

RE: More informations for Maven 2.x Plug-in for Eclipse?

2006-08-17 Thread Parmar, Vijendra Singh
Hi all, I have integrated Maven with Eclipse I tried with both Maven 1.0 and Maven 2.0 But whenever I execute commands like Maven site or mvn eclipse:eclipse or mvn jars:jars mvn plugins:plugins or any other I am always facing error as its not able to get respective jars by

Re: Errors during site deploy

2006-08-17 Thread Denis Cabasson
The first is worrying, and means you have set the pom.url property in your POM, meaning some of the links on your website *could* be broken. The other errors can be discarded (don't ask me where they come from). Denis. Jeff Mutonho wrote: Should I be worried about the following errors that

[m2] Maven Antrun Multiple Executions

2006-08-17 Thread Peter . Pilgrim
[0] You cannot have two plugin executions with the same (or missing) id/ elements. Offending execution Id: 'default' Plugin:'org.apache.maven.plugins:maven-antrun-plugin' How do I configure the id for each execution XML fragment? -- Peter Pilgrim UBS Investment Bank, PTS Portal / IT

[Continuum] my notifier email is removed during build !

2006-08-17 Thread Nicolas De Loof
Hello I'm using Continuum for my maven1 project. I've added a email notifier to get build result. Build runs fine, I get no mail, and when I get back to project page there is no notifier anymore. I've tried it several times, check the notifier beeing present before build, stop and restarted

problems with Maven Eclipse

2006-08-17 Thread Parmar, Vijendra Singh
Hi all, I have integrated Maven with Eclipse I tried with both Maven 1.0 and Maven 2.0 But whenever I execute commands like Maven site or mvn eclipse:eclipse or mvn jars:jars mvn plugins:plugins or any other I am always facing error as its not able to get respective jars

Re: [m2] Maven Antrun Multiple Executions

2006-08-17 Thread Denis Cabasson
exections execution id0/id phase/phase configuration.../configuration /execution execution id1/id ... /execution /executions Denis. Peter.Pilgrim wrote: [0] You cannot have two plugin executions with the same (or missing) id/ elements. Offending

M2 site:stage does not copy apidocs and xref?

2006-08-17 Thread Benoit Xhenseval
Hi *, I believe that I've followed Anne's suggestions on: http://www.nabble.com/multi-module-project-site%3A-link-to-module-sites-tf1980169.html#a5433379 I call maven: mvn site:stage -DstagingDirectory=C:\fullsite However, it seems that the apidocs and xref files for the modules are not copied

Re: [Continuum] my notifier email is removed during build !

2006-08-17 Thread Emmanuel Venisse
Continuum users list is continuum-users@maven.apache.org ;-) Emmanuel Nicolas De Loof a écrit : Hello I'm using Continuum for my maven1 project. I've added a email notifier to get build result. Build runs fine, I get no mail, and when I get back to project page there is no notifier anymore.

Configuring the inputHtml component, looking for information

2006-08-17 Thread Mikael Andersson
Hi, I am looking for information about configuring the way HTML is generated by the inputHtml component. E.g. instead of bold generating an inline style sheet declaration, is it possible to get inputHtml/kupu to generate a span with a css class instead class=boldText instead of style=font-weight:

Re: [M2] How to softcode 'version' in dependency declaration

2006-08-17 Thread hamdard
This is great, thanks to all. I'm using dependencyManagement and also the property declaration in the settings.xml that captures the version for the entire project. Every where else, the version is softly referenced. e.g. settings.xml: profile idframeworkVersion/id properties

Re: M2 site:stage does not copy apidocs and xref?

2006-08-17 Thread Jan Vissers
Hi, this is an issue that has been brought earlier... as things stand with maven (or at least 2.0.4 which I'm checking) the multi module / aggregated reporting sucks! Don't know whether this is going to change any time soon. This might well mean, that we're not leaving ANT - as one of the key

Error during page generation

2006-08-17 Thread Jeff Mutonho
Site-deploy is failing with the error message below. /home/maven/MAVEN-WORK/eportal-domain/src/za/co/pragmaticus/portal/pdc/Customer.java:148: warning - @hibernate.property is an unknown tag. /home/maven/MAVEN-WORK/eportal-domain/src/za/co/pragmaticus/portal/pdc/Customer.java:158: warning -

Re: Getting the ear plugin to recognise har files

2006-08-17 Thread Graham Leggett
On Thu, August 3, 2006 9:55 am, Stephane Nicoll wrote: Anyway, it's handled now and I am busy working on jboss-app.xml auto-generation. Is this available in a released form anywhere where I can give it a test run? Regards, Graham --

Re: Error during page generation

2006-08-17 Thread Jeff Mutonho
In my pom i have this : plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-javadoc-plugin/artifactId configuration links linkhttp://java.sun.com/j2se/1.4.2/docs/api/link linkhttp://plexus.codehaus.org/ref/1.0-alpha-9/apidocs/link

Re: [m2] Maven Antrun Multiple Executions

2006-08-17 Thread Denis Cabasson
I don't know if you can call a plugin execution based on its id (this would sound a sensible thing to do), but what I know you can do is call the phase your plugin is bound to. Generally, if you phase is carefully chosen, that whould be enough: executing the plugin outside of a given phase means

Re: Error during page generation

2006-08-17 Thread Denis Cabasson
The second link looks like a 404 error to me. Denis. Jeff Mutonho wrote: In my pom i have this : plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-javadoc-plugin/artifactId configuration links

Re: Error during page generation

2006-08-17 Thread Jeff Mutonho
On 8/17/06, Denis Cabasson [EMAIL PROTECTED] wrote: The second link looks like a 404 error to me. Denis. Yes, you're correct.Just saw that now , but however I took out the plexus link and left only the sun link (which is working) , but am getting the same error message , complaining

Re: Graphical View of Dependencies

2006-08-17 Thread Carlos Sanchez
yes, it's not finished and only shows some parts Samples: http://people.apache.org/~carlos/grafo/graphview.html http://people.apache.org/~carlos/grafo/radialgraphview.html On 8/16/06, Pin Ngee Koh [EMAIL PROTECTED] wrote: I tried grafo-maven-plugin mention in

Re: ant dependency list

2006-08-17 Thread Matt Brozowski
On Aug 16, 2006, at 4:14 AM, Lakshman Srilakshmanan wrote: Hi All, Going through the examples provided in Developing Custom Maven Plugin in Better Builds with Maven, I find that example 5.4.2 (Notifying Other Developers with an Ant Mojo) does not work. The error message is Failed to

Goal to sign a jar

2006-08-17 Thread Grégory Canto
Hi, I'd like to know if there is a maven 2 plugin to sign a jar during the build process. Thanks, -- -- Grégory Canto [EMAIL PROTECTED] Longadata Tecnologia da Informação --

Maven java processes refusing to die

2006-08-17 Thread Jeff Mutonho
kill -9 PID is not doing it.I've logged out and logged in again , still no luck.Now I have 2 maven java processes one eating away 1.6G of memory and the other 204M.These 2 dudes are just refusing to die This is on Linux machine. -- Jeff Mutonho GoogleTalk : ejbengine Skype:

Re: error when building multiple projects joined by maven2 module

2006-08-17 Thread Christian Edward Gruber
Jesse McConnell wrote: well first off, you shouldn't need the SCM sections in the child poms, maven uses the name of the module in the parent pom to determine how to check out the children Does it use the module name, or the artifactId? It used to append the artifactId on the end, which

Re: Does continuum supports UCM Clease case?

2006-08-17 Thread Michael Waluk
Yes, we are using UCM here with Continuum. There are many features I would like to add to the ClearCase portion of Continuum though - like being able to request a particular baseline rather than just the LATEST. This would prevent it from building partial deliveries -- if Continuum retrieves

converting directory structure to maven archetypes

2006-08-17 Thread Thomas Becker
I have converted several projects to maven2 archetypes. This of course changed the directory structure. These projects currently are maintained in cvs, along with years of version history etc. My hope is to retain this history and re-introduce the maven2-ized projects back into cvs (and eventuall

Eclipse Plugin

2006-08-17 Thread Douglas Ferguson
Something happened recently that is preventing me from adding dependcies from the plugin. It says that a file index/local/segments is missing. I created the file but then it complains that about it being empty. - To

Re: converting directory structure to maven archetypes

2006-08-17 Thread Wayne Fay
It is *not* possible to move files and folders around in CVS and retain history. This is only possible in SVN and perhaps other systems. It *is* possible (though perhaps difficult) to retain your old directory/file structure and simply configure things entirely in the the pom.xml files. So

Re: Goal to sign a jar

2006-08-17 Thread Wayne Fay
Pretty sure the Webstart plugin can handle your signing needs. Wayne On 8/17/06, Grégory Canto [EMAIL PROTECTED] wrote: Hi, I'd like to know if there is a maven 2 plugin to sign a jar during the build process. Thanks, -- -- Grégory Canto

Re: Goal to sign a jar

2006-08-17 Thread Tom Huybrechts
I think I saw JarSignMojo in the maven-jar-plugin, but I don't know if it's released yet. On 8/17/06, Wayne Fay [EMAIL PROTECTED] wrote: Pretty sure the Webstart plugin can handle your signing needs. Wayne On 8/17/06, Grégory Canto [EMAIL PROTECTED] wrote: Hi, I'd like to know if there is

Re: basedir of super pom

2006-08-17 Thread Tom Huybrechts
Can Clover read your license file from the classpath ? Then you could deploy your (jarred) license to your maven repo and add it as a dependency to the clover plugin. See the checkstyle plugin docs [1] for more information - it allows you to do a similar thing with checkstyle configurations. Tom

Re: converting directory structure to maven archetypes

2006-08-17 Thread Manfred Moser
Thomas Becker wrote: I have converted several projects to maven2 archetypes. This of course changed the directory structure. These projects currently are maintained in cvs, along with years of version history etc. My hope is to retain this history and re-introduce the maven2-ized projects back

Re: Goal to sign a jar

2006-08-17 Thread Dennis Lundberg
The signing mojo has not been released yet. It's available in the 2.1-SNAPSHOT version of the maven-jar-plugin. Please read this if you want to try it out: http://maven.apache.org/guides/development/guide-testing-development-plugins.html -- Dennis Lundberg Tom Huybrechts wrote: I think I saw

Re: converting directory structure to maven archetypes

2006-08-17 Thread Emmanuel Venisse
It *is* possible to retain the history if you move rcs files on your filesystem instead of to use cvs. Emmanuel Wayne Fay a écrit : It is *not* possible to move files and folders around in CVS and retain history. This is only possible in SVN and perhaps other systems. It *is* possible

RE: converting directory structure to maven archetypes

2006-08-17 Thread Chris Hilton
Not that I recommend it, but if you do something like this, don't just move the files. Be sure to *copy* the rcs files on the filesystem to their new locations and then use cvs to remove the old files from the old locations. You'll preserve the history of the files in their new locations, but

wagon-scm

2006-08-17 Thread ekio
Does wagon-scm work with other providers besides cvs and svn? Let say I have a provider that is already working with the scm-plugin, what are the steps to get the provider to work with the wagon-scm? Thank you very much. -- View this message in context:

Re: wagon-scm

2006-08-17 Thread Carlos Sanchez
it only works for svn, other providers will need to provide real implementations of some methods of the api that currently throw opperation not supported exceptions On 8/17/06, ekio [EMAIL PROTECTED] wrote: Does wagon-scm work with other providers besides cvs and svn? Let say I have a provider

Re: problems with Maven Eclipse

2006-08-17 Thread Joerg Hohwiller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Parmar, Vijendra Singh wrote: Hi all, Hi Vijendra, first of all, this posting is kinda misplaced here on the developers list. You should post stuff like this on the users list - anyways... I have integrated Maven with Eclipse I tried

maven 2: calling external ant file, creating jar in war instead of classes

2006-08-17 Thread Attila Mezei-Horvati
Hello, I just started to migrate from ant to maven. I had high hopes, so far I got only frustrations. :) I hope you guys can help me. I tried to look through documentation but it is not as complete as I would need it. My current problems: 1. I am trying to run an ant task from my old build

Re: [m2] Maven site and powered by

2006-08-17 Thread Alex Schwartz
Alex Schwartz wrote: I would like to add some more powered by icons to the generated site. The maven 1.x site plugin supported multiple powered-by elements in the navigation.xml. Is there a similar feature for m2, or do I have to patch the templates? --Alex Ok, I figured it out

including classes from a dependent jar

2006-08-17 Thread Douglas Ferguson
I have a module that needs to build a jar file from a subset of classes from other modules. Any suggestions on a clean way to do this? __ Douglas W. Ferguson EPSIIA - Another Fiserv Connection Development Office Phone: 512-329-0081 ext. 3309

Re: Maven java processes refusing to die

2006-08-17 Thread Mike Perham
Reboot? The only time I see rogue maven processes is when our unit tests fork and I kill the main maven process. The child unit test maven instance continues to run until the unit tests are complete. mike Jeff Mutonho [EMAIL PROTECTED] wrote on 08/17/2006 12:24:30 PM: kill -9 PID is not

RE: including classes from a dependent jar

2006-08-17 Thread Donald Ness
You could try using the ant plugin: plugin artifactIdmaven-antrun-plugin/artifactId executions execution phasepackage/phase configuration tasks mkdir

Re: converting directory structure to maven archetypes

2006-08-17 Thread Thomas Becker
thanks for the feedback - all helpful On 8/17/06, Chris Hilton [EMAIL PROTECTED] wrote: Not that I recommend it, but if you do something like this, don't just move the files. Be sure to *copy* the rcs files on the filesystem to their new locations and then use cvs to remove the old files from

RE: including classes from a dependent jar

2006-08-17 Thread Douglas Ferguson
I just came up with a plan of attack: 1) Use the dependency:unpack goal. 2) Then update the jar plugin config to use the unpack dir. -Original Message- From: Donald Ness [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 4:40 PM To: Maven Users List Subject: RE: including classes

RE: including classes from a dependent jar

2006-08-17 Thread Douglas Ferguson
This works but I can't control the files that get put into the jar, because the jar plugin includes everything. I could probably use the assembly plugin or maybe call and ant task to delete unneeded files. If I use the assembly plugin can I disable the normal jar that gets created?

RE: including classes from a dependent jar

2006-08-17 Thread Douglas Ferguson
I set the packaging for the project to pom to prevent the jar creation. Then I used the assembly to build my jar. Does this sound sane? D- -Original Message- From: Douglas Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, August 17, 2006 5:08 PM To: 'Maven Users List' Subject: RE:

Re: Maven java processes refusing to die

2006-08-17 Thread NWNaccari
I saw this recently. It turned out to be caused (how I don't know) by a service that had died on the server in the middle of the night.The service was the TSM Scheduler Service. This is on a Windows Server. Wayne Naccari (205) 437-6464 Mike Perham [EMAIL PROTECTED] 08/17/2006 04:29

Re: Dependency scopes

2006-08-17 Thread Nick Veys
On 8/17/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Nick, I very much appreciate your response. I wish the article of reference on subject, namely, Introduction to the Dependency Mechanism was somewhat more precise. Perhaps the maintainers of the document could have another look at it. Is

Re: using javadoc overview and maven plugin

2006-08-17 Thread Nick Veys
That sure sounds like a bug to me, if any of those should work it'd be the basedir one. I'd file it. On 8/17/06, Robbie Minshall [EMAIL PROTECTED] wrote: My current conclusion: Definately want to use a relative path or else this will obviously break builds left and right. Using the ${basedir}

Re: Maven java processes refusing to die

2006-08-17 Thread Doug Douglass
Funny, we've recently had kind of the opposite problem -- recurring SIGSEGV problems during CruiseControl-initiated maven builds on a linux platform (CC 2.5, Maven 2.0.4, Sun JDK 1.5.0_07-b03 on a RH CentOS 3.7 SMP Intel box). It was a rare occurrence until this week, now every build breaks due

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a project support.

2006-08-17 Thread Barrie Treloar
On 8/16/06, Barrie Treloar [EMAIL PROTECTED] wrote: I thought that the snapshot version of the eclipse:eclipse plugin had the functionality to do this for me, but it is not working how I expect. I assume I am doing something wrong. Should mvn eclipse:eclipse at the project root do what I

Re: Dependency scopes

2006-08-17 Thread franz see
Nick, I very much appreciate your response. I wish the article of reference on subject, namely, Introduction to the Dependency Mechanism was somewhat more precise. Perhaps the maintainers of the document could have another look at it. Is filing a bug report appropriate? Good day to you,

excluding unit tests

2006-08-17 Thread Satish
How can you do this explicitly, currently by default, package/install goals call these. i have the following snippet in my pom.xml and it's giving errors build excludes exclude **/*Test*.java /exclude /excludes /build -- View this message in context:

Does maven2 eclipse plugin suppor multi-module projects

2006-08-17 Thread Kent Tong
Hi, I am trying to use the maven2 eclipse plugin for a module inside a multi-module project. But it doesn't seem to list the dependencies defined in the parent pom.xml at all. Am I missing something? Does it work in a multi-module project? Thanks!

Re: using javadoc overview and maven plugin

2006-08-17 Thread franz see
On 8/17/06, Robbie Minshall [EMAIL PROTECTED] wrote: My current conclusion: Definately want to use a relative path or else this will obviously break builds left and right. Using the ${basedir} looks like it will work nicely. However, right now it seems that the javadoc plugin is not

Re: excluding unit tests

2006-08-17 Thread Nick Veys
Is this maven 1 or 2? It doesn't look right for either of them. Excluding unit tests is covered on both version's web pages... http://maven.apache.org/maven-1.x/reference/project-descriptor.html#unitTest http://maven.apache.org/plugins/maven-surefire-plugin/howto.html On 8/17/06, Satish [EMAIL

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a project support.

2006-08-17 Thread Max Cooper
Sorry that this discussion is somewhat off-topic, but I hope that it is okay since there are so many people trying to get hierarchically-organized Maven projects to work well in Eclipse... I setup a workspace using the procedure outlined in this thread. The end result that I get has the root

Re: [m2] eclipse:eclipse and eclipse 3.2 projects within a project support.

2006-08-17 Thread Barrie Treloar
I setup a workspace using the procedure outlined in this thread. The end result that I get has the root and modules in a flat layout (not hierarchical) like this: root module1 module2 module3 At first I thought that it didn't work for me, but I suspect that this was the same result that others

Re: Does maven2 eclipse plugin suppor multi-module projects

2006-08-17 Thread Barrie Treloar
On 8/18/06, Kent Tong [EMAIL PROTECTED] wrote: Hi, I am trying to use the maven2 eclipse plugin for a module inside a multi-module project. But it doesn't seem to list the dependencies defined in the parent pom.xml at all. Am I missing something? Does it work in a multi-module project? Kent,

java.util.zip.ZipException on running command maven cruisecontrol:run

2006-08-17 Thread manoj kaushik
hello everyone due to some changes i get the followin error when i run cruisecontrol through maven cruisecontrol:run the error code is: [java] java.util.zip.ZipException: The system cannot find the path specifi [java] at java.util.zip.ZipFile.open(Native Method) [java] at

  1   2   >