Re: Gradle Build support

2016-12-08 Thread Paul Merlin
So, yes we should provide users a Gradle plugin to easily build a Polygene library/extension/application. About the changes I made to the SDK build. For now I just moved all build logic to buildSrc so it's more manageable and easy to refactor. >From a gigantic root build.gradle file we moved to

Re: Gradle Build support

2016-12-07 Thread Paul Merlin
Niclas Hedhman a écrit : > I didn't really notice all the nice things that Paul has done in the build > system. :) > I particularly like the > > compile zest.extension( 'entitystore-jdbm' ) > > Would it be possible to create and distribute a "Polygene plugin", which > does this for

Re: Gradle Build support

2016-12-07 Thread Niclas Hedhman
Actually, more like; apply plugin: 'polygene' // also sets the repositories needed. > dependencies { > polygene.core() // sets up compile, runtime, testCompile > > if possible... On Wed, Dec 7, 2016 at 6:58 PM, Niclas Hedhman wrote: > I didn't really notice all the