[VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Jason van Zyl
Couple issues cropped up so I'm canceling the vote. On Feb 10, 2014, at 9:18 PM, Jason van Zyl ja...@takari.io wrote: Hi, Time to release Maven 3.2.0! Here is a link to Jira with 33 issues resolved: https://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=15565 Staging

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Olivier Lamy
Noticed this non blocking issue when using activemq plugin to start an activemq instance: [INFO] BUILD SUCCESS [INFO] [INFO] Total time: 17.840s [INFO] Finished at: Wed Feb 12 09:12:23 EST 2014 [INFO] Final Memory:

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Stuart McCulloch
On 11 February 2014 22:15, Olivier Lamy ol...@apache.org wrote: Noticed this non blocking issue when using activemq plugin to start an activemq instance: [INFO] BUILD SUCCESS [INFO] [INFO] Total time: 17.840s

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Dan Tran
Thanks Stuart for this confirmation, I am seeing this exact issue happen on both 3.1.x and 3.2. My build uses truezip-maven-plugin [INFO] [INFO] BUILD SUCCESS [INFO]

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Stuart McCulloch
On 11 February 2014 23:26, Dan Tran dant...@gmail.com wrote: Thanks Stuart for this confirmation, I am seeing this exact issue happen on both 3.1.x and 3.2. My build uses truezip-maven-plugin Yep, TrueZip will leave a JVM shutdown hook registered unless you explicitly unmount the virtual file

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Laird Nelson
On Tue, Feb 11, 2014 at 3:20 PM, Stuart McCulloch mccu...@gmail.com wrote: I suspect this is related to the change in Classworlds 2.4.1+ to use the new ClassLoader.close() method available in Java7 to forcibly close plugin ClassLoaders when the plugin/container realm is disposed. Just as an

Re: [VOTE][CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Igor Fedorenko
http://download.java.net/jdk8/docs/api/java/net/URLClassLoader.html -- Regards, Igor On 2/11/2014, 18:38, Laird Nelson wrote: On Tue, Feb 11, 2014 at 3:20 PM, Stuart McCulloch mccu...@gmail.com wrote: I suspect this is related to the change in Classworlds 2.4.1+ to use the new

Re: [VOTE] [CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Mark Derricutt
Does this mean Maven will now require Java 7 as the running JVM? Oddly - I don't see any close() method mentioned on: http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html anywhere? On 12 Feb 2014, at 12:20, Stuart McCulloch wrote: I suspect this is related to the change in

Re: [VOTE] [CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Mark Derricutt
Glad I wasn't the only one confused. Still, as I mention in my other post on this - does this not now mean that Maven MUST run on JDK7? Mark On 12 Feb 2014, at 12:41, Igor Fedorenko wrote: http://download.java.net/jdk8/docs/api/java/net/URLClassLoader.html -- Regards, Igor On 2/11/2014,

Re: [VOTE] [CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Igor Fedorenko
No, Maven will (correctly) close URLClassLoaders on java7 and will continue to work as before on older JVMs. Here is the code that implements this logic https://github.com/sonatype/plexus-classworlds/blob/master/src/main/java/org/codehaus/plexus/classworlds/ClassWorld.java#L110 -- Regards, Igor

Re: [VOTE] [CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Olivier Lamy
On 12 February 2014 13:03, Mark Derricutt m...@talios.com wrote: Glad I wasn't the only one confused. Still, as I mention in my other post on this - does this not now mean that Maven MUST run on JDK7? nope there is a check here

Re: [VOTE] [CANCELLED] Release Maven 3.2.0

2014-02-11 Thread Mark Derricutt
Good to know :) On 12 Feb 2014, at 15:06, Igor Fedorenko wrote: No, Maven will (correctly) close URLClassLoaders on java7 and will continue to work as before on older JVMs. Here is the code that implements this logic - To