[ANN] Apache Tomcat Maven Plugin 2.0-beta-1 Released

2012-02-02 Thread Olivier Lamy
Hello, The Apache Tomcat team is pleased to announce the release of Tomcat Maven Plugin 2.0-beta-1. The Apache Tomcat Maven Plugin provides goals to manipulate WAR projects within the Apache Tomcat servlet container. Documentation site: http://tomcat.apache.org/maven-plugin-2.0-beta-1/ You should

Deploying to dav repo behind a proxy

2012-02-02 Thread Julien HENRY
Hi, Does someone have a working configuration for deploying artifacts to a dav repository from behind a proxy with Maven 2.2.1 AND Maven 3.0.x? Currently I only managed to have something working with Maven 3.0.x but I still have the polluting message: SLF4J: Failed to load class "org.slf4j.impl

Re: How to filter META-INF/context.xml

2012-02-02 Thread user454322
I gor it with the war-plugin ... org.apache.maven.plugins maven-war-plugin src/main/resources/META-INF/context.xml

Re: Spring context dependency not found..

2012-02-02 Thread Stephane-3
I am using the m2e Maven plugin for Eclipse. And so I guess I cannot run the goal mvn eclipse:eclipse but should run the goal mvn eclipse:m2eclipse As I was running Maven 2.2.1 and m2e requires Maven 2.4 I updated Maven. I could not find any 2.4 version on the download website though. So I dow

How to ensure proper transitive dependencies

2012-02-02 Thread Leon Rosenberg
Hello, I have following question, I don't quite understand how to solve properly. I have 3 projects, A,B and C. A depends on B and C, and B depends on C. A requires at least C version 1.06. However, after a while C got a new feature which is now used in B. So in my situation A contains: B version

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Stephen Connolly
On 2 February 2012 16:17, Leon Rosenberg wrote: > Hello, > > I have following question, I don't quite understand how to solve > properly. I have 3 projects, A,B and C. > A depends on B and C, and B depends on C. > > A requires at least C version 1.06. However, after a while C got a new > feature w

jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Daivish Shah
I want to remove the DOCTYPE line from jboss-app.xml. I don't want this line to be generated in my auto generated jboss-app.xml http://www.jboss.org/j2ee/dtd/jboss-app_5_0.dtd";> org.apache.maven.plugins maven-ear-plugin /APP-INF/lib 5 test-project test-

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Jörg Schaible
Leon Rosenberg wrote: > Hello, > > I have following question, I don't quite understand how to solve > properly. I have 3 projects, A,B and C. > A depends on B and C, and B depends on C. > > A requires at least C version 1.06. However, after a while C got a new > feature which is now used in B. S

Re: jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Wayne Fay
> I created one webservice and i am applying 5 and we > are using Jboss 5.1.2EA version. > > And it's not able to generate WSDL if i apply DOCTYPE tag over there. > If i remove that tag from jboss-app.xml it's working all right... Talk to the JBoss folks about that. Sounds like a bug on their side

Re: jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Daivish Shah
Hi Wayne, I already tried this and if i apply this TAG 5 it generates the DOCTYPE and i tried manually delete that TAG and added the modified jboss-app.xml and deployed that EAR on the jboss 5.1.2 EA version. And WEBSERVICE able to generate WSDL from http://localhost:8080/jbossws/services it work

Re: Spring context dependency not found..

2012-02-02 Thread Mirko Friedenhagen
Hello Stephane, - m2e is an Eclipse-plugin, *not* a Maven-plugin. - The configuration element in the pluginManagement section of pom.xml is only used to store information for the Eclipse plugin, so the Eclipse plugin knows which goals of the various not supported Maven plugin should run (or not),

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Leon Rosenberg
On Thu, Feb 2, 2012 at 6:10 PM, Jörg Schaible wrote: > Leon Rosenberg wrote: > >> Hello, >> >> I have following question, I don't quite understand how to solve >> properly. I have 3 projects, A,B and C. >> A depends on B and C, and B depends on C. >> >> A requires at least C version 1.06. However,

RE: How to ensure proper transitive dependencies

2012-02-02 Thread Thiessen, Todd (Todd)
Define what version of what transitive dependencies you want to use in the dep management section of the war project. > -Original Message- > From: Leon Rosenberg [mailto:rosenberg.l...@gmail.com] > Sent: Thursday, February 02, 2012 3:16 PM > To: Maven Users List > Subject: Re: How to ensu

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Leon Rosenberg
Hello Stephen, thanks for your reply, more inlined. On Thu, Feb 2, 2012 at 5:29 PM, Stephen Connolly wrote: > On 2 February 2012 16:17, Leon Rosenberg wrote: >> Hello, >> >> I have following question, I don't quite understand how to solve >> properly. I have 3 projects, A,B and C. >> A depends

Re: Deploying to dav repo behind a proxy

2012-02-02 Thread Olivier Lamy
Hello, I can have a look to see why dav wagon fail with 2.x Can you load an issue ? BTW we don't have enough it test for that. 2012/2/2 Julien HENRY : > Hi, > > Does someone have a working configuration for deploying artifacts to a dav > repository from behind a proxy with Maven 2.2.1 AND Maven 3

Re: jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Wayne Fay
> TO ME it looks like MAVEN EAR PLUGIN team needs to work with Jboss TEAM and > have to make this correction in MAVEN EAR PLUGIN. You're talking about getting changes that you need for your personal work into an open source project. If a company wants something badly enough, they will pay one of

Re: jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Daivish Shah
Hi Wayne, You are right. As long as there is a workaround, I mean user can put there own jboss-app.xml under application/META-INF/*.xml i don't care. And my meaning was JBOSS can support even if you don't provide this 5 TAG in your jboss-app.xml. Then it should not be mandatory by MAVEN too as j

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Ansgar Konermann
Am 02.02.2012 21:16 schrieb "Leon Rosenberg" : > > On Thu, Feb 2, 2012 at 6:10 PM, Jörg Schaible > wrote: > > Leon Rosenberg wrote: > > > >> Hello, > >> > >> I have following question, I don't quite understand how to solve > >> properly. I have 3 projects, A,B and C. > >> A depends on B and C, and

Question on resources plugin

2012-02-02 Thread Jeff Lowery
Hello- I've created a properties file and refer to it in a element. The properties are referenced in a web.xml file via ${} parameters. By using the following setup, I get a web.xml that has the parameters replaced: webApp.properties src/main/webapp/WEB-I

Re: jboss-app.xml Auto Generated from MAVEN EAR plugin

2012-02-02 Thread Stephen Coy
On 03/02/2012, at 4:42 AM, Daivish Shah wrote: > Hi Wayne, > > org.springframework.beans.factory.BeanCreationException: Error > creating bean with name 'TestEjbHandlerImpl': Invocation of init > method failed; nested exception is java.lang.LinkageError: loader > constraint violation: loader (ins

Re: How to ensure proper transitive dependencies

2012-02-02 Thread Jörg Schaible
Hi Leon, Leon Rosenberg wrote: > On Thu, Feb 2, 2012 at 6:10 PM, Jörg Schaible > wrote: >> Leon Rosenberg wrote: >> >>> Hello, >>> >>> I have following question, I don't quite understand how to solve >>> properly. I have 3 projects, A,B and C. >>> A depends on B and C, and B depends on C. >>> >>