Re: [VOTE][LAZY] Migrate Commons SCXML to Git

2015-07-01 Thread Gary Gregory
+1 Gary On Wed, Jul 1, 2015 at 6:50 PM, Woonsan Ko wrote: > Hi there, > > I think the experiences in Commons Math and Commons Lang using git as > primary VCS have been successful. Also, we received requests from some > new people about using git instead (through mailing list and JIRA > tickets)

Re: [VOTE][LAZY] Migrate Commons SCXML to Git

2015-07-01 Thread James Carman
+1 On Wed, Jul 1, 2015 at 9:50 PM Woonsan Ko wrote: > Hi there, > > I think the experiences in Commons Math and Commons Lang using git as > primary VCS have been successful. Also, we received requests from some > new people about using git instead (through mailing list and JIRA > tickets). > So,

Re: [dbutils] Adding fluent api

2015-07-01 Thread Ole Ersoy
On 07/01/2015 04:00 PM, Mansour Al Akeel wrote: Hello Kervin, Alot of these libraries, including JPA need to generate beans before you can use the query builder. QueryDSL is one example. I haven't used JOOQ, but I have seen their examples, and it looks a lot like what I thinking of. I am unabl

RE: [VOTE][LAZY] Migrate Commons SCXML to Git

2015-07-01 Thread dbrosIus
+1 Original message From: Woonsan Ko Date: 07/01/2015 9:50 PM (GMT-05:00) To: Commons Developers List Subject: [VOTE][LAZY] Migrate Commons SCXML to Git Hi there, I think the experiences in Commons Math and Commons Lang using git as primary VCS have been successful. Als

[VOTE][LAZY] Migrate Commons SCXML to Git

2015-07-01 Thread Woonsan Ko
Hi there, I think the experiences in Commons Math and Commons Lang using git as primary VCS have been successful. Also, we received requests from some new people about using git instead (through mailing list and JIRA tickets). So, I'd like to call a vote to migrate Commons SCXML to git, assuming m

Re: [VFS] cpio

2015-07-01 Thread sebb
On 1 July 2015 at 22:33, Schalk Cronjé wrote: > VFS correctly depends on Compress as it uses the Tar etc. libraries from > there. > > What I was referring to is backporting the provider code to VFS. The > provider relies on the CPIO code from Compress, I see, sorry for the noise. If there is int

Re: [VFS] cpio

2015-07-01 Thread Schalk Cronjé
VFS correctly depends on Compress as it uses the Tar etc. libraries from there. What I was referring to is backporting the provider code to VFS. The provider relies on the CPIO code from Compress, On 01/07/2015 22:01, sebb wrote: Commons Compress already supports CPIO. Perhaps that needs ex

Re: [VFS] cpio

2015-07-01 Thread sebb
Commons Compress already supports CPIO. Perhaps that needs extending to fit better with VFS, but it seems wrong to put the CPIO code in VFS which already depends on Compress. On 1 July 2015 at 21:25, Schalk Cronjé wrote: > Would anyone fancy backporting this cpio-provider > (https://github.com/y

Re: [dbutils] Adding fluent api

2015-07-01 Thread Mansour Al Akeel
Hello Kervin, Alot of these libraries, including JPA need to generate beans before you can use the query builder. QueryDSL is one example. I haven't used JOOQ, but I have seen their examples, and it looks a lot like what I thinking of. I am unable to find the licensing of JOOQ, and if it's ASL com

Re: [dbutils] Adding fluent api

2015-07-01 Thread Mansour Al Akeel
On Wed, Jul 1, 2015 at 8:07 PM, Ole Ersoy wrote: > Just curious...would this be similar to JOOQ? > > http://www.jooq.org/ > > Cheers, > - Ole Yes. Something similar. We just need to generate SQL string. > > > On 07/01/2015 10:21 AM, Adrian Crum wrote: >> >> You can make the builder support gener

Re: [dbutils] Adding fluent api

2015-07-01 Thread Mansour Al Akeel
Hello all, Benedikt, you are right, all we need is a StringBuilder-Style query builder. And like Aderian said, we can suppor a default dialect, and allow overriding. This is the mechanist used by iciql (www.iciql.com). A problem will be faced is with support for properiatory (none-open source) da

[VFS] cpio

2015-07-01 Thread Schalk Cronjé
Would anyone fancy backporting this cpio-provider (https://github.com/ysb33r/groovy-vfs/tree/development/cpio-provider) into Java and adding it to VFS? I pretty much wrote it based upon the Tar provider. -- Schalk W. Cronjé Twitter / Ello / Toeter : @ysb33r -

[GitHub] commons-collections pull request: Added global counter for Abstrac...

2015-07-01 Thread kaching88
GitHub user kaching88 opened a pull request: https://github.com/apache/commons-collections/pull/11 Added global counter for AbstractMultiValuedMap and his subclasses. This commit add new field called globalCounter which represents runtime global counter for class es which extending

[Commons Wiki] Update of "VfsReleaseState" by BerndEckenfels

2015-07-01 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The "VfsReleaseState" page has been changed by BerndEckenfels: https://wiki.apache.org/commons/VfsReleaseState?action=diff&rev1=13&rev2=14 * only show aggregate checkstyle report to

[VFS-497] Re: commons-vfs pull request

2015-07-01 Thread Bernd Eckenfels
Hello Michael, thanks for the reminder. For some reasons we do not get notifications for the commons-vfs project on GitHub, but I have seen the Pull Request in the Jira comment, thats fine to track it. I somewhat dislike this code duplication and wished there would be a more generic way to make t

[Commons Wiki] Update of "VfsReleaseState" by BerndEckenfels

2015-07-01 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The "VfsReleaseState" page has been changed by BerndEckenfels: https://wiki.apache.org/commons/VfsReleaseState?action=diff&rev1=12&rev2=13 * OSGI imports are not optional (https

Re: [dbutils] Adding fluent api

2015-07-01 Thread Kervin Pierre
Left out... * https://github.com/JSQLParser/JSqlParser * http://querydsl.com JSqlParser does a really good job of handling dialects if I remember correctly. QueryDSL also "does the mapping part" as you put it. It gives you a type-safe query language across Java Collections, JPA Datasources and

Re: [dbutils] Adding fluent api

2015-07-01 Thread Ole Ersoy
Just curious...would this be similar to JOOQ? http://www.jooq.org/ Cheers, - Ole On 07/01/2015 10:21 AM, Adrian Crum wrote: You can make the builder support generic SQL 2003, and provide a way to extend the builder with vendor-specific grammar. Adrian Crum Sandglass Software www.sandglass-so

Re: [dbutils] Adding fluent api

2015-07-01 Thread Adrian Crum
You can make the builder support generic SQL 2003, and provide a way to extend the builder with vendor-specific grammar. Adrian Crum Sandglass Software www.sandglass-software.com On 6/30/2015 11:10 PM, Benedikt Ritter wrote: Hello Mansour, 2015-06-30 23:57 GMT+02:00 Mansour Al Akeel : I am