Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exampleImplementation (0.26 sec)

  1. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/tests/dependenciesBlock.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:36:36 UTC 2024
    - 78 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

        public void apply(Project project) {
            ExampleExtension example = project.getExtensions().create("example", ExampleExtension.class);
    // tag::wire-dependencies[]
            project.getConfigurations().dependencyScope("exampleImplementation", conf -> {
                conf.fromDependencyCollector(example.getDependencies().getImplementation());
            });
    // end::wire-dependencies[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
Back to top