Dependancy failure when building ear file

2010-09-18 Thread Jon Paynter
Hi -- ive been tasked with looking to see if maven will work to replace our current ant build. Since our company makes extensive use of j2ee and OC4J components, that was one of the first thigns I tackled after getting some basic modules to compile. In keeping with our existing ant build

Using scm:svn for the Maven site in maven-site-plugin-3.x

2010-09-18 Thread Andrew Phillips
Hi The following is about a potential issue with the maven-site-plugin-3.x branch. I'm not sure if this is the most appropriate forum but I hope someone will be able to point me in the right direction, e.g. by suggesting to turn this into a JIRA issue. The question is: does the 3.x branch of

Re: Using scm:svn for the Maven site in maven-site-plugin-3.x

2010-09-18 Thread Olivier Lamy
Hi, Have you try adding scm (svn) dependencies to the site plugin declaration ? btw please load an issue we could add this in the site plugin pom. Thanks, -- Olivier 2010/9/17 Andrew Phillips demob...@yahoo.co.uk: Hi The following is about a potential issue with the maven-site-plugin-3.x

Re: Dependancy failure when building ear file

2010-09-18 Thread Stephane Nicoll
It should work but your project's version should be something like 1.0-SNAPSHOT, not 1.0. That being said, it could be a thing as simple as a typo so posting your project somewhere would help. S. On Fri, Sep 17, 2010 at 11:46 PM, Jon Paynter kittl...@gmail.com wrote: Hi -- ive been tasked

mvn execution from browser

2010-09-18 Thread Sridhar Laxmipuram Srinivasan
Hi, I am trying to execute java maven command thru a php script from browser Php script: ?php print body bgcolor=black font color=white; system(/home/y/bin/mvn -o -f /home/y/share/htdocs/ugc_cloud_qa/pom.xml clean); print /font; ? But I always get error like : NOTE: Maven is executing in

Re: Fatal Error in Maven release plugin: java.lang.NoClassDefFoundError: org/jaxen/NamespaceContext

2010-09-18 Thread Olivier Lamy
what is the maven version ? mvn -v. file:/usr/share/maven2/lib/maven-debian-uber.jar ? This remember to me an issue with maven 2.0.x . Can you try upgrading to 2.2.1 or last 3 beta ? Thanks 2010/9/16 Jan Torben Heuer jan_key67...@jtheuer.de: Hi, Any idea what could be the cause of this

Re: mvn execution from browser

2010-09-18 Thread Justin Edelson
This error looks pretty straight forward. What exactly are you looking for help with? Justin On 9/18/10 10:29 AM, Sridhar Laxmipuram Srinivasan wrote: Hi, I am trying to execute java maven command thru a php script from browser Php script: ?php print body bgcolor=black font

Re: mvn execution from browser

2010-09-18 Thread Manos Batsis
On 09/18/2010 05:29 PM, Sridhar Laxmipuram Srinivasan wrote: Hi, I am trying to execute java maven command thru a php script from browser Php script: ?php print body bgcolor=black font color=white; system(/home/y/bin/mvn -o -f /home/y/share/htdocs/ugc_cloud_qa/pom.xml clean); print /font; ?

[ANN] Maven EJB Plugin 2.3 Released

2010-09-18 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven EJB Plugin, version 2.3 This plugin generates J2EE Enterprise Javabean (EJB) file as well as the associated client jar. http://maven.apache.org/plugins/maven-ejb-plugin/ You should specify the version in your project's plugin

Re: Maven dependency library versioning issue

2010-09-18 Thread Kalpak Gadre
Check the groupId in the exclusion, you have specified it as org.apache.poi before version 3.0 it use to be only poi so your exclusion should look like, exclusions exclusion groupIdpoi/groupId artifactIdpoi/artifactId /exclusion /exclusions 2010/9/17 Pradnya

RE: mvn execution from browser

2010-09-18 Thread Sridhar Laxmipuram Srinivasan
Actually I want to execute maven from a browser, that's is the reason I am invoking mvn hru a system command from a php script. php script can be executed either from shell terminal on linux or from browser Executing the php script from the terminal, mvn execution happens perfectly.