Re: commons-compress git commit: [COMPRESS-392] Add Brotli decoder based on the Google Brotli library.

2017-05-02 Thread Stefan Bodewig
On 2017-05-02, wrote: > @@ -245,6 +251,7 @@ jar, tar, zip, dump, 7z, arj. > > > > org.tukaani.xz;resolution:=optional > + > org.brotli.dec;resolution:=optional > > > org.brotli:dec is not an OSGi bundle as far as I can

Re: StopWatch stop

2017-05-02 Thread Gary Gregory
I'll note that I had proposed something similar with locks a while back. This may suffer from the same issue for some: Using AutoCloseable and try-with-resources in an unusual way. Gary On Tue, May 2, 2017 at 4:22 PM, Gary Gregory wrote: > Here is my version based on a fluent version of Apache

Re: commons-compress git commit: [COMPRESS-392] Add Brotli decoder based on the Google Brotli library.

2017-05-02 Thread Gary Gregory
On Tue, May 2, 2017 at 3:38 PM, Bindul Bhowmik wrote: > On Tue, May 2, 2017 at 1:22 PM, wrote: > > Repository: commons-compress > > Updated Branches: > > refs/heads/master 932d4f899 -> a793612b9 > > > > > > [COMPRESS-392] Add Brotli decoder based on the Google Brotli library. > > > > Project:

Re: StopWatch stop

2017-05-02 Thread Gary Gregory
Here is my version based on a fluent version of Apache Commons Lang's StopWatch: https://pastebin.com/biNfwu7S Example: try (final StopWatchLogger watch = StopWatchLogger.start(LOGGER, Level.DEBUG, "Executing {} {}", connectingIOReactor, "foo")) { connectingIOReactor.execute(connectingEventDis

Re: commons-compress git commit: [COMPRESS-392] Add Brotli decoder based on the Google Brotli library.

2017-05-02 Thread Bindul Bhowmik
On Tue, May 2, 2017 at 1:22 PM, wrote: > Repository: commons-compress > Updated Branches: > refs/heads/master 932d4f899 -> a793612b9 > > > [COMPRESS-392] Add Brotli decoder based on the Google Brotli library. > > Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo > Commit: >

Jenkins build is back to normal : Commons-Compress #254

2017-05-02 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Jenkins build is back to normal : Commons-Compress » Apache Commons Compress #254

2017-05-02 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@co

Build failed in Jenkins: Commons-Compress » Apache Commons Compress #253

2017-05-02 Thread Apache Jenkins Server
See Changes: [garydgregory] [COMPRESS-392] Add Brotli decoder based on the Google Brotli library. -- Established TCP socket on 42766 ma

Build failed in Jenkins: Commons-Compress #253

2017-05-02 Thread Apache Jenkins Server
See Changes: [garydgregory] [COMPRESS-392] Add Brotli decoder based on the Google Brotli library. -- Started by an SCM change [EnvInject] - Loading node environment variab

Re: [all][osgi] how to deal with non-bundle dependencies?

2017-05-02 Thread Matt Sicker
Apache ServiceMix tends to repackage a lot of 3rd party libraries as bundles, so that's one method. End users can use things like bnd to generate a manifest for 3rd party jars (e.g., installing jars using the "wrap:" URI in Apache Karaf), though that's kind of similar to automodules in JPMS which i

Re: Help with task: Add WordUtils back to commons-text

2017-05-02 Thread Rob Tompkins
Hello Rajendra, Feel free to. If you have any questions about the task I will be happy to help. Cheers, -Rob > On May 1, 2017, at 7:48 PM, Rajendra Alapaty > wrote: > > I would like to help out with the task listed at > https://helpwanted.apache.org/task.html?bd9ab58e > > > -

Re: [Math] JIRA issues with proposed fixes

2017-05-02 Thread Gilles
On Mon, 1 May 2017 20:02:46 -0400, Rob Tompkins wrote: On May 1, 2017, at 7:44 PM, Gilles wrote: Hi. There are some issues reported that come with a proposed fix. If you think that the change is adequate, do not hesitate to apply it. E.g.: https://issues.apache.org/jira/browse/MATH-1381 https

Re: Help with task: Add WordUtils back to commons-text

2017-05-02 Thread Rob Tompkins
Hello Rajendra, Feel free to. If you have any questions about the task I will be happy to help. Cheers, -Rob > On May 1, 2017, at 7:48 PM, Rajendra Alapaty > wrote: > > I would like to help out with the task listed at > https://helpwanted.apache.org/task.html?bd9ab58e > > > --

Help with task: Add WordUtils back to commons-text

2017-05-02 Thread Rajendra Alapaty
I would like to help out with the task listed at https://helpwanted.apache.org/task.html?bd9ab58e - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

[GitHub] commons-compress issue #23: Add Brotli Support

2017-05-02 Thread coveralls
Github user coveralls commented on the issue: https://github.com/apache/commons-compress/pull/23 [![Coverage Status](https://coveralls.io/builds/11329901/badge)](https://coveralls.io/builds/11329901) Coverage decreased (-0.08%) to 84.208% when pulling **9cc8918f25ec1f51d

[GitHub] commons-compress issue #23: Add Brotli Support

2017-05-02 Thread coveralls
Github user coveralls commented on the issue: https://github.com/apache/commons-compress/pull/23 [![Coverage Status](https://coveralls.io/builds/11328000/badge)](https://coveralls.io/builds/11328000) Coverage decreased (-0.07%) to 84.218% when pulling **fde11cf4c1956bbe7

[all][osgi] how to deal with non-bundle dependencies?

2017-05-02 Thread Stefan Bodewig
Hi all I must admit I've never been a fan of OSGi and likely don't know enough about it. Compress like many of the components around here is an OSGi bundle and I recall I submitted a trivial patch to XZ for Java - our only dependency as of now - to turn it into a bundle as well. How does one dea

Re: commons-compress git commit: Unnecessary casts.

2017-05-02 Thread Stefan Bodewig
On 2017-05-02, wrote: > Unnecessary casts. > -n = (long) len - bytes; > +n = len - bytes; Sonar complains without them. Stefan - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For a

[GitHub] commons-compress pull request #:

2017-05-02 Thread garydgregory
Github user garydgregory commented on the pull request: https://github.com/apache/commons-compress/commit/522b6c67c28f2bcb0d9b09fd47b10449cb1c578c#commitcomment-21978708 In pom.xml: In pom.xml on line 74: I'm pretty sure you do not need to state the scope to `compile`. We do no

[GitHub] commons-compress issue #23: Add Brotli Support

2017-05-02 Thread coveralls
Github user coveralls commented on the issue: https://github.com/apache/commons-compress/pull/23 [![Coverage Status](https://coveralls.io/builds/11327484/badge)](https://coveralls.io/builds/11327484) Coverage decreased (-0.09%) to 84.202% when pulling **522b6c67c28f2bcb0