Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-29 Thread Anders Hammar
First, what you're trying to do is not the normal use case for Maven as a build tool. I'd say you want to use Maven as some kind of utility. Therefore, the way to solve your need is not as straight forward as following the Maven way. So, first, do you really need to use Maven? Why not continue to

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-29 Thread ensienne
thanks Anders. I am beginner on maven. So can you please how to do that If you still want to use Maven, I'd say the best way to solve things is to deploy the war to a Maven repo in your current build (you can use the Maven Ant task or any proprietary API for your repo manager). You then create

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-29 Thread Anders Hammar
Ant Maven task: use Google. There info out there. Repo manager API: Talk to the people at your organization who manages this. If you still need help, ask on the users list of that repo manager. /Anders On Tue, Mar 29, 2011 at 08:29, ensienne t.zei...@gmail.com wrote: thanks Anders. I am

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-29 Thread Stephen Connolly
google is your friend: maven ant tasks deploy - Stephen --- Sent from my Android phone, so random spelling mistakes, random nonsense words and other nonsense are a direct result of using swype to type on the screen On 29 Mar 2011 07:30, ensienne t.zei...@gmail.com wrote:

how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread ensienne
Hello, I have started using maven2. I want to deploy a non-build maven war in local installed tomcat with maven. After long search, I have found this: 4.0.0 deploy_war DeplyWarTomcat 1.0-SNAPSHOT war DeplyWarTomcat http://maven.apache.org

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread Wayne Fay
I have started using maven2. I want to deploy a non-build maven war in local installed tomcat with maven. After long search, I have found this:  4.0.0  deploy_war  DeplyWarTomcat  1.0-SNAPSHOT  war As you can see, your email client stripped the XML. Go post this at pastebin.org and send

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread ensienne
Sorry I can not understand what do you ask me to do -- View this message in context: http://maven.40175.n5.nabble.com/how-to-deploy-a-nonbuild-maven-war-in-tomcat-with-maven2-tp4267525p4268138.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread Wayne Fay
Sorry I can not understand what do you ask me to do Look here to see how your email looks to the rest of the email list: http://mail-archives.apache.org/mod_mbox/maven-users/201103.mbox/%3c1301316001204-4267525.p...@n5.nabble.com%3e There are no XML tags in the email body, just the tag values,

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread ensienne
You are right. I will attach my pom.xml with this post. That is it http://maven.40175.n5.nabble.com/file/n4268650/pom.xml pom.xml I don't nderstant how to define the path to the war generated by a non build maven. thank you very much for any help -- View this message in context:

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread ensienne
Sorry again. Now this is the right link to the pom.xml: http://pastebin.com/9yZri8Xm http://pastebin.com/9yZri8Xm -- View this message in context: http://maven.40175.n5.nabble.com/how-to-deploy-a-nonbuild-maven-war-in-tomcat-with-maven2-tp4267525p4268660.html Sent from the Maven - Users

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread Wayne Fay
I don't nderstant how to define the path to the war generated by a non build maven. I don't understand your question. Tell us in the simplest possible terms what you have, what you are trying to get, and what you have tried that has failed. Wayne

Re: how to deploy a nonbuild maven war in tomcat with maven2

2011-03-28 Thread ensienne
I have a war generated by a non build maven. this war is placed in /home/usr/ws/myapp/target/app.war I want to create a maven project that can deploy this war into installed tomcat (/usr/home/tomcat-6), launch it. The next step is to run some selenium tests on this war. I have created a maven