RE: [M2] Surefire

2005-11-14 Thread Mark Kuzmycz
] Sent: Sunday, November 13, 2005 6:56 PM To: Maven Users List Subject: Re: [M2] Surefire The classloader is isolated, so only the project dependencies are included. There is an open jira issue to include the system classpath. - Brett On 11/13/05, Mark Kuzmycz [EMAIL PROTECTED] wrote: Before I

RE: [M2] Surefire

2005-11-13 Thread Mark Kuzmycz
] Surefire On Sat, 12 Nov 2005, Mark Kuzmycz wrote: Looks like spring is expecting a different SAXParser. Too bad the exception doesn't show more. Maybe you need to include xerces as a dependency? -- Kenney I have a test that involves springs ContextSingletonBeanFactoryLocator. The test runs

RE: My own checkstyle properties

2005-11-04 Thread Mark Kuzmycz
The checkstyle plugin currently does not support custom formats. Several defects have been logged against this limitation. http://jira.codehaus.org/browse/MNG-1113 http://jira.codehaus.org/browse/MNG-587 Regards, Mark. -Original Message- From: Duane Homick [mailto:[EMAIL PROTECTED]

RE: [M2] checkstyle

2005-10-24 Thread Mark Kuzmycz
the propertiesFile is ignored so you'll have to put up with the default for a while until they fix this, or apply the patch yourself. http://jira.codehaus.org/browse/MNG-1113 Kind regards, Dave Sag Mark Kuzmycz [EMAIL PROTECTED] wrote on 22/10/2005 07:24:03 PM: How do I specify

[M2] checkstyle

2005-10-22 Thread Mark Kuzmycz
How do I specify a customized checkstyle format. The source code for the checkstyle report suggests that it only knows about sun, turbine and avalon. Regards, Mark. ___ Siebel IT'S ALL ABOUT THE CUSTOMER Visit www.siebel.com This e-mail message is for the sole use of the intended

[m2] Controlling Bloat

2005-10-21 Thread Mark Kuzmycz
Transitive dependencies are very useful as it enable you to specify the direct dependencies for the project and maven handles the dependencies of the dependencies and so on. However, if the product of a project is a war or ear then this can lead to an increased artifact size due to the transient

RE: [m2] Controlling Bloat

2005-10-21 Thread Mark Kuzmycz
Secondly, the project you depend on could make some of their dependencies optional so that you don't have to manually exclude them. As time goes by, more of the pom's in the central repository will get optionaltrue/optional set on the correct dependencies. -Stephen On 10/21/05, Mark Kuzmycz [EMAIL

RE: [m2]versioning

2005-10-18 Thread Mark Kuzmycz
All you would need to do is version the pom.xml in source control. There is no need to create a different pom.xml for each version. Just follow your usual process: make changes and label the release (including the pom). Reproducing a release for a previous version should be straight forward. I

RE: [m2] NoSuchMethodError exception when executing site:site

2005-10-17 Thread Mark Kuzmycz
Brett Porter had this to say about the error There was a required update to the reporting API. Compatible plugins will be republished in the near future. If you are able to rebuild the plugin from SVN that should work as is. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[M2] Clover Report plugin

2005-10-16 Thread Mark Kuzmycz
I am currently testing M2 RC and I get the following error. The error is linked to the clover report plugin. Is there a configuration problem or is this a defect with the plugin? Regards, Mark. [INFO] [resources:testResources] [INFO] Using default encoding to copy filtered resources. [DEBUG]

[m2] site plugin

2005-10-05 Thread Mark Kuzmycz
I have the following layout src |- site |-xdoc | |-folder1 | |-folder2 |-resources |-images |-logo.gif In site.xml I have the dollowing XML fragment bannerRightsrcimages/logo.gif/src /bannerRight

RE: [m2] site plugin

2005-10-05 Thread Mark Kuzmycz
S orry about that I accident sent the message out early: I have the following layout src |- site |-xdoc | |-folder1 | |-folder2 |-resources |-images |-logo.gif In site.xml I have the dollowing XML fragment bannerRight

Re: [m2] Multiproject site generation

2005-10-02 Thread Mark Kuzmycz
This is a releated question. I have multiple levels of nested projects and the site goal is traversing the structure well. What I would like is for each parent in the site structure to contain a list of its sub-projects for navigation (similar to maven 1.x). Regards, Mark. ___