When I was trying to test this I was having trouble with getting the integTests to run and that is because the output of the gradle install task (in both 1.2 and 2.0) is the following coordinates org.dm.gradle:gradle-bundle-plugin but the build.test integTest build file points to org.dm.gradle:bundle which is not produced by the build locally.
This point there seems to be some confusion because the existing published artifacts use the ord.dm.gradle:bundle coordinates, but gradle install sets the artifact name at gradle-bundle-plugin. So I'm not sure which way you would rather do it, that is up to you, but IMHO gradle-bundle-plugin is more standard.
With gradle 2.0 there were several changes necessary.
If you merge just this one and then re-run the integration tests with gradle-1.x it should pass.
org.dm.gradle:gradle-bundle-plugin
but thebuild.test
integTest build file points toorg.dm.gradle:bundle
which is not produced by the build locally.This point there seems to be some confusion because the existing published artifacts use the
ord.dm.gradle:bundle
coordinates, butgradle install
sets the artifact name atgradle-bundle-plugin
. So I'm not sure which way you would rather do it, that is up to you, but IMHOgradle-bundle-plugin
is more standard.Thanks!