Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,107 for resolveRed (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseExternalDependency.java

        private final boolean resolved;
        private final DefaultEclipseComponentSelector attemptedSelector;
    
        private DefaultEclipseExternalDependency(File file, File javadoc, File source, ModuleVersionIdentifier identifier, boolean exported, List<DefaultClasspathAttribute> attributes, List<DefaultAccessRule> accessRules, boolean resolved, String attemptedSelector) {
            super(exported, attributes, accessRules);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        }
    
        public void setClassifier(String classifier) {
            this.classifier = classifier;
        }
    
        public boolean isResolved() {
            return resolved;
        }
    
        public void setResolved(boolean resolved) {
            this.resolved = resolved;
        }
    
        public String getUri() {
            return uri;
        }
    
        public void setUri(String uri) {
            this.uri = uri;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            succeeds "publish"
    
            then:
            def first = javaLibrary(mavenRepo.module('org', 'root-first', '1.0'))
            def resolved = first.parsedPom.scopes.runtime.dependencies.values()
            resolved*.groupId == ["com", "org"]
            resolved*.artifactId == ["other", "foo"]
            resolved*.version == ["2.0", "3.0"]
    
            when:
            def resolution = mavenResolver.resolveDependency("org", "root-first", "1.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResult.java

     */
    public interface PluginVersionResult {
    
        /**
         * The resolved plugin version.
         *
         * @return The resolved plugin version, never {@code null}.
         */
        String getVersion();
    
        /**
         * The repository from which the plugin version was resolved.
         *
         * @return The repository from which the plugin version was resolved, never {@code null}.
         */
        ArtifactRepository getRepository();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentResolveResult.java

    public interface BuildableComponentResolveResult extends ComponentResolveResult, ResourceAwareResolveResult {
        /**
         * Marks the component as resolved, with the given graph resolution state.
         */
        void resolved(ComponentGraphResolveState state, ComponentGraphSpecificResolveState graphState);
    
        /**
         * Marks the resolve as failed with the given exception.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 13:05:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ComponentDependencyResolver.java

     * are resolved to component-level precision, meaning the coordinates of the resolved
     * variant's owning component are returned.
     */
    public interface ComponentDependencyResolver {
    
        /**
         * Determines the published coordinates for an external dependency to component-level precision.
         *
         * @return null if the external dependency could not be resolved.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight[0].name == 'foo:bar:2.0'
            barInsight[0].resolvable == 'RESOLVED'
            barInsight[0].hasConflict == false
            barInsight[0].description == null
            barInsight[0].children.size() == 0
    
            barInsight[1].name == 'foo:bar:2.0'
            barInsight[1].resolvable == 'RESOLVED'
            barInsight[1].hasConflict == false
            barInsight[1].description == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

     * resolved coordinates for a given dependency.
     *
     * <p>The configuration being resolved should declare the same dependencies as the variant
     * being published. Then, each outgoing edge of the analyzed resolution result will correspond
     * to each declared dependency on the published variant. We build a mapping from requested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    Any other kind of processing, for example through <<resolution_rules.adoc#resolution_rules,a rule changing the resolved version>>, will not be taken into account for the publication.
    
    Resolved versions::
    This strategy publishes the versions that were resolved during the build, possibly by applying resolution rules and automatic conflict resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

         *            null}.
         * @param session The repository session to use for resolving the plugin's main artifact, must not be {@code null}.
         * @return The resolved plugin artifact, never {@code null}.
         * @throws PluginResolutionException If the plugin artifact could not be resolved.
         */
        Artifact resolve(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginResolutionException;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top