Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for pluginDeclaration (0.23 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

                        this.name = name
                    }
                }
    
                project.extensions.add('pluginDeclarations', project.container(PluginDeclaration))
    
                pluginDeclarations {
                    myPlugin {
                        id = "my-id"
                        description = "hello"
                        tags = ["tag1", "tag2"]
                        myFiles = files("a/b/c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugin.devel.PluginDeclaration.getDescription()> does not have raw return type assignable to org.gradle.api.provider.Property in (PluginDeclaration.java:0)
    Method <org.gradle.plugin.devel.PluginDeclaration.getDisplayName()> does not have raw return type assignable to org.gradle.api.provider.Property in (PluginDeclaration.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Previously, `org.gradle.api.AntBuilder` extended the deprecated `groovy.util.AntBuilder` class.
    It now extends `groovy.ant.AntBuilder`.
    
    ==== `PluginDeclaration` is not serializable
    
    `org.gradle.plugin.devel.PluginDeclaration` is not serializable anymore.
    If you need to serialize it, you can convert it into your own, serializable class.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyPluginsPlugin.java

        }
    
        private void declarePluginMetadata(GradlePluginDevelopmentExtension pluginExtension, List<PrecompiledGroovyScript> scriptPlugins) {
            pluginExtension.plugins(pluginDeclarations ->
                scriptPlugins.forEach(scriptPlugin -> pluginDeclarations.create(scriptPlugin.getId(), scriptPlugin::declarePlugin)));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top