RE: [ANNOUNCE] JCoverage Plugin

2003-12-18 Thread Erdfelt, Joakim
> So how does the JCoverage report compare to the clover report? Here's some live on-line examples for you to check out. Jcoverage Stand Alone report : http://pbsaccounting.sourceforge.net/devel/report/ Report (as generated from maven): http://db.apache.org/torque/jcoverage/ http://j

RE: maven site : "Too many open files"

2003-12-04 Thread Erdfelt, Joakim
> > From: Nicolas De Loof [mailto:[EMAIL PROTECTED] > > Sent: 04 December 2003 14:09 > > > > That works ! > > > > I just had to disable linkcheck because I got OutOfMemory. > > > > thanks. > > > > Nico. > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 04, 2003 9:1

RE: Solution?

2003-12-04 Thread Erdfelt, Joakim
> From: Francois Beauregard [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 04, 2003 8:20 AM > > Thanks, is there an example of a Maven script that uses > velocity or JSL to > do this kind of substitution somewhere that I can look at. > > Thanks, > François Assume you have a file in your

RE: [VOTE] The Maven Logo

2003-11-25 Thread Erdfelt, Joakim
> A runoff between the top 2 vote getters listed at > http://projects.walding.com/powered/ > > propaganda or feather? +1 feather It could only offend poultry or head-dress makers. /* Joakim */

RE: too many files open; goal maven-jxr-plugin:report

2003-11-19 Thread Erdfelt, Joakim
I get this too. (project with over 4,100 files). After an investigation, (truss on solaris and such), we found that many plugins (or it could be the JVM's fault) don't free up their file handles, and we exhaust our ulimit of 1024 open FD. JXR opens a ton of files. So does other plugins. We solved

RE: High ASCII in java code not compiling under Maven

2003-11-06 Thread Erdfelt, Joakim
> switch( chr) { >case 'à': buf.append("à"); break; > > When I try to run my maven build goal, it will not compile > this utility class, and I get a whole bunch of errors to > the effect: >case '?' already defined > > If I run javac, no problemo. Compiles just fine. I played >

pmd plugin and custom rules

2003-11-06 Thread Erdfelt, Joakim
I have a set of custom pmd rules. It consists of 2 parts. 1) a custom ruleset-foo.xml 2) a jar file containing the implementation of those rules. (AbstractRule classes). Using the maven-pmd-plugin, how do I get my custom jar file into it's classpath? Using the often talked about hack of ${pom.ge

RE: "src/java" or "src/main/java" ?

2003-10-30 Thread Erdfelt, Joakim
> > Of course this only applies to unit tests. Integration tests and > > acceptance tests are another story. > > Sound argument. Are you suggesting then that a distinction be made > between unit, integeration, and acceptence tests in the project > directory structure? I've been following this thr

RE: JAR Repository and File Names

2003-10-27 Thread Erdfelt, Joakim
> -Original Message- > From: Kyle Adams [mailto:[EMAIL PROTECTED] > Sent: Monday, October 27, 2003 3:30 PM > To: [EMAIL PROTECTED] > Subject: RE: JAR Repository and File Names > > > > 1) Not using the 'applications' directory for deployment. > > Even though we still put stuff in an appli

RE: JAR Repository and File Names

2003-10-27 Thread Erdfelt, Joakim
> -Original Message- > From: Kyle Adams [mailto:[EMAIL PROTECTED] > Sent: Monday, October 27, 2003 1:56 PM > To: [EMAIL PROTECTED] > Subject: Re: JAR Repository and File Names > > Whether or not WebLogic gets "confused" is a matter of > opinion. When an EJB (or WAR or EAR or whatever) is

preReqs for maven-jalopy-plugin

2003-10-17 Thread Erdfelt, Joakim
Why is there a preReq for the maven-jalopy-plugin to perform a java:compile before running jalopy on the source files? I find this annoying when attempting to debug stuff. As the line numbers are all off in this situation. The project I'm working on has many, many, many (did I say many yet?) gen