Emil
Emil

Reputation: 2167

How to apply a different version of a Gradle plugin?

I am trying to use a newer version of the JaCoCo plugin and running gradle dependencies shows me that it's running version 0.7.1.201405082137 when I would like to be running 0.7.5.201505241946.

Any idea how this can be done or if the plugin with the new version of JaCoCo is even available yet?

Thanks!

Upvotes: 4

Views: 1264

Answers (1)

Emil
Emil

Reputation: 2167

I figured it out. I just had to add

jacoco {
     toolVersion = "0.7.5.201505241946"
}

Upvotes: 9

Related Questions