Re: copy resources to other places after build

2015-02-12 Thread Curtis Rueden
Hi James, i would like maven can move the packaged jar to some place specified after build The dependency:copy goal might work for your use case. But as Dan says, be careful with this route: there can be subtle consequences. http://stackoverflow.com/q/7063475/1207769 Regards, Curtis On Thu,

RE: Sanity testing of the web application using jetty

2015-02-12 Thread Martin Gainty
Date: Thu, 12 Feb 2015 08:27:04 -0800 From: nhr...@gmail.com To: users@maven.apache.org Subject: Sanity testing of the web application using jetty Greetings, Looking for ideas/suggestions to sanity test the web application. I had a junit test working in eclipse, but it does not work

RE: copy resources to other places after build

2015-02-12 Thread James Teng
Appreciate your favors, learned from your works. thanks! uknow. From: ctrue...@wisc.edu Date: Thu, 12 Feb 2015 12:27:17 -0600 Subject: Re: copy resources to other places after build To: users@maven.apache.org Hi James, i would like maven can move the packaged jar to some place

copy resources to other places after build

2015-02-12 Thread James Teng
Due to some causes, i would like maven can move the packaged jar to some place specified after build, does it have a plugin for that except directly letting the jar dumped to the target place using maven jar plugin? thanks! uknow.

Sanity testing of the web application using jetty

2015-02-12 Thread Niranjan Rao
Greetings, Looking for ideas/suggestions to sanity test the web application. I had a junit test working in eclipse, but it does not work when running mvn test. My eventual goal was to run this test as integration test on jenkins. My web application needs access to a properties file to read

Re: copy resources to other places after build

2015-02-12 Thread Dan Tran
You can hook up maven-antrun-plugin to do the copy, use vfs-maven-plugin, or wagon-maven-plugin to do remote copy. But think twice before going for this route. -D On Thu, Feb 12, 2015 at 5:03 AM, James Teng tenglinx...@outlook.com wrote: Due to some causes, i would like maven can move the