[m2] Assembly-plugin Manifest.mf

2005-07-20 Thread J. Matthew Pryor
Perhaps I do not understand the purpose of the assembly plug-in, but as it works in alpha-3, the assembled jar gets a new MANIFEST.MF which is basically empty (and not the MANIFEST.MF from the created artifact). Maven-jar-plugin writes a lot of stuff to the MANIFEST (and I am writing an Eclipse

Re: [m2] Assembly-plugin Manifest.mf

2005-07-20 Thread Brett Porter
I don't think this is intended - can you provide us with a small test case that exhibits the behaviour and what you were expecting so we can determine whether it is a misunderstanding or a defect? Thanks, Brett On 7/20/05, J. Matthew Pryor [EMAIL PROTECTED] wrote: Perhaps I do not understand

RE: [m2] Assembly-plugin Manifest.mf

2005-07-20 Thread J. Matthew Pryor
I am building eclipse plugins, and with Eclipse 3.1 these are essentially OSGI bundles OSGI works from entries in the manifest, in particular Bundle-Classpath attribute I have a Mojo that reads the dependencies updates the Bundle-Classpath of the created artifact (a jar in this case). What I

[m102] multiproject:deploy fails

2005-07-20 Thread Christian Schlaefcke
Hi Folks, I´m trying to run maven mutliproject:deploy on a dummy project I just generated with maven genapp [complex]. The project builds fine with cruisecontrol but when I trry to deploy I get this error: BUILD FAILED File.. ~\.maven\cache\maven-multiproject-plugin-1.4.1\plugin.jelly

Re: [m102] multiproject:deploy fails

2005-07-20 Thread Christian Schlaefcke
Hi, got a bit further now, but still no luck. I found out that the cause of the error seems to be the ejb project. I get the error when running maven ejb:deploy in the ejb project folder: Tag library requested that is not present: 'maven' in plugin: 'maven-xdoclet-plugin-1.2' BUILD FAILED

[m2] javassist-3.0.pom missing in ibiblio repository

2005-07-20 Thread Wilfred Springer
Sorry for the wide distribution, but I don't know where to file this problem in Jira. The ibiblio repository does not contain the javassist-3.0.pom file and related artifacts. (Suggested contents for the javassist-3.0.pom file: project modelVersion4.0.0/modelVersion groupIdjavassist/groupId

[m2] Report about modules

2005-07-20 Thread Mueffke, Friedger
Hi, I would like to generate a report from my top level project that contains the modules defined in the pom file and links to the sites of the modules. Is there a reporting plugin available for that task? Thanks, Friedger

Re: A bug in the Maven plugin for XDoclet?

2005-07-20 Thread Stephane Nicoll
Ken, The maven plugin is just a wrapper around the ant task and the Xdoclet guys manage this plugin themselves so you should contact them. Cheers, Stéphane On 7/20/05, Ballard, Ken [EMAIL PROTECTED] wrote: Is this a bug in the Maven plugin for XDoclet (I'm using version 1.2.3)? When using

RE: A bug in the Maven plugin for XDoclet?

2005-07-20 Thread Ballard, Ken
Thanks, I'll post it to their list. -Original Message- From: Stephane Nicoll [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 10:24 AM To: Maven Users List Subject: Re: A bug in the Maven plugin for XDoclet? Ken, The maven plugin is just a wrapper around the ant task and the

[m2] Tasklist plugin converted: what should I do now?

2005-07-20 Thread fabrice . belingard
Hi guys! First of all, I'd like to congratulate the m2 team for the great work they've done, especially the various APIs (MOFO, reporting, doxia, ...etc) which are a pleasure to use to develop plugins. :o) To discover the m2-style plugin writing, I converted the tasklist plugin into a

Re: A bug in the Maven plugin for XDoclet?

2005-07-20 Thread Mick Knutson
I had the same exact isue, and I resolved this by creating an AbstractSLSB.java file that extended Springs Abstract Session bean class, then my XDoclet Bean extends that, and XDoclet was fine. public abstract class AbstractSLSB extends AbstractStatelessSessionBean { } /** * Bean

[maven 1.0.2] limiting the remote repo timeout?

2005-07-20 Thread Mick Knutson
I have an internal remote repository, and ibilblio as a secondary repo. I want to know how I can limit the timeout for my repo if the dependancy does not exist. Right now it seems like it is well over a minute. Thank You Mick Knutson Sr. Java/J2EE Consultant BASE logic, inc. (415) 648-1804

Re: [maven] jcoverage examples please?

2005-07-20 Thread Andy Glick
Mick Knutson wrote: Can you please show me your Maven cfg then for this please? From: Carlos Sanchez [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Subject: Re: [maven] jcoverage examples please? Date: Tue, 19 Jul 2005 16:18:23 -0700 Hi, I suggest

Re: [maven] jcoverage examples please?

2005-07-20 Thread Mick Knutson
OK, I ran it like you said in my maven multiproject:site-deploy as one of the report plugins. Now each of my 8 subprojects have 50 to 200 unit tests each. However, _ALL_ of the 8 Cobertura reports showed zero tests where run at all. So what am I missing to get Cobertura to see my unit tests

RE: Alternate build step

2005-07-20 Thread Marc Attiyeh
Reid - I would just define your own goal in the maven.xml file and call that. You can make it then call the checkstyle goal by using attainGoal or whatever else you want it to do. -marc -Original Message- From: Reid Pinchback [mailto:[EMAIL PROTECTED]

Re: Directory Structure conventions for multiprojects

2005-07-20 Thread Manny Nainu
I'm curious also to know if anyone from the Maven team can comment on Ken's project directory structure for Maven 2. We are in a similar predicament with Maven 2 with mutiple applications with multiple EARs. There doesn't seem to be enough depth on the

Re: Directory Structure conventions for multiprojects

2005-07-20 Thread Jesse McConnell
this is basically my goal at the moment in regards to m2 root/ root/core root/war1 - uses core, lib1 root/war2 - uses core, lib1, lib2 root/war3 root/ejb1 - uses lib1, core root/ejb2 - uses lib2, core root/lib1 root/lib2 root/ear1 - uses war1, war2, ejb1 root/ear2 - uses war3, ejb2 basically

Re: [maven] jcoverage examples please?

2005-07-20 Thread Scott Lamb
On Jul 20, 2005, at 2:42 PM, Mick Knutson wrote: Sorry, I mean that I get the Cobertura reports being generated, but it says that there are no tests, and 0% coverage on all of my projects. I've had this problem lately, too. It used to work, but one of the more recent snapshots broke it

Re: [m2] Assembly-plugin Manifest.mf

2005-07-20 Thread Brett Porter
On 7/20/05, J. Matthew Pryor [EMAIL PROTECTED] wrote: Obviously the assembly plugin suits my needs very well here, as it does all the work, but it also adds its own Manifest. I guess I saw an assembly simply as a 'superjar' but basically the same artifact as the project is meant to produce,

[m2] jsp syntax verification

2005-07-20 Thread John Fallows
Does the war plugin verify the syntax correctness of JSP pages / documents during the build? If not, would this be a reasonable enhancement request to the maven-war-plugin? Or perhaps it should have its own maven-jspc-plugin? Such JSP files are usually compiled-on-demand after deployment to the

Re: [m2] jsp syntax verification

2005-07-20 Thread Brett Porter
Since there is no standard JSPC, I would think that this belongs in a tomcat plugin. It would bind into the lifecycle to ensure the war plugin is handed the correct classes if the precompiled files are being included. - Brett On 7/21/05, John Fallows [EMAIL PROTECTED] wrote: Does the war plugin

Re: Alternate build step

2005-07-20 Thread Reid Pinchback
That sounds promising. This is probably going to sound like the dumbest newbie question in the world, but how do I do that? I suspect you're talking about setting up a goal in maven.xml. Not yet fully up to speed on the goal/namespace relationship in Maven, and I bet that is rather key to what

Re: Alternate build step

2005-07-20 Thread dan tran
correct add goal name=java:compile / to override the implementation of http://maven.apache.org/reference/plugins/java/goals.html to your maven.xml -D On 7/20/05, Reid Pinchback [EMAIL PROTECTED] wrote: That sounds promising. This is probably going to sound like the dumbest newbie

Re: [maven] jcoverage examples please?

2005-07-20 Thread Jamie Bisotti
Seems maven-cobertura-plugin 1.0 is not working; file a JIRA issue. I don't think it matters if you are using 1.0.2 or 1.1-beta. On 7/20/05, Scott Lamb [EMAIL PROTECTED] wrote: On Jul 20, 2005, at 2:42 PM, Mick Knutson wrote: Sorry, I mean that I get the Cobertura reports being generated,

Re: Alternate build step

2005-07-20 Thread Jamie Bisotti
What exactly do you want the site to consist of? Why not just do maven checkstyle xdoc? On 7/21/05, dan tran [EMAIL PROTECTED] wrote: correct add goal name=java:compile / to override the implementation of http://maven.apache.org/reference/plugins/java/goals.html to your

RE: [m2] Assembly-plugin Manifest.mf

2005-07-20 Thread J. Matthew Pryor
POM Data would work well for a fair bit of it, certainly Bundle-Classpath other stuff What would be the next steps? jmp -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Thursday, July 21, 2005 9:56 AM To: [EMAIL PROTECTED] Cc: Maven Users List Subject: Re: