Recursive filter

2009-02-15 Thread Costin Caraivan
Hello, I'm trying to extract some files from a folder structure. However, this does not work: ${basedir}/src/main/java **/*.java Basically, from a struc

Re: Prevent a build

2009-02-15 Thread Paul Benedict
You can deploy auxiliary artifacts by including their generation before the phase: mvn source:jar deploy Paul On Wed, Feb 11, 2009 at 9:07 AM, Mansour wrote: > thank you Paul. But how do I deploy it then? If I deploy, it will > recompile and rebuild the whole thing then deploy it to remote repo

Re: mvn tomcat:deploy: Out of Memory Error

2009-02-15 Thread Paul Benedict
Perhaps you're running out of memory seriously. Set the MAVEN_OPTS environment variable to something larger than 64M (the default) and try again. Example: set MAVEN_OPTS=-Xms64m -Xmx90m Paul On Sun, Feb 15, 2009 at 10:19 PM, Ole Ersoy wrote: > Hi, > > I get the following when running (On li

mvn tomcat:deploy: Out of Memory Error

2009-02-15 Thread Ole Ersoy
Hi, I get the following when running (On linux) mvn tomcat:deploy [ERROR] FATAL ERROR [INFO] [INFO] Java heap space [INFO] [INFO] Trace java.lang.OutO

Re: maven release plugin with git-svn?

2009-02-15 Thread Mark Derricutt
Hrm I'll give it a go. But all these examples I see are pure git, not git-svn. Time to convince $work to go all git then :) ...and then Buffy staked Edward. The End. On Mon, Feb 16, 2009 at 1:01 AM, Don Brown wrote: > Nah, it works great. I wrote about it last year [1] and since then, > sc

Re: Multi module site deploy using file

2009-02-15 Thread Mick Knutson
here is what I use: *file:///*/var/www/html/site/${pom.version} there are 3 forward slashes before my root /var directory --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring & Agile Consulting p. (866) BLiNC-411: (254-6241-1) f. (415) 685-4233 We

help with jdbc and dbunit server mapping

2009-02-15 Thread Mick Knutson
I am looking at this as a solution to externalize my db username and password: http://mojo.codehaus.org/dbunit-maven-plugin/examples/settings.html But my issue is that, in my unit tests, I use dbunit and this seems that it will map just fine, but when I run integration tests, I use a filtered jdbc

Re: Multi module site deploy using file

2009-02-15 Thread Dennis Lundberg
Randall Fidler wrote: > Hello, > > > > I have a multi-module project that seemed to deploy fine > with SCP but not with FILE. Inside settings.xml I've got a var which > points to the local directory where the site files should be deployed to > and things work fine for the parent bu

Re: Running Groovy scripts with project's compile classpath

2009-02-15 Thread Torben S. Giesselmann
Hi there -- has nobody *ever* tried this? :-/ Regards, - Torben Torben S. Giesselmann wrote: Hi there, I'm trying to post-process some classes of my project using a Groovy script. During the process-classes phase, I'm executing a Groovy script using gmaven-plugin (1.0-rc-4). However, loa

eclipse ide not picking up profiles.xml

2009-02-15 Thread Mick Knutson
When I run my build on the command line, the profiles.xml is picked up fine, but when I run this through eclipse 3.4.1, the properties in my profiles.xml are not present. Any ideas? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring & Agile Consult

eclipse ide not picking up profiles.xml

2009-02-15 Thread Mick Knutson
When I run my build on the command line, the profiles.xml is picked up fine, but when I run this through eclipse 3.4.1, the properties in my profiles.xml are not present. Any ideas? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring & Agile Consult

Re: maven release plugin with git-svn?

2009-02-15 Thread Don Brown
Nah, it works great. I wrote about it last year [1] and since then, scm has released 1.1, which removes the need for my db release. Been using it since in several projects without issues. Don [1] http://www.jroller.com/mrdon/entry/maven_enabled_project_hosting_with On Sun, Feb 15, 2009 at 6:20

How to define analysis bundle plugin

2009-02-15 Thread Dumbo
Hi, I'm looking for some way of bundling a few code analysis tools into one plugin for easy management across projects. For now the only way seems to be configuration in a parent pom, but updating becomes a hassle when a new plugin is added to the bundle. The bundle could well be included in a pa