GMaven 1.0 Released

2009-07-03 Thread Jason Dillon
Finally got around to pushing out a 1.0, not much has changed since the last RC. JIRA and the website are still in a state of disarray as the project moves out from under the groovy umbrella to the gmaven project at the 'haus. I will work on cleaning this up soon. --jaso

Re: maven-antrun-plugin: Java classes don't compile after an Ant task

2009-07-03 Thread Benson Margulies
Not obviously to me. fork defaults to false in ant 1.7.1, so I would have expected the same. On Fri, Jul 3, 2009 at 12:49 PM, clconway wrote: > > You are right. fork="true" in the Ant java task works too. But this was not > necessary in the original Ant build script. Is there an explanation in the

Re: maven-antrun-plugin: Java classes don't compile after an Ant task

2009-07-03 Thread clconway
You are right. fork="true" in the Ant java task works too. But this was not necessary in the original Ant build script. Is there an explanation in the documentation of why antrun behaves differently? -Chris bimargulies wrote: > > A simple fork=yes would have done the job. > > On Fri, Jul 3,

Re: maven-antrun-plugin: Java classes don't compile after an Ant task

2009-07-03 Thread Benson Margulies
A simple fork=yes would have done the job. On Fri, Jul 3, 2009 at 12:01 PM, clconway wrote: > > The problem seems to be that Rats! calls System.exit() (or similar), > terminating the JVM. I would have thought that Ant would wrap this (the java > task is copied over from a build.xml and it doesn't

Re: maven-antrun-plugin: Java classes don't compile after an Ant task

2009-07-03 Thread clconway
The problem seems to be that Rats! calls System.exit() (or similar), terminating the JVM. I would have thought that Ant would wrap this (the java task is copied over from a build.xml and it doesn't terminate the Ant build), but the following works by forcing the Rats! process into a separate JVM:

Re: run maven without tests

2009-07-03 Thread Stephen Connolly
-DskipTests is faster to type and will still compile the tests (catching compile errors) whereas -Dmaven.test.skip=true will skip compiling the tests as well as executing them. Usually you want to use -DskipTests 2009/7/3 hrbaer : > > > Lee Goddard wrote: >> >> >> It is in the FAQ list: >> >>

Re: about dependences between projects

2009-07-03 Thread dr_pompeii
Hello Wayne Sorry for me delay and Thanks for the reply Clear now the explanation Best Regards Wayne Fay wrote: > >> Even If I comment such dependence in the pom for the first project I >> receive >> again the error >> Can some member tell me why this difference? > > Dependencies can also

Re: automaticly deployment after mvn install

2009-07-03 Thread hrbaer
Florian Probst-4 wrote: > > Hi, > > you can use the "outputDirectory" of the maven-war-plugin this way to copy > the war file: > > > maven-war-plugin > > ewbk-web > > ${tomcat5.home}/webapps > > >

Re: Creating RPM package under Windows XP

2009-07-03 Thread Stevo Slavić
Here is the noarch explanation and hereare the docs for the distribution. Its good to know that it is feasible to build a rpm on windows. Did you document whole cygwin and packag

Re: How to skip integration tests

2009-07-03 Thread ben.lidgey
I can't get this to work. Looking in the code on the failsafe site (http://mojo.codehaus.org/failsafe-maven-plugin/xref/index.html) in both the IntegrationMojo and VerifyMojo classes shows parameters for the skipTests etc, but not one for skipITs. Has it been removed? In which case how can I skip

Re: Creating RPM package under Windows XP

2009-07-03 Thread Danny Schimke
I added the copyright- and distribution- tags to the configuration of the plugin and it worked. The missing copyright- tag was the reason for the error. The plugin created the RPM file under "RpmProject/target/rpm/RPMS/noarch" and named it "myrpmexampleRPM-1.0-SNAPSHOT20090703094450.noarch.rpm". N

Re: Creating RPM package under Windows XP

2009-07-03 Thread Danny Schimke
Hello! We tried using cygwin, but this was a pain. We had to install many other packages beside the rpmpackage, which are not delivered with cygwin by default, to get it to work. The aim is, to make it possible for a developer to create a RPM package without these difficult steps. We have agreed t

Re: maven error: can not create the java virtual machine

2009-07-03 Thread Heinrich Nirschl
2009/7/2 yuting lv : > then  changed my MAVEN_OPTS to this: "-Xms256m -Xmx256m" > user environment varialbe: > Path                                 %JAVA_HOME%\bin;%M2_HOME%\bin; > JAVA_HOME                 D:\Program Files\Java\jdk1.6.0_02 > M2_HOME                      D:\Program Files\apache-ma

Re: maven-changes-plugin 2.2

2009-07-03 Thread Olivier Lamy
Hi, Due to some legacy issues, some releases has been delayed. Now the build/release process can fix this but we have some parent poms to first. Thanks, -- Olivier 2009/7/3 : > Hi @all, > > we are using the maven2 changes-plugin in every of our projects via a parent > pom. When a release is don

Re: automaticly deployment after mvn install

2009-07-03 Thread Florian Probst
Hi, you can use the "outputDirectory" of the maven-war-plugin this way to copy the war file: maven-war-plugin ewbk-web ${tomcat5.home}/webapps > > Hi, > > I'm using maven (of course *g*) to build a w

Re: automaticly deployment after mvn install

2009-07-03 Thread Karl Heinz Marbaise
Hi, I'm using maven (of course *g*) to build a war-file. At the moment I have to copy this war-file manualy from my target-folder to the deployment-folder of my server. If you use JBoss or Tomcat e.g.: http://mojo.codehaus.org/jboss-maven-plugin/index.html http://mojo.codehaus.org/tomcat-maven-

automaticly deployment after mvn install

2009-07-03 Thread hrbaer
Hi, I'm using maven (of course *g*) to build a war-file. At the moment I have to copy this war-file manualy from my target-folder to the deployment-folder of my server. Is there a possibility to change this process into an automaticly one? Are there any plugins for eclipse or maven? Thanks in a

RE: run maven without tests

2009-07-03 Thread hrbaer
Lee Goddard wrote: > > > It is in the FAQ list: > > http://maven.apache.org/general.html#skip-test > > "How do I skip the tests? > "Add the parameter -Dmaven.test.skip=true in the command line > Thank you! -- View this message in context: http://www.nabble.com/run-maven-without-tests-

maven-changes-plugin 2.2

2009-07-03 Thread probst
Hi @all, we are using the maven2 changes-plugin in every of our projects via a parent pom. When a release is done, a email is automatically send to a group of people, but our problem ist that according to MCHANGES-143 the fromDeveloperId configurations is currently not working. So a hard coded

RE: run maven without tests

2009-07-03 Thread Lee Goddard
It is in the FAQ list: http://maven.apache.org/general.html#skip-test "How do I skip the tests? "Add the parameter -Dmaven.test.skip=true in the command line | I just wanted to know if there is a possibility to run the | mvn command without the tests. (Somethin similar to mvn | install -t

run maven without tests

2009-07-03 Thread hrbaer
Hi, I just wanted to know if there is a possibility to run the mvn command without the tests. (Somethin similar to mvn install -test) If it's suggestive doesn't matter ;) Thanks in advance. -- View this message in context: http://www.nabble.com/run-maven-without-tests-tp24319100p24319100.html

Possible regression using web resource filtering

2009-07-03 Thread Reinhard Nägele
Hello, I just added filtering to a web project as follows: org.apache.maven.plugins maven-war-plugin src/main/webapp/WEB-INF web.xml WEB-INF true

Re: Invalid final field ...DependencyInfo.dependency

2009-07-03 Thread Jörg Schaible
Hi, Jesfre wrote at Freitag, 3. Juli 2009 08:45: > Jörg Schaible-2 wrote: >> >> Jesfre wrote at Freitag, 3. Juli 2009 01:05: >> >>> >>> Hi everyone... >>> I have an error with this description... And I'm confused because I run >>> ">mvn clean install" with SUCCESSFUL result but when I try to ru

Re: How force Maven to compile each project/module even if there are no changes

2009-07-03 Thread Nafter
Hi Baptiste, Thanks for taking a look at the pom.xml. I do have my reasons for building the WAR using ANT. Normally I would use the required plugin for that, but since I have to hassle around a bit on the maven server with libraries I was forced to do it this way. But to be complete I indeed tri