Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for getPlugins (0.64 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/GradleDelegate.kt

            delegate.includedBuilds
    
        override fun includedBuild(name: String): IncludedBuild =
            delegate.includedBuild(name)
    
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<Any>) =
            delegate.apply(closure)
    
        override fun apply(action: Action<in ObjectConfigurationAction>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyPluginsPlugin.java

                    PRECOMPILED_SCRIPT_MANUAL.getConsultDocumentationMessage());
            }
            Plugin<?> existingPlugin = project.getPlugins().findPlugin(scriptPlugin.getId());
            if (existingPlugin != null && existingPlugin.getClass().getPackage().getName().startsWith(CORE_PLUGIN_PREFIX)) {
                throw new PrecompiledScriptException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilder.java

            }
            out.setChildren(new LinkedList<>(ideaModules));
            return out;
        }
    
        private IdeaPlugin ideaPluginFor(Project project) {
            return project.getPlugins().getPlugin(IdeaPlugin.class);
        }
    
        private static void buildDependencies(DefaultIdeaModule tapiModule, IdeaModule ideaModule, boolean offlineDependencyResolution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/ScalaBasePluginTest.groovy

        def setup() {
            project.pluginManager.apply(ScalaBasePlugin)
        }
    
        def appliesTheJavaPluginToTheProject() {
            expect:
            project.getPlugins().hasPlugin(JavaBasePlugin)
        }
    
        def addsZincConfigurationToTheProject() {
            when:
            def configuration = project.configurations.getByName(ScalaBasePlugin.ZINC_CONFIGURATION_NAME)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

            delegate.toolchainManagement
    
        override fun sourceControl(configuration: Action<in SourceControl>) =
            delegate.sourceControl(configuration)
    
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<Any>) =
            delegate.apply(closure)
    
        override fun apply(action: Action<in ObjectConfigurationAction>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

         *
         * @return the plugin container
         * @see #apply
         * @see PluginManager#hasPlugin(String)
         */
        PluginContainer getPlugins();
    
        /**
         * Applies zero or more plugins or scripts.
         * <p>
         * The given closure is used to configure an {@link ObjectConfigurationAction}, which “builds” the plugin application.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeFactory.java

                private final Map<Class<?>, Optional<PluginId>> classToPlugin = new ConcurrentHashMap<>();
    
                private ProjectScopedTypeOriginInspector(Project project) {
                    this.plugins = project.getPlugins();
                    this.pluginManager = (PluginManagerInternal) project.getPluginManager();
                }
    
                @Override
                public Optional<PluginId> findPluginDefining(Class<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

             * not interested in any of the executions bound to it.
             */
    
            for (Plugin plugin : project.getBuild().getPlugins()) {
                for (PluginExecution execution : plugin.getExecutions()) {
                    // if the phase is specified then I don't have to go fetch the plugin yet and pull it down
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/GradlePluginDevelopmentExtension.java

            return vcsUrl;
        }
    
        /**
         * Returns the declared plugins.
         *
         * @return the declared plugins, never null
         */
        public NamedDomainObjectContainer<PluginDeclaration> getPlugins() {
            return plugins;
        }
    
        /**
         * Configures the declared plugins.
         *
         * @param action the configuration action to invoke on the plugins
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            assertEquals("4.0.0", project4.getModelVersion());
    
            Build build = project4.getBuild();
            List<Plugin> plugins = build.getPlugins();
    
            Map<String, Integer> validPluginCounts = new HashMap<>();
    
            String testPluginArtifactId = "maven-compiler-plugin";
    
            // this is the plugin we're looking for.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top