hi gradle,

how about a minimalistic plugin-sdk that makes
out of the box plugin-development possible ?

with a preconfigured gradle-build and (mock-)support for 
running unit-tests on plugins.

like this(?):  


class SomeCustomPluginTest extends GroovyTestCase {
    private final Project project = HelperUtil.createRootProject()
    private final SomeCustomPlugin plugin = new SomeCustomPlugin()

    public void testShouldAddConventionObjectOk() {
        plugin.use(project, project.getPlugins())

        assertThat(project.convention.plugins.somecustom,
instanceOf(SomeCustomConvention))
    }
}


have a successful weekend
-- 
View this message in context: 
http://old.nabble.com/support-for-plugin-development-tp26857979p26857979.html
Sent from the gradle-user mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to