On Mon, 2009-07-20 at 10:09 +0200, Hans Dockter wrote:
[ . . . ]
> dependencies {
>     compile "junit:junit:4.+"
> }

Does this imply that:

dependencies {
        compile "junit:junit:+"
}

gets the latest available?

Is there a "metric" for deciding whether:

        compile "junit:junit:4.+"

is preferred or not compared to:

        compile group : 'junit' , name : 'junit' , version : '4.+'

Is the Gradle philosophy to ignore parentheses wherever possible?

Is the Gradle preferred idiom to have multiple compile calls:

        compile . . .
        compile . . . 
        compile . . .

 or to have a list to a single compile call:

        compile [ . . . , . . . , . . . ]


Thanks.
-- 
Russel.
=============================================================================
Dr Russel Winder      Partner
                                            xmpp: [email protected]
Concertant LLP        t: +44 20 7585 2200, +44 20 7193 9203
41 Buckmaster Road,   f: +44 8700 516 084   voip: sip:[email protected]
London SW11 1EN, UK   m: +44 7770 465 077   skype: russel_winder

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to