Re: [VOTE] Release Apache Commons JCS 3.0 based on RC1

2020-08-17 Thread Romain Manni-Bucau
Always sad of this artifact renaming thing when there is only minor breaking changes - or none for most artifacts - but works as expected on my test apps and source artifact looks good, so: [X] +1 Release these artifacts Romain Manni-Bucau @rmannibucau | Blog

Re: Creating a Kotlin Commons Lang Package

2020-08-17 Thread Isira Seneviratne
I'd also be happy to join. On Tue, Aug 18, 2020, 6:15 AM Miguel Muñoz wrote: > I'd be happy to join you. > > On Mon, Aug 17, 2020 at 5:24 AM Adwait Kumar Singh < > theadvaitkumarsi...@gmail.com> wrote: > > > Hi all, > > > > I created this issue https://issues.apache.org/jira/browse/LANG-1599 to

Re: [VOTE] Release Apache Commons JCS 3.0 based on RC1

2020-08-17 Thread Bruno P. Kinoshita
[x] +1 Release these artifacts Build OK from the tag with Maven 3.5.4, Ubuntu 18.04 LTS, JDK 1.8. Site reports look good. The docs about upgrading from 2.x to 3.x should be useful for users, great idea. Had a look inside the dist archives for binaries and sources, everything looks OK. Found no

Re: Creating a Kotlin Commons Lang Package

2020-08-17 Thread Adwait Kumar Singh
Yeah we could call it from Kotlin but the point is to re-write most of the utils as Kotlin extensions functions which are more cleaner, concise and easy to discover. On Tue, Aug 18, 2020 at 6:43 AM Hasan Diwan wrote: > Couldn't you follow the directions at > https://kotlinlang.org/docs/referenc

Re: Creating a Kotlin Commons Lang Package

2020-08-17 Thread Hasan Diwan
Couldn't you follow the directions at https://kotlinlang.org/docs/reference/java-interop.html to call the Java methods from Kotlin? Or am I missing something? -- H On Mon, 17 Aug 2020 at 17:45, Miguel Muñoz wrote: > I'd be happy to join you. > > On Mon, Aug 17, 2020 at 5:24 AM Adwait Kumar Sing

Re: Creating a Kotlin Commons Lang Package

2020-08-17 Thread Miguel Muñoz
I'd be happy to join you. On Mon, Aug 17, 2020 at 5:24 AM Adwait Kumar Singh < theadvaitkumarsi...@gmail.com> wrote: > Hi all, > > I created this issue https://issues.apache.org/jira/browse/LANG-1599 to > discuss the possibility of creating a Kotlin version of the current project > which would le

Re: [Imaging]: Integrating JIRA issues with GitHub issues

2020-08-17 Thread Eric Peters
TLDR; It looks like https://exalate.com/integrations/ has some more advanced tools/services for managing this (disclaimer: I have not used their services, this is only from some quick googling) Via: https://community.atlassian.com/t5/Jira-questions/Is-there-a-plugin-to-keep-Jira-Github-issues-in-

Re: Question about "StringUtils.indexOfAny" functionality/test

2020-08-17 Thread Eric Peters
Thanks Mark. Your explanation makes sense to me now. Happy to report the tests passing in scala now! https://github.com/er1c/scala-apache-commons-lang3/runs/991749187?check_suite_focus=true#step:4:1443 Best Regards, Eric On Mon, Aug 17, 2020 at 12:03 AM Mark Dacek wrote: > The difference is

Re: The project website

2020-08-17 Thread sebb
The main commons site does not need any special processing. It just needs a script to run maven and publish the generated site. What is the Infra-recommended replacement for such sites? On Mon, 17 Aug 2020 at 14:05, Gary Gregory wrote: > > Hi Andrew, > > There is no formal agreement from the PMC

Re: The project website

2020-08-17 Thread Gary Gregory
Hi Andrew, There is no formal agreement from the PMC but it feels to me (with my PMC hat on) that we can move forward since the underlying tool is coming to EOL. My components in Commons have their own Maven generated site they upload directly. We just need someone to step up and the main site.

Creating a Kotlin Commons Lang Package

2020-08-17 Thread Adwait Kumar Singh
Hi all, I created this issue https://issues.apache.org/jira/browse/LANG-1599 to discuss the possibility of creating a Kotlin version of the current project which would leverage extension functions to provide cleaner and concise utility functions. Also we would only include those methods which are

Re: The project website

2020-08-17 Thread Andrew Wetmore
Hi: I am glad to see the project is moving forward with migration from the CMS. Do you have a formal PMC agreement on the move, and have you opened a Jira ticket for INFRA so we can track what we need to do? Thanks! Andrew On Tue, Aug 4, 2020 at 10:40 AM Andrew Wetmore wrote: > Hi: > > I am p

Re: [LOGGING][DAEMON] Update Java 6 to 7

2020-08-17 Thread Xeno Amess
Oh so animal-sniffer is the plugin we use to check this kind of issue? Thanks, I will learn about it later. Mark Thomas 于2020年8月17日周一 下午3:58写道: > On 16/08/2020 16:45, Xeno Amess wrote: > >> I've pushed change to the pom which allows compilation on Java14. > > > > Well it might be silly to ask bu

Re: [LOGGING][DAEMON] Update Java 6 to 7

2020-08-17 Thread Mark Thomas
On 16/08/2020 16:45, Xeno Amess wrote: >> I've pushed change to the pom which allows compilation on Java14. > > Well it might be silly to ask but, is there a mechanism for us to make sure > that openjdk 6 output jar of this repo can be run totally correct on newer > JVM s? As per the email you re

Re: Question about "StringUtils.indexOfAny" functionality/test

2020-08-17 Thread Mark Dacek
The difference is that the CharSequence... will search for the first occurrence of any of the provided CharSequences. The single CharSequence arg-method will search for the first of any chars in the provided sequence. Regarding the test assertion: it's the index of *any *of the provided characters