Re: Starting a server in the background - SOLVED

2003-07-24 Thread Ben Walding
Feel free to add to this to the wiki http://wiki.codehaus.org/maven/MailingListSupport Jefferson K. French wrote: I figured out how to do this, and want to pass along what I learned in case anyone else has the same question. According to several Ant resources I read, you cannot yet do this with An

Re: Starting a server in the background - SOLVED

2003-07-24 Thread Jefferson K. French
I figured out how to do this, and want to pass along what I learned in case anyone else has the same question. According to several Ant resources I read, you cannot yet do this with Ant tags, although it is frequently requested. Luckily Maven uses Jelly, where it is easy. You can simply do this:

Re: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Ben Walding
Andy Jefferson wrote: On Fri, 2003-07-25 at 01:59, Ben Walding wrote: It's always worth forking java whenever you get a message about a class not found in the xml packages. That's as maybe, but as I said in a previous response in this thread ... I've tried that and it doesnt work :-( Y

Re: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Andy Jefferson
On Fri, 2003-07-25 at 01:59, Ben Walding wrote: > It's always worth forking java whenever you get a message about a class > not found in the xml packages. That's as maybe, but as I said in a previous response in this thread ... I've tried that and it doesnt work :-( -- Andy ---

Re: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Ben Walding
It's always worth forking java whenever you get a message about a class not found in the xml packages. Andy Jefferson wrote: After investigating further I have set up an Ant build.xml and the following runs *correctly* in Ant Yet the Maven translated version JDO-en

Re: beta 10 on win2k

2003-07-24 Thread dion
Nope, they're pretty much the same. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Sonnek, Ryan" <[EMAIL PROTECTED]> wrote on 24/07/2003 11:57:46 PM: > Has anyone out there had issues with beta 10 on win2k picking up properties > files? I've just g

RE: Revisiting Sending email with Maven

2003-07-24 Thread Brett Porter
That should have been http://maven.apache.org/reference/user-guide.html#maven.xml Google in the sidebar is your friend :) > -Original Message- > From: Brett Porter > Sent: Friday, 25 July 2003 9:50 AM > To: 'Maven Users List' > Subject: RE: Revisiting Sending email with Maven > > > I'

RE: Revisiting Sending email with Maven

2003-07-24 Thread Brett Porter
I'd point you to the "developers guide" but my proxy server just died and I can't see the site :( Look for Jelly scripting on the maven site. But the extra bit in maven.xml you need is: ... Rest as before ... Cheers, Brett -- Brett Porter Team Leader, Core Systems f2 network ~ everything essen

Re: Revisiting Sending email with Maven

2003-07-24 Thread K.C. Baltz
I'm sorry, but I'm pretty new to Maven. I can't even find a maven.xml file to add this to, and when I created one and placed this in it, Maven complained about "The prefix "j" for element "j:if" is not bound." Can you give me a little more direction? I really appreciate the help so far. K.

RE: Revisiting Sending email with Maven

2003-07-24 Thread Brett Porter
Hi, I've been meaning to clean this up and add it for a while, but here is the idea. Maybe I'll add a wiki page in the meantime. The main obstacle at the moment is obtaining overview-summary.xsl from somewhere that it can be included in Maven. The one I use comes from one of the various ant tutori

RE: Maven b10 refusing to download remote jars

2003-07-24 Thread Dominik Dahlem
I had the same problem. I got away with it, if I cleaned the plugins directory in ${user.home}/.maven/plugins as well. I discovered that as soon as plugins are processed they won't redownload the dependencies, if they don't exist anymore in the local repository. By the way, I always keep common

Revisiting Sending email with Maven

2003-07-24 Thread K.C. Baltz
Looking through the archives, I saw a discussion at the beginning of the month on how to send an email when the Tests fail. I have a need for that and I was curious what if any progress had been made. Someone had mentioned "postgoals". I'm fairly new to Maven and don't recall seeing those in

Maven b10 refusing to download remote jars

2003-07-24 Thread Christopher Ginn
Hi all, I'm using b10, and maven refuses to download the remote jars necessary to do anything (in particular the commons-jelly and antlr jars) on my Win2k box. I've tried the following steps: 1. Clearing all the environment variables and resetting them. 2. Passing the maven.repo.* properties

RE: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Andy Jefferson
After investigating further I have set up an Ant build.xml and the following runs *correctly* in Ant Yet the Maven translated version JDO-enabling classes Classes are now JDO-enabled fails with that "NoClassDefFoundError : org/w3c/dom/Docum

Re: Support for Custom Checkstyle Checks

2003-07-24 Thread Ben Walding
1. We get notified 2. You can do whatever you want and submit whatever you want (within reason!) 3. Most of us are fairly busy, so your patch might not be looked at for a while, but I trawl through occasionally looking for small patches. You can ping the dev list if you think it's been a while a

Re: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Ben Walding
maven.junit.fork=true is probably a better bet. Andy Jefferson wrote: On Thu, 2003-07-24 at 11:46, Dominik Dahlem wrote: I had this problem with JUnit. I forked the JVM and everything worked as expected (maven.compile.fork=yes). No difference using that flag - still get the error. Thx an

Re: beta 10 on win2k

2003-07-24 Thread __matthewHawthorne
In win2k, I've been able to load properties from: \project.properties C:\Documents and Settings\\build.properties On Thu, 2003-07-24 at 06:57, Sonnek, Ryan wrote: > Has anyone out there had issues with beta 10 on win2k picking up properties > files? I've just gone through and updated all of

beta 10 on win2k

2003-07-24 Thread Sonnek, Ryan
Has anyone out there had issues with beta 10 on win2k picking up properties files? I've just gone through and updated all of our developers from beta 9 to beta 10, and there were five pc's running win2k that wouldn't pick up ~/build.properties. it also wouldn't pick up PROJECT_HOME/build.properti

Support for Custom Checkstyle Checks

2003-07-24 Thread Simon Matic Langford
Hi, I've put a patch into JIRA to support user specified custom checkstyle checks. Do I need to tell people I've put something in, or do the committers get automatically notified? Should I ask before doing something, and should I be posting this on the developers mailing list? simon The informat

RE: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Andy Jefferson
On Thu, 2003-07-24 at 11:46, Dominik Dahlem wrote: > I had this problem with JUnit. I forked the JVM and everything worked > as expected (maven.compile.fork=yes). No difference using that flag - still get the error. Thx anyway. -- Andy ---

Re: Jmeter/Maven integration

2003-07-24 Thread dion
This question should be directed to [EMAIL PROTECTED] -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Rafal Krzewski <[EMAIL PROTECTED]> wrote on 24/07/2003 08:29:37 PM: > [EMAIL PROTECTED] wrote: > > LGPL jars and GPL jars are not allowed to be distribute

Re: the POM and JSR 198

2003-07-24 Thread Jason van Zyl
On Thu, 2003-07-24 at 00:51, Alwyn Schoeman wrote: > Sorry, I meant the rats ass part, but some of his other 'choice' > emails will probably be better evidence... Oh, there's most definitely some Boer in me. Fortunately that aspect is mitigated by having an English mother :-) -- jvz. Jason van

RE: NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Dominik Dahlem
I had this problem with JUnit. I forked the JVM and everything worked as expected (maven.compile.fork=yes). Hope this helps. Dominik -Original Message- From: Andy Jefferson [mailto:[EMAIL PROTECTED] Sent: 24 July 2003 10:56 To: Maven Users List Subject: NoClassDefFoundError : org/w3c/do

Re: Jmeter/Maven integration

2003-07-24 Thread Rafal Krzewski
[EMAIL PROTECTED] wrote: > LGPL jars and GPL jars are not allowed to be distributed by ASF projects. But it's the ibiblio.org who is storing distributing jars for us, and AFAIK they have no problem with GPL/LGPL. The real question IMO is: Is code that depends on (uses) GPL/LGPL libraries allowed t

RE: Jmeter/Maven integration

2003-07-24 Thread Simon Matic Langford
what licences are? The information contained in this e-mail is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If You are not the intended recipient of this e-mail, the use of this information or any disclosure, copying or di

NoClassDefFoundError : org/w3c/dom/Document

2003-07-24 Thread Andy Jefferson
Hi, I'm trying to add a postGoal to java:compile to run a JDO-enhancer to some classes. In maven.xml I run xdoclet:jdodoclet as a preGoal. This runs fine and generates the necessary .jdo files. It then compiles, and then in my postGoal I try to run a java command - and get java.lang.NoClassDefFou

Re: sun.misc.InvalidJarIndexException: Invalid index!

2003-07-24 Thread Keld Mikkelsen
This level: jsp>java -version java version "1.3.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0) Classic VM (build 1.3.0, J2RE 1.3.0 IBM build cn130-20020124 (JIT enabled: jitc) ) /Keld Mikkelsen

RE: Jmeter/Maven integration

2003-07-24 Thread dion
LGPL jars and GPL jars are not allowed to be distributed by ASF projects. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Simon Matic Langford" <[EMAIL PROTECTED]> wrote on 24/07/2003 06:24:41 PM: > this is probably off topic... but, what is wrong with G

RE: Jmeter/Maven integration

2003-07-24 Thread Simon Matic Langford
this is probably off topic... but, what is wrong with GPL/LGPL licences? The information contained in this e-mail is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If You are not the intended recipient of this e-mail, the us

Re: master property file

2003-07-24 Thread Rafal Krzewski
Dominik Dahlem wrote: > This master project property file can be kept in source > control and provides a single location for settings shared > among sub-projects. Imagine you have 50 sub-projects and each > of them contains a project properties file with settings > which could well be shared. It's

Re: sun.misc.InvalidJarIndexException: Invalid index!

2003-07-24 Thread dion
What JDK Level are you on? it looks to me like a bad Maven.jar. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Keld Mikkelsen" <[EMAIL PROTECTED]> wrote on 24/07/2003 05:18:55 PM: > > Do you have any suggestions on tracking this? > > I am trying

RE: master property file

2003-07-24 Thread Brett Porter
As I mentioned, I think this is already proposed under bugs in JIRA. -- Brett Porter Team Leader, Core Systems f2 network ~ everything essential > -Original Message- > From: Dominik Dahlem [mailto:[EMAIL PROTECTED] > Sent: Thursday, 24 July 2003 6:03 PM > To: 'Maven Users List' > Subjec

RE: master property file

2003-07-24 Thread Dominik Dahlem
In my opinion, a build.properties file with user settings should be in ${user.home}/.maven/ as Brett pointed out. However, on another level I'd like to share project-specific settings as well in a similar fashion to the extension mechanism of the project.xml file. The settings which are project-

Re: sun.misc.InvalidJarIndexException: Invalid index!

2003-07-24 Thread Keld Mikkelsen
Do you have any suggestions on tracking this? I am trying to get maven up and running as an replacement of our current ant script. The ant script work OK, but I would like us to get into a better environment such as maven. Regards, Keld Mikkelsen |-+-

Starting a server in the background

2003-07-24 Thread Jefferson K. French
In trying to learn Maven, I'm converting from a current Ant build. At one point I need to run a server in the background, but I can't figure out how to do it. Our Ant test target has lines roughly like this: I was thinking the start and stop server target

RE: Jmeter/Maven integration

2003-07-24 Thread dion
bummer -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Jim Alateras" <[EMAIL PROTECTED]> wrote on 24/07/2003 05:23:32 PM: > JFreeChart is licensed GPL/LGPL http://sourceforge.net/projects/jfreechart/ > > > -Original Message- > > From: Rafal Krze

RE: Jmeter/Maven integration

2003-07-24 Thread Jim Alateras
JFreeChart is licensed GPL/LGPL http://sourceforge.net/projects/jfreechart/ > -Original Message- > From: Rafal Krzewski [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 24, 2003 5:13 PM > To: Maven Users List > Subject: Re: Jmeter/Maven integration > > > [EMAIL PROTECTED] wrote: > > Sieg

Re: Jmeter/Maven integration

2003-07-24 Thread Rafal Krzewski
[EMAIL PROTECTED] wrote: > Siegfried, > > that's a good idea. Do u have any experience with it? I'd love to be able > to easily generate charts etc from raw data via maven. There is a library called JFreeChart that is able of drawing all sorts of funky graphs, charts and diagrams. I believe it i

Re: Sources for .jars

2003-07-24 Thread Mirko Novakovic
I've created a feature request MAVEN-606... [EMAIL PROTECTED] wrote: It would be nice to have a -src.jar available in the repository, but I don't believe anyone's raised it as a request. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ "Mirko Novakovic" <[