Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getPlugins (0.13 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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if (build != null) {
                    validate20RawPlugins(problems, build.getPlugins(), "build.plugins.plugin.", EMPTY, request);
    
                    PluginManagement mgmt = build.getPluginManagement();
                    if (mgmt != null) {
                        validate20RawPlugins(
                                problems, mgmt.getPlugins(), "build.pluginManagement.plugins.plugin.", EMPTY, request);
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. 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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            for (int i = lineage.size() - 1; i >= 0; i--) {
                Model model = lineage.get(i);
                Build build = model.getBuild();
                if (build != null) {
                    for (Plugin plugin : build.getPlugins()) {
                        String key = plugin.getKey();
                        if (versions.get(key) == null) {
                            versions.put(key, plugin.getVersion());
                            plugins.put(key, plugin);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginResolutionException.java

                                    .collect(Collectors.joining(System.lineSeparator() + "\t"))
                            + System.lineSeparator(),
                    cause);
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugin.devel.GradlePluginDevelopmentExtension.getPlugins()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GradlePluginDevelopmentExtension.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)
  8. 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