[VOTE] Apache Maven Wagon 2.8

2014-11-11 Thread Olivier Lamy
Hi, We fixed 2 issues: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10335&version=20613 Staging repository: https://repository.apache.org/content/repositories/maven-1097/ Staged site: http://maven.apache.org/wagon-archives/wagon-LATEST/ Vote open for 72H [+1] [0] [-1] Cheers --

Re: [VOTE] Release maven-repository-builder 1.0

2014-11-11 Thread Hervé BOUTEMY
+1 I published the site, which was apparently built without -Preporting A better index page would be useful, or at least better description Regards, Hervé Le lundi 10 novembre 2014 21:39:47 Kristian Rosenvold a écrit : > We solved 4 issues, including an enourmously irritating stacktrace > this

[VOTE] Release Apache Maven Toolchains Plugin version 1.1

2014-11-11 Thread Hervé BOUTEMY
Hi, We solved 8 issues: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=12063&styleName=Html&version=15920 There are still a couple of issues left in JIRA: http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&pid=12063&status=1 Staging repo: https://repository.apache.org/con

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Lennart Jörelid
Hello Matt, I'd say it is desirable to make Cobertura log with a single logging system, and - if the Cobertura community choose the JUL system - use something like Mark's approach within the cobertura-maven-plugin. The C-M-P implementation will need to redirect all Cobertura's logging output into

Re: releasing maven-toolchains-plugin

2014-11-11 Thread Hervé BOUTEMY
Hi Dennis, good idea: I'll do it thank you for the feedback Regards, Hervé Le mardi 11 novembre 2014 09:07:10 Dennis Lundberg a écrit : > Hi Hervé, > > Perhaps add a menu item for your new page about "Custom Toolchains" :-) > > On Sun, Nov 9, 2014 at 3:01 PM, Hervé BOUTEMY wrote: > > a comp

Re: releasing maven-toolchains-plugin

2014-11-11 Thread Hervé BOUTEMY
Hi, I suppose that splitting later won't give much problems: just explanations for upgrade. Then IMHO it's better not to split early: keep it simple as long as possible But that a pure opinion based on personal principles, not on experience from this precise case: I never wrote a toolchain befo

Re: AW: Is there any documentation of the process of releasing an Apache project built with maven?

2014-11-11 Thread Hervé BOUTEMY
notice ASF parent pom is documented here: http://maven.apache.org/pom/asf/ which explains some magic regarding assembly Regards, Hervé Le mardi 11 novembre 2014 10:31:52 Christofer Dutz a écrit : > Yeah ... think this was what I was looking for. I know the maven release > process quite well and

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Matt Benson
Dennis: Would(n't) the work Mark Struberg did at [1] be of use here? HTH, Matt [1] http://svn.apache.org/viewvc/commons/proper/weaver/trunk/maven-plugin/src/main/java/org/apache/commons/weaver/maven/JavaLoggingToMojoLoggingRedirector.java?revision=HEAD&view=markup On Nov 11, 2014 1:50 AM, "Denn

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Lennart Jörelid
Hello Dennis, Yup - the odd/strange error printout in the Cobertura Maven Plugin comes from the underlying Cobertura framework printing some logging statements to the standard error stream. This is something which simply should be changed/fixed in Cobertura. 2014-11-11 13:35 GMT+01:00 Dennis Lund

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Alexander Kriegisch
To be more precise: === import java.util.logging.ConsoleHandler; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.SimpleFormatter; import java.util.logging.StreamHandler; public class DualConsoleHandler extends S

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Alexander Kriegisch
Maybe this helps: http://stackoverflow.com/questions/194165/how-do-i-change-java-logging-console-output-from-std-err-to-std-out http://stackoverflow.com/questions/2533227/how-can-i-disable-the-default-console-handler-while-using-the-java-logging-api/2533250#2533250 -- Alexander Kriegisch http://sc

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Dennis Lundberg
Thanks Kristian, Yes, the output is going to stderr. I've confirmed that via some debugging statements in the plugin. I haven't used native JUL before, but I'll investigate it. Any pointers are much appreciated. Here is a snippet of the code that does the logging in Cobertura: import java.util

AW: Is there any documentation of the process of releasing an Apache project built with maven?

2014-11-11 Thread Christofer Dutz
Yeah ... think this was what I was looking for. I know the maven release process quite well and therefore knew that probably the source-jar was not enough ... I didn't want to have to maintain an assembly config though but I was sort of surprised that the default config of the assembly plugin

Re: Is there any documentation of the process of releasing an Apache project built with maven?

2014-11-11 Thread Richard Eckart de Castilho
Hi Chris, there is a quite detailed explanation of what Apache understands as a release: http://www.apache.org/dev/release.html Uploading the source JARs to Maven Central is afaik not enough. What UIMA does is, we set up the build so that as part of the Maven build, a ZIP of the checked out s

Is there any documentation of the process of releasing an Apache project built with maven?

2014-11-11 Thread Christofer Dutz
Hi, at the Flex project there are some parts being built with Maven. Now we would like to release some of them and currently there is a bit of a discussion about how to do this. Currently most people are insisting on a rather manual process they have been using for releasing the Ant built stuf

Re: How to handle Java Util Logging from external tool in a Mojo using CommandLineUtils from plexus-utils?

2014-11-11 Thread Kristian Rosenvold
It would appear to me that this output is coming to stderr, which is why it's being logged to ERROR. Any way to make JUL not go to stderr ? Kristian 2014-11-11 8:48 GMT+01:00 Dennis Lundberg : > Hi, > > I'm working on the Cobertura Maven Plugin over at Mojo, and have run > into a problem that I

Re: releasing maven-toolchains-plugin

2014-11-11 Thread Dennis Lundberg
Hi Hervé, Perhaps add a menu item for your new page about "Custom Toolchains" :-) On Sun, Nov 9, 2014 at 3:01 PM, Hervé BOUTEMY wrote: > a complete IT has been added with custom toolchain, and documentation > http://maven.eu.apache.org/plugins-archives/maven-toolchains-plugin-LATEST/toolchains/c