Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for setImplementation (0.13 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                 */
                @SuppressWarnings("UnstableApiUsage")
                @Restricted
                public interface ApplicationDependencies extends Dependencies {
                    DependencyCollector getImplementation();
                    DependencyCollector getRuntimeOnly();
                    DependencyCollector getCompileOnly();
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

        }
        def previousState = Stub(PreviousExecutionState) {
            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
            getImplementation() >> Stub(ClassImplementationSnapshot)
    
            getOutputFilesProducedByWork() >> ImmutableSortedMap.of()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * Outside of Gradle build scripts, you must explicitly call a getter for the `DependencyCollector` and `add`.
    ** `dependencies.add("implementation", x)` becomes `getImplementation().add(x)`
    * You cannot declare dependencies with the `Map` notation from Kotlin and Java.
    Use multi-argument methods instead in Kotlin and Java.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    ((ContextEnabled) mojo).setPluginContext(pluginContext);
                }
            }
    
            if (mojo instanceof Mojo) {
                Logger mojoLogger = LoggerFactory.getLogger(mojoDescriptor.getImplementation());
                ((Mojo) mojo).setLog(new MojoLogWrapper(mojoLogger));
            }
    
            if (mojo instanceof Contextualizable) {
                pluginValidationManager.reportPluginMojoValidationIssue(
    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