Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for runtimeScope (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter.java

            } else if (Artifact.SCOPE_RUNTIME.equals(scope)) {
                compileScope = true;
                runtimeScope = true;
            } else if (Artifact.SCOPE_COMPILE_PLUS_RUNTIME.equals(scope)) {
                systemScope = true;
                providedScope = true;
                compileScope = true;
                runtimeScope = true;
            } else if (Artifact.SCOPE_RUNTIME_PLUS_SYSTEM.equals(scope)) {
                systemScope = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                            runtimeScope.add(mavenDependency);
                            break;
                        case "system":
                            systemScope.add(mavenDependency);
                            break;
                    }
                }
            }
    
            List<Dependency> result = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MavenImmutableAttributesFactory.java

        Attribute<String> CATEGORY_ATTRIBUTE = Attribute.of(Category.CATEGORY_ATTRIBUTE.getName(), String.class);
    
        ImmutableAttributes compileScope(ImmutableAttributes original);
        ImmutableAttributes runtimeScope(ImmutableAttributes original);
        ImmutableAttributes platformWithUsage(ImmutableAttributes original, String usage, boolean enforced);
        ImmutableAttributes sourcesVariant(ImmutableAttributes original);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/JavaEcosystemVariantDerivationStrategy.java

            ImmutableAttributes attributes = attributesFactory.runtimeScope(originAttributes);
            return conf.mutate()
                .withAttributes(attributes)
                .withoutConstraints()
                .build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMavenImmutableAttributesFactory.java

                result = concat(result, CATEGORY_ATTRIBUTE, new CoercingStringValueSnapshot(Category.LIBRARY, objectInstantiator));
                return result;
            });
        }
    
        @Override
        public ImmutableAttributes runtimeScope(ImmutableAttributes original) {
            List<Object> key = ImmutableList.of(original, Usage.JAVA_RUNTIME);
            return concatCache.computeIfAbsent(key, k -> {
                ImmutableAttributes result = original;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.class package org.apache.maven.artifact.resolver.filter; public synchronized class ScopeArtifactFilter implements ArtifactFilter { private final boolean compileScope; private final boolean runtimeScope; private final boolean testScope; private final boolean providedScope; private final boolean systemScope; public void ScopeArtifactFilter(String); public boolean include(org.apache.maven.artifact.Artifact); } org/apache/maven/artifact/resolver...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.class package org.apache.maven.artifact.resolver.filter; public synchronized class ScopeArtifactFilter implements ArtifactFilter { private final boolean compileScope; private final boolean runtimeScope; private final boolean testScope; private final boolean providedScope; private final boolean systemScope; public void ScopeArtifactFilter(String); public boolean include(org.apache.maven.artifact.Artifact); } org/apache/maven/artifact/resolver...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
Back to top