Re: Configuring POM for Tomcat

2013-12-05 Thread Olivier Lamy
Hi, I don't understand your point :-) You want to depends on Tomcat runtime implementation or just want to web dependencies (HttpServlet etc..) What is your use case? On 6 December 2013 10:17, Eric Kolotyluk wrote: > OK, there must be an easier way to do this... > > I am trying to figure out how

Configuring POM for Tomcat

2013-12-05 Thread Eric Kolotyluk
OK, there must be an easier way to do this... I am trying to figure out how to configure my POM to depend on tomcat, without creating dependencies on each individual tomcat jar file. After googling around for answers, I cannot seem to find any simple way to set up my web app so that right dep

Re: Releasing artifacts with and without debug info

2013-12-05 Thread Stephen Connolly
Or writing a plugin that strips debug info from a .jar and attaches the stripped artifact with the nodebug classifier... /me wonders if shade offers this functionality... On Thursday, 5 December 2013, Robert Scholte wrote: > Classifier would seem to be appropriate for this case... but I would be

Re: Help hiding INFO messages from Apache MINA SSHD

2013-12-05 Thread Barrie Treloar
On 6 December 2013 02:57, Andrew Pennebaker wrote: > I'm using Apache MINA SSHD for some unit tests, and all the INFO messages > it spits out are making it hard to see my own INFO messages. I came across > a helpful > log4j.properties

Re: Upgrade to 3.1.1 causes problems

2013-12-05 Thread Collins Solutions
I have made the replacement that you have suggested. I have ran through several builds with maven 3.1.1 and have not seen the error come back. I will continue to monitor this. On 12/05/2013 12:17 PM, Stuart McCulloch wrote: You could try replacing: maven-3.1.1/boot/plexus-classworld

Re: Releasing artifacts with and without debug info

2013-12-05 Thread Robert Scholte
Classifier would seem to be appropriate for this case... but I would be interested to see what others say. I agree on this approach. It will require extra execution blocks for at least the maven-compiler-plugin and maven-jar-plugin. You also have to decide if you want the maven-surefire-plug

Re: Upgrade to 3.1.1 causes problems

2013-12-05 Thread Stuart McCulloch
You could try replacing: maven-3.1.1/boot/plexus-classworlds-2.5.1.jar with: maven-3.0.5/boot/plexus-classworlds-2.4.jar in case the change to use unsynchronised class loading in classworlds 2.5 when running on Java 1.7 is causing the issue. On 5 Dec 2013, at 16:32, Collins So

Re: Upgrade to 3.1.1 causes problems

2013-12-05 Thread Collins Solutions
It is happening on more than one machine. On 12/04/2013 10:14 PM, Wayne Fay wrote: ...well, it looks as though this is only a temporary solution. After I got everything to build successfully once I cleaned out my repository, I got the same error when I ran the build a second time. I tried upgrad

Help hiding INFO messages from Apache MINA SSHD

2013-12-05 Thread Andrew Pennebaker
I'm using Apache MINA SSHD for some unit tests, and all the INFO messages it spits out are making it hard to see my own INFO messages. I came across a helpful log4j.properties

Re: Releasing artifacts with and without debug info

2013-12-05 Thread Stephen Connolly
Well first off I think it would be better to have the full debug info in the main artifact as you can always use tooling to strip debug info as a consumer the debug info will have no effect on the transitive dependencies, so from that PoV having a -nodebug.jar makes sense Classifier would see