4

I'm new to gradle. I have such a dependecy im my gradle script:

compile group: 'com.ning', name: 'async-http-client', version: '[1.6.1,1.9['

Could someone explain me, what does this version: '[1.6.1,1.9[' mean in this case?

Stanislav
  • 27,441
  • 9
  • 87
  • 82
Dennis Huang
  • 85
  • 1
  • 4

1 Answers1

4

It's Ivy-style versions range, take a look here. In this case, this means, version can be greater or equal to 1.6.1 and lower than 1.9.

Stanislav
  • 27,441
  • 9
  • 87
  • 82