tinca wrote:
> 
> Hello,
> 
> A custom plugin is used in a project in the following way:
> 
> usePlugin(org.rio.gradle.RioPlugin)
> ...
> 

Hello, 

Double checking plugin jar content, dependencies has not revealed anything,
just as other ways of defining script's dependency on plugin jar.

Not knowing better here is the relevant part of my plugin:

public class RioPlugin implements Plugin {
    public static final String CLASSDEP_TASK_NAME = "classdep";
    
    public void use(Project project, ProjectPluginsContainer
projectPluginsHandler) {
        projectPluginsHandler.usePlugin(JavaPlugin.class, project);
        RioPluginConvention rioPluginConvention = new RioPluginConvention();
        project.getConvention().getPlugins().put("rio",
rioPluginConvention);
        configureClassdep(project, rioPluginConvention);
    }

Any idea what could I try/check?

Thanks!
Zsolt
-- 
View this message in context: 
http://old.nabble.com/custom-plugin%27s-class-is-not-found-tp26801277p26809990.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