Is there an official set of published Gradle artifacts? (i.e. 'gradle-ide-2.0.jar')

I’m writing a set of plugins and I’d like to be specific about the exact Gradle dependencies that my plugin uses, as opposed to just using ‘compile gradleApi()’.

But I can’t seem to find anywhere where all the individual Gradle artifacts are published, suitable for being included as dependencies.

I can find the gradle-core artifact on jcenter, but not gradle-ide.

I guess everyone just uses gradleApi()? Or am I missing something very obvious? I created a StackOverflow question with more details: http://stackoverflow.com/questions/24700353

‘gradleApi()’ is the way to go. There isn’t currently a public list of dependencies for Gradle plugins.