Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-11 Thread Mohammad Nour El-Din
Thanks for clarification :) On Wed, Jun 11, 2008 at 8:57 PM, Dain Sundstrom <[EMAIL PROTECTED]> wrote: > This would only be needed if the build fails (and it is only for the maven > process). The problem is we generate and compile a large number of classes, > and the plugin is using javac which i

Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-11 Thread Dain Sundstrom
This would only be needed if the build fails (and it is only for the maven process). The problem is we generate and compile a large number of classes, and the plugin is using javac which isn't very efficient memory wise. When I get a chance, I'll update the plugin to optionally support th

Re: Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-11 Thread Mohammad Nour El-Din
I don't unserstand why we should increase the Java Heap size ? On Wed, Jun 11, 2008 at 10:39 AM, <[EMAIL PROTECTED]> wrote: > Hi -dain > > the last build error I mailed in, > was what it said it was, increasing the JAVA heap did the trick. > I successfully compiled openejb3 ... > > mit freundlich

Antwort: Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-11 Thread Wolfgang . Schrecker
Hi -dain the last build error I mailed in, was what it said it was, increasing the JAVA heap did the trick. I successfully compiled openejb3 ... mit freundlichen Grüßen/best regards Wolfgang Schrecker "Der Inhalt eines Begriffs nimmt ab, wenn sein Umfang zunimmt; wird dieser allumfassend, so mu

Antwort: Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-11 Thread Wolfgang . Schrecker
Hi dain, after this and the one change below (after the maven output), sxc comiles fine into my archiva maven repository. But compiling openejb3/container/openejb-jee ( remember thats where I started), now breaks with [INFO] [sxc-jaxb:generate {execution: default}] The syste

Re: Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-10 Thread Dain Sundstrom
Excellent. I applied the patch and published a new snapshot. Let me know if you have any more problems, and thank you for the patch. -dain On Jun 10, 2008, at 12:44 AM, [EMAIL PROTECTED] wrote: Here is the source with my tiny change in bold face: -

Antwort: Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-10 Thread Wolfgang . Schrecker
Here is the source with my tiny change in bold face: -- package com.envoisolutions.sxc.jaxb.maven; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import java.net.UR

Re: Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-09 Thread Dain Sundstrom
I wrote the plugin. Do you have a stack trace (use -e or -X to generate)? That will help me narrow down the problem. Thanks, -dain On Jun 9, 2008, at 6:16 AM, [EMAIL PROTECTED] wrote: That was a quick answer ! Thanks ! I think you 're right: it is a problem with spaces, and the solution

Antwort: Re: Re: maven build of openEJB3 [Virus checked]

2008-06-09 Thread Wolfgang . Schrecker
That was a quick answer ! Thanks ! I think you 're right: it is a problem with spaces, and the solution should not be complicated, change: (new File(directory)).toURL() to: (new File(directory)).toURI().toURL() in the maven plugin com.envoisolutions.sxc.jabc.maven.SxJaxbPlugin if you have the s