Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,364 for dependents (0.83 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param dependency dependency for which to get the coordinate
         * @return coordinate for the given dependency
         *
         * @see DependencyCoordinateFactory#create(Session, Dependency)
         */
        @Nonnull
        DependencyCoordinate createDependencyCoordinate(@Nonnull Dependency dependency);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            settingsFile << """
                include ':foo'
            """
    
            buildFile << """
                tasks.register("dependency")
            """
    
            file("foo/build.gradle") << """
                tasks.register("dependent") {
                    inputs.files(parent.tasks.findByPath(':dependency'))
                }
            """
    
            when:
            configurationCacheFails ":foo:dependent"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            // packaging type.
            for (Dependency dependency : dependencies) {
                String key = dependency.getGroupId() + ":" + dependency.getArtifactId() + ":" + dependency.getVersion()
                        + (dependency.getClassifier() != null ? ":" + dependency.getClassifier() : EMPTY);
                String mKey = m.getGroupId() + ":" + m.getArtifactId() + ":" + m.getVersion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            executes(finalized, f2, d, f1)
        }
    
        @Issue("GRADLE-2957")
        def "task with a dependency and a finalizer both having a common finalizer"() {
            // Finalizer task
            Task finalTask = task('finalTask')
    
            // Task with this finalizer
            Task dependency = task('dependency', finalizedBy: [finalTask])
            Task finalizer = task('finalizer', finalizedBy: [finalTask])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

            return scope;
        }
    
        @Override
        public void setScope(String scope) {
            this.scope = scope;
        }
    
        /**
         * Whether the library is exported to dependent modules.
         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      get as a result.
    
    * Implications for Resolution
    
    ** Dependency Resolution
    
      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. maven-embedder/pom.xml

        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-jline</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-plugin-api</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. maven-api-impl/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-xml</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-toolchain</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-di</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Click on a dependency and select the "Required By" tab to see the selection reason and origin of the dependency.
    
    image::dependency-management-dependency-insight-report-build-scan.png[]
    
    === Dependency Insights
    
    Gradle provides the built-in `dependencyInsight` task to render a  _dependency insight report_ from the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/pom.xml

        </dependency>
        <dependency>
          <groupId>ognl</groupId>
          <artifactId>ognl</artifactId>
          <version>3.0.12</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>marmalade</groupId>
          <artifactId>marmalade-core</artifactId>
          <version>0.1</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top