Re: [all] Thoughts on build system maven -> gradle??

2020-07-18 Thread Adam Retter
-1 from me. I have only ever found Gradle to be worse than Maven. On Thu, 16 Jul 2020, 23:30 Rob Tompkins, wrote: > I think we might be coming towards time to make this move or at least > accommodate for gradle builds in commons. Let’s look to the success the > Spring Framework has had here with

[LANG] Null-safe 'operator'

2020-07-18 Thread Juraj Jurčo
Hi guys, I'm new in this list and I would like to contribute to Apache commons. First of all I would like get some feedback if it makes sense to contribute. Java is slow in implementation of null-safe operator however sometimes it's really needed. So far I didn't find any implementation of this in

A release train...

2020-07-18 Thread Gary Gregory
Hi All, We've just released Commons Lang 3.11. My goal is to release Text very soon. When Phil is done with his work on Pool, release Pool, then DBCP. I also want to look at Crypto again where building the different binaries is a challenge but I think I am getting close. There is also CSV that i

Re: A release train...

2020-07-18 Thread Xeno Amess
I’d like to help but I got a severe flu these days... If I can survive I will review Text, but don't wait for me. Gary Gregory 于 2020年7月18日周六 下午9:00写道: > Hi All, > > We've just released Commons Lang 3.11. My goal is to release Text very > soon. When Phil is done with his work on Pool, release Po

Re: [all] Thoughts on build system maven -> gradle??

2020-07-18 Thread Xeno Amess
-1 for me. I have experience of grade about maintaining 5 or 6 gradle projects, including my graduationg project. And I think gradle shitty. Adam Retter 于 2020年7月18日周六 下午8:18写道: > -1 from me. I have only ever found Gradle to be worse than Maven. > > On Thu, 16 Jul 2020, 23:30 Rob Tompkins, wrot

Re: [LANG] Null-safe 'operator'

2020-07-18 Thread Rob Spoor
Can't you just use java.util.Optional? That was added way back (ahum) in Java 8. Converting your example: SubSubSubProperty value = Optional.ofNullable(object) .map(ObjectType::getProperty) .map(Property::getSubProperty) .map(SubProperty::getSubSubProperty

Re: A release train...

2020-07-18 Thread Adam Retter
Any chance of a release of Codec? On Sat, 18 Jul 2020, 15:00 Gary Gregory, wrote: > Hi All, > > We've just released Commons Lang 3.11. My goal is to release Text very > soon. When Phil is done with his work on Pool, release Pool, then DBCP. > > I also want to look at Crypto again where building

Re: A release train...

2020-07-18 Thread Gary Gregory
On Sat, Jul 18, 2020 at 10:55 AM Adam Retter wrote: > Any chance of a release of Codec? > Sure, I'll put that on my list. Gary > > On Sat, 18 Jul 2020, 15:00 Gary Gregory, wrote: > > > Hi All, > > > > We've just released Commons Lang 3.11. My goal is to release Text very > > soon. When Phil

Re: [all] Thoughts on build system maven -> gradle??

2020-07-18 Thread Matt Sicker
On a related note, anyone with non-trivial build needs can always develop Maven plugins to fill in any gaps in a more integrated fashion. That’s what we do in Jenkins, for example, and that’s an incredibly complex ecosystem. You get a ton of freebies with Maven which is fantastic for libraries espe

Re: [crypto] Release Build Requirements

2020-07-18 Thread Gary Gregory
Hi Alex, If you search back on this list, you'll find what I have built so far. Gary On Fri, Jul 17, 2020 at 11:03 PM Alex Remily wrote: > Gary, > > I compiled the 64-bit Windows build on my Mac and tested it in a > Windows VM. It was fairly straightforward with mingw. I still need > to cros

Re: [crypto] New Release

2020-07-18 Thread Gary Gregory
On Thu, Jul 2, 2020 at 12:39 PM Geoffrey Blake wrote: > I took a bit of time to set up an x86 Ubuntu 14.04 VM via virtualbox > and vagrant, but it looks like the windows build is broken. There are > typos trying to include "Windows.h" which should be "windows.h" to > Are you sure that this incl

Re: A release train...

2020-07-18 Thread Merbin J Anselm
Commons Fileupload? Haven't seen a release in a while On Sat, 18 Jul, 2020, 9:10 pm Gary Gregory, wrote: > On Sat, Jul 18, 2020 at 10:55 AM Adam Retter > wrote: > > > Any chance of a release of Codec? > > > > Sure, I'll put that on my list. > > Gary > > > > > > On Sat, 18 Jul 2020, 15:00 Gary G

Re: A release train...

2020-07-18 Thread Gary Gregory
Do you NEED a release? On Sat, Jul 18, 2020, 12:19 Merbin J Anselm wrote: > Commons Fileupload? Haven't seen a release in a while > > On Sat, 18 Jul, 2020, 9:10 pm Gary Gregory, > wrote: > > > On Sat, Jul 18, 2020 at 10:55 AM Adam Retter > > wrote: > > > > > Any chance of a release of Codec? >

Re: A release train...

2020-07-18 Thread Merbin J Anselm
Well. Commons Fileupload's last release was in December 2018 and it has been released at least once a year before that. My thoughts were on this line On Sat, 18 Jul, 2020, 10:36 pm Gary Gregory, wrote: > Do you NEED a release? > > On Sat, Jul 18, 2020, 12:19 Merbin J Anselm > wrote: > > > Commo

Re: A release train...

2020-07-18 Thread Gary Gregory
On Sat, Jul 18, 2020 at 1:15 PM Merbin J Anselm wrote: > Well. Commons Fileupload's last release was in December 2018 and it has > been released at least once a year before that. My thoughts were on this > line > So, to answer my question: No. ;-) Gary > > On Sat, 18 Jul, 2020, 10:36 pm Gary G

Re: A release train...

2020-07-18 Thread Rob Tompkins
Note on this guys. Most of us are fairly busy folks, working to squeeze this pro-bono work in edgewise. For example I have a wife, a 4 year old, a 6 year old and a parent in a wheelchair to take care of...along with my day job to keep the ball rolling forward. That said, we definitely appreciate

Re: [LANG] Null-safe 'operator'

2020-07-18 Thread Juraj Jurčo
Hi Rob, thanks for the proposal. Yes, you're right I can use this. I haven't seen it before nor realize it. It also evokes the question whether it's self explanatory. Maybe it was only me who didn't know it, but I haven't seen either of my colleagues use it. I see you can use also defaults as: Opti

Re: [LANG] Null-safe 'operator'

2020-07-18 Thread Gary Gregory
On Sat, Jul 18, 2020 at 5:06 PM Juraj Jurčo wrote: > Hi Rob, > thanks for the proposal. Yes, you're right I can use this. I haven't seen > it before nor realize it. > It also evokes the question whether it's self explanatory. Maybe it was > only me who didn't know it, but I haven't seen either of