Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 92 of 92 for ProjectDependency (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ** Java: `compileOnly(Map.of("group", "foo", "name", "bar"))` becomes `getCompileOnly().add(module("foo", "bar", null))`
    * You cannot add a dependency with an instance of `Project`. You must turn it into a `ProjectDependency` first.
    * You cannot add version catalog bundles directly.
    Instead, use the `bundle` method on each configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    }
                }
                this.dependencies.put(configuration, statementGroup);
            }
    
            @Override
            public void projectDependency(String configuration, @Nullable String comment, String projectPath) {
                this.dependencies.put(configuration, new ProjectDepSpec(configuration, comment, projectPath));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top