>> We probably want something closer to:
>>
>> buildLogic {
>> plugin “org.gradle.java”
>> library “commons-collections:commons-collections:1.2.3"
>> }
>
> This raises the question of why not just use buildscript {}?
>
> Simpler to understand if there is a clean break, and the term ‘buildscript’
> isn’t very meaningful.

In which case, I prefer something like buildDependencies {} or
buildDeps {} to make it shorter. Assuming that this block only
includes build dependencies of course.

So maybe

  buildDeps {
      plugin id: "org.gradle.java”
      lib "commons-collections:commons-collections:1.2.3"
  }

Or does this not tackle the issues that concern you? Is the main issue
verbosity?

Peter

-- 
Peter Ledbrook
t: @pledbrook

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to