Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,048 for Plugin2 (0.18 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            'a plugins block but no pluginManagement' | 'plugins { }\nrootProject.name = "test-project"'
            'a pluginManagement block but no plugins' | 'pluginManagement { }\nrootProject.name = "test-project'
            'no special blocks'                       | 'rootProject.name = "test-project"'
        }
    
        def 'can apply settings plugins'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

        def "Classpath container defined in beforeMerged"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       file {
                          beforeMerged { classpath ->
                              classpath.entries.add(new org.gradle.plugins.ide.eclipse.model.Container('beforeMergedContainerPath'))
                          }
                       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            plugins.each { plugin -> buildFile << "apply plugin: '${plugin}'\n" }
            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            def natures = rootProject.projectNatures.collect{ it.id }
    
            then:
            natures == expectedNatures
            where:
            plugins                     | expectedNatures
            []                          | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                        }
                    }
                """
                file('build.gradle.kts') << """
                    plugins {
                        `embedded-kotlin`
                        `java-gradle-plugin`
                    }
                    gradlePlugin {
                        plugins {
                            create("gradleDevelocityConventions") {
                                id = "dv-conventions"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

            }
        }
    
        def "invalidates cached state when plugin in child build changes"() {
            given:
            withSomeToolingModelBuilderPluginInChildBuild("plugins")
            settingsFile << """
                includeBuild("plugins")
                include("a")
                include("b")
            """
            buildFile << """
                plugins {
                    id("my.plugin")
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/plugins_providers.go

    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    		logger.Info("Skip registration of plugin since feature flag is enabled", "plugin", inTreePluginName, "feature", pluginInfo.pluginUnregisterFeature)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            buildFile("""
                plugins {
                    id("test-convention-plugin")
                }
            """)
    
            executer.noDeprecationChecks()
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("Plugin 'test-convention-plugin': external process started")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    import org.gradle.plugin.devel.GradlePluginDevelopmentExtension;
    import org.gradle.plugin.devel.PluginDeclaration;
    import org.gradle.plugin.devel.tasks.GeneratePluginDescriptors;
    import org.gradle.plugin.devel.tasks.PluginUnderTestMetadata;
    import org.gradle.plugin.devel.tasks.ValidatePlugins;
    import org.gradle.plugin.use.PluginId;
    import org.gradle.plugin.use.internal.DefaultPluginId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

            ) as FileCollectionInternal
        )
    
    
    /**
     * Nested `plugins` blocks are **NOT** allowed, for example:
     * ```
     * project(":core") {
     *   plugins { java }
     * }
     * ```
     * If you need to apply a plugin imperatively, please use apply<PluginType>() or apply(plugin = "id") instead.
     * ```
     * project(":core") {
     *   apply(plugin = "java")
     * }
     * ```
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                            .dependencies(deps)
                            .build();
    
                    plugins.put(key, plugin);
                }
            }
        }
    
        private static String getExecutionId(Plugin plugin, String goal) {
            Set<String> existingIds = plugin != null
                    ? plugin.getExecutions().stream().map(PluginExecution::getId).collect(Collectors.toSet())
                    : Set.of();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top