Re: Maven 3 deploy snapshot and multi module

2015-10-08 Thread Bob Hpv
Dear Karl, I was using maven 2.2.1 and now 3.2.5. I deploy the artifacts on a Nexus Repository (version 2.0.5). Regards Bob 2015-10-05 18:49 GMT+02:00 Karl Heinz Marbaise : > Hi, > > On 10/5/15 6:24 PM, Bob Hpv wrote: > >> Dear all, >> I was using maven 2 and the unique

Maven and Vaadin to build war correct

2015-10-08 Thread K R
I am trying to compile a web app for Tomcat7 using Vaadin and Maven and I have themes and widgetset. ​I m using eclipse files: ​/src/maim/java/com/na7kr ​/src/webapp (do not know why?) ​/src/resources (do not know why?) ​/target and lots of follder it makes ​/WebContent\META-INF

Re: Maven and Vaadin to build war correct

2015-10-08 Thread K R
In Eclipse and was using IVY and switched to Maven. My widgetset is not in /VAADIN/widgetset folder in /VAADIN/themes/themes01 there is only one SCSS file and no images or css file Just do not know how to make the war file correct. On Thu, Oct 8, 2015 at 10:45 AM, Javier Ortiz

Re: Maven and Vaadin to build war correct

2015-10-08 Thread Javier Ortiz
I don't understand the question. How did you create the project? Maven artifact? Does the project work when ran? I've never had issues with Vaadin before, but I use Netbeans ;)

Re: War file name and sftp to server

2015-10-08 Thread Curtis Rueden
Hi K R, > How do I sftp it to the server? What kind of server? Web server? Maven repository? Something else? == Web server == If it's just a web server, typically that is done outside of the Maven build. You can also rename the file at that point. Alternately, you can use the exec-maven-plugin

Re: War file name and sftp to server

2015-10-08 Thread ecki
To rename the produced artifacts and remove the version you can use another final name template like: ${artifactId} (See stackoverflow.com/questions/9593473/how-to-build-project-with-maven-without-version) However it is usually better to stick to that convention and configure the deployment

Re: War file name and sftp to server

2015-10-08 Thread ke...@na7kr.us
Tomcat7 running on Raspberry Pi On October 8, 2015 1:36:53 PM Curtis Rueden wrote: Hi K R, How do I sftp it to the server? What kind of server? Web server? Maven repository? Something else? == Web server == If it's just a web server, typically that is done outside of

Re: War file name and sftp to server

2015-10-08 Thread trasukg
Check the Tomcat site for the Tomcat Maven plug-in. Not sure if it will use sftp, though. I believe it can use https. Cheers,  Greg Trasuk.  Sent from my BlackBerry 10 smartphone.   Original Message   From: ke...@na7kr.us Sent: Thursday, October 8, 2015 4:58 PM To: Maven Users List Reply To:

War file name and sftp to server

2015-10-08 Thread K R
I have this in pom.xml 0.0.1-SNAPSHOT YT-100_ATU_Controller and I get YT-100_ATU_Controller-0.0.1-SNAPSHOT.war how do I get YT-100_ATU_Controller.war? How do I sftp it to the server?

Re: War file name and sftp to server

2015-10-08 Thread ke...@na7kr.us
I tried tomcat plugin and it starts to upload and stops no error. On October 8, 2015 2:13:18 PM tras...@stratuscom.com wrote: Check the Tomcat site for the Tomcat Maven plug-in. Not sure if it will use sftp, though. I believe it can use https. Cheers,  Greg Trasuk.  Sent from my 

Re: War file name and sftp to server

2015-10-08 Thread Greg Trasuk
Hmm… that’s funny. You’d at least expect an error message. Could you try it with the -d for debug option on Maven? That might give you a better insight into why it doesn’t work. I realize you didn’t ask about the Tomcat Maven plugin, but that seems like the most direct approach to getting

Re: Maven and Vaadin to build war correct

2015-10-08 Thread Wayne Fay
Your time is most likely better spent on a Vaadin-specific list, where you can probably find a decent percentage of people who use Maven for their builds vs a Maven-specific list where only a tiny fraction of users are using Vaadin. Wayne On Thu, Oct 8, 2015 at 12:59 PM, K R