Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getPlugins (0.18 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            ProjectInternal projectInternal = (ProjectInternal) project;
            ProjectPublicationRegistry registry = projectInternal.getServices().get(ProjectPublicationRegistry.class);
            extension.getPlugins().all(pluginDeclaration -> registry.registerPublication(projectInternal, new LocalPluginPublication(pluginDeclaration)));
        }
    
        private static void applyDependencies(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            override fun toString(): String = "CrossProjectModelAccessProjectEvaluationListener($delegate)"
        }
    
        // region delegated members
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<*>) =
            delegate.apply(closure)
    
        override fun apply(action: Action<in ObjectConfigurationAction>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun getDependencyLocking(): DependencyLockingHandler {
                onAccess("dependencyLocking")
                return delegate.dependencyLocking
            }
    
            override fun getPlugins(): PluginContainer {
                onAccess("plugins")
                return delegate.plugins
            }
    
            override fun apply(closure: Closure<*>) {
                onAccess("apply")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        .collect(Collectors.joining(", "));
                PluginIncompatibleException pie = new PluginIncompatibleException(
                        pluginDescriptor.getPlugin(),
                        "The plugin " + pluginDescriptor.getId() + " has unmet prerequisites: " + messages,
                        prerequisiteExceptions.get(0));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top