Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 176 for getPlugins (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/ScalaPluginTest.groovy

        private final ScalaPlugin scalaPlugin = TestUtil.newInstance(ScalaPlugin)
    
        def appliesTheJavaPluginToTheProject() {
            when:
            scalaPlugin.apply(project)
    
            then:
            project.getPlugins().hasPlugin(JavaPlugin)
        }
    
        def addsScalaConventionToEachSourceSetAndAppliesMappings() {
            when:
            scalaPlugin.apply(project)
    
            then:
            def sourceSet = project.sourceSets.main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/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: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistry.java

            return versions.values();
        }
    
        public Collection<LibraryEntry> getLibraries() {
            return libraries.values();
        }
    
        public Collection<PluginEntry> getPlugins() {
            return plugins.values();
        }
    
        public String registerLibrary(String module, String version) {
            String alias = fullyQualifiedAliases ? coordinatesToAlias(module) : moduleToAlias(module);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top