Re: mvn release:perform does not honor //servers/server in alternate settings location

2010-04-21 Thread David Siefert
On Wed, Apr 21, 2010 at 1:42 PM, David Siefert wrote: > Hi All- > > I am trying to perform a maven release by invoking the following: > > mvn -B -s /my/alternate/maven2/home/settings.xml release:prepare > release:perform > > The problem that occurs is during the deploy of

mvn release:perform does not honor //servers/server in alternate settings location

2010-04-21 Thread David Siefert
Hi All- I am trying to perform a maven release by invoking the following: mvn -B -s /my/alternate/maven2/home/settings.xml release:prepare release:perform The problem that occurs is during the deploy of the release artifact, it seems it is not picking up the username/password in /my/alternate/ma

Re: creating eclipse project from ejb maven project

2009-12-07 Thread David Siefert
Solved it with the help of a coworker. Need to add the following nature: com.genuitec.eclipse.j2eedt.core.ejbnature to the maven-eclipse-plugin configuration. Thanks, David From: David Siefert To: users@maven.apache.org Sent: Mon, December 7, 2009 1:53

creating eclipse project from ejb maven project

2009-12-07 Thread David Siefert
Hi All- I have a Maven2 POM and need to generate an Eclipse (specifically MyEclipse) IDE project. The POM specifies an EJB project (project.packaging: "ejb") but it seems that MyEclipse is loading it as a Java Project (not recognized as a JAR that can be deployed to an application server). An

Re: running a single integration test during integration-test-phase

2008-02-25 Thread David Siefert
On Thu, Feb 21, 2008 at 12:26 PM, David Siefert < [EMAIL PROTECTED]> wrote: > Hello, > > Is there a way to configure a POM to run a single test during the > integration-test-phase via command line? > > ie, > > mvn verify -Dtest=MyIntegrationTest > > That way

Re: running a single integration test during integration-test-phase

2008-02-22 Thread David Siefert
.plugins >maven-surefire-plugin > > MyIntegrationTest > > > > > [...] > > > > Jeff > > On Thu, Feb 21, 2008 at 6:26 PM, David Siefert < > [EMAIL PROTECTED]> wrote: > > > Hello, > > > > Is there a

running a single integration test during integration-test-phase

2008-02-21 Thread David Siefert
Hello, Is there a way to configure a POM to run a single test during the integration-test-phase via command line? ie, mvn verify -Dtest=MyIntegrationTest That way I can do the necessary build work in pre-integration-test to prepare to run the integration-test phase. Thanks, David

Re: Maven Invoker Plugin help

2008-02-20 Thread David Siefert
rganize execution of the maven-invoker-plugin. > Look at the pom and the profile called integration-tests. > But IMHO the maven-invoker-plugin is for maven plugins not for jar > artifacts. > > -- > Olivier > |1] https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jar-plu

Re: Maven Invoker Plugin help

2008-02-04 Thread David Siefert
port this > (line starting with : ...FAILED) > > If not we have an issue here in the invoker plugin. > > -- > Olivier > > 2008/2/1, David Siefert <[EMAIL PROTECTED]>: > > Thank you very much Olivier, I am now able to invoke the integration > test > > projec

Re: Maven Invoker Plugin help

2008-02-03 Thread David Siefert
gt; -- > Olivier > > 2008/2/1, David Siefert <[EMAIL PROTECTED]>: > > Thank you very much Olivier, I am now able to invoke the integration > test > > projects from my main project just like the maven-jar-plugin does. I > have > > another issue: a beanshell scrip

Re: Maven Invoker Plugin help

2008-02-01 Thread David Siefert
maven-invoker-plugin. > Look at the pom and the profile called integration-tests. > But IMHO the maven-invoker-plugin is for maven plugins not for jar > artifacts. > > -- > Olivier > |1] https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jar-plugin/ > > 2008/1

Re: howto include library for defined task in antrun-plugin?

2008-01-23 Thread David Siefert
You should also check out the example source code provided in the book 'SOA using Java Web Services' by Mark Hansen (http://soabook.com). I used the Maven+Ant build scripts as a basis for generating web service clients and contract-based service generation using the JBoss wstools script (which alr

Maven Invoker Plugin help

2008-01-23 Thread David Siefert
Hi, I am trying to get my integration tests to run as part of the main project build using the maven-invoker-plugin. However it is impossible (at least without some hacking) to have the IT projects run because of the maven build lifecycle. compile package <-- JAR created integration-test <-- in