Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for applyPlugins (0.4 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/PluginsInterpretationSequenceStep.kt

                val pluginManager = get(PluginManagerInternal::class.java)
                val pluginApplicator = get(PluginRequestApplicator::class.java)
                pluginApplicator.applyPlugins(PluginRequests.of(pluginRequests), scriptHandler, pluginManager, targetScope)
            }
            targetScope.lock()
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            "XcodePluginIntegrationTest",
            "IdeaPluginGoodBehaviourTest"
        ])
        def "plugin can build with empty project"() {
            given:
            applyPlugin()
    
            expect:
            succeeds mainTask
        }
    
        protected applyPlugin(File target = buildFile) {
            target << "apply plugin: '${getQualifiedPluginId()}'\n"
        }
    
        protected applyPluginUnqualified(File target = buildFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

                task f { doLast { throw new RuntimeException("failed") } }
            """
        }
    
        void applyPlugin() {
            settingsFile << plugin.plugins()
        }
    
        def "detects that the build scan plugin has been [applied=#applied]"() {
            given:
            if (applied) {
                applyPlugin()
            }
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top