Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for getScope (0.18 sec)

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

        /**
         * The type of the artifact.
         *
         * @return the type
         */
        @Nonnull
        Type getType();
    
        @Nonnull
        DependencyScope getScope();
    
        @Nullable
        Boolean getOptional();
    
        @Nonnull
        Collection<Exclusion> getExclusions();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

        }
    
        public Object getDatum() {
            return datum;
        }
    
        public void setDatum(Object datum) {
            this.datum = datum;
        }
    
        public String getScope() {
            return scope;
        }
    
        public void setScope(String scope) {
            this.scope = scope;
        }
    
        @Override
        public String toString() {
            return getGroupId() + ":" + getArtifactId() + ":" + getVersion() + ":"
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependency.java

            return DefaultModelVersionParser.checkSnapshot(dependency.getArtifact().getVersion());
        }
    
        @Nonnull
        @Override
        public DependencyScope getScope() {
            return session.requireDependencyScope(dependency.getScope());
        }
    
        @Nullable
        @Override
        public boolean isOptional() {
            return dependency.isOptional();
        }
    
        @Nonnull
        @Override
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java

                                String s1 = ArtifactScopeEnum.checkScope(md.artifactScope)
                                        .getScope();
                                String s2 = ArtifactScopeEnum.checkScope(vmd.artifactScope)
                                        .getScope();
                                return s1.compareTo(s2);
                            } else {
                                return 0;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

                currentElement.addAnnotationTypeName(child.getNameAsString());
            }
        }
    
        private String extractName(ClassOrInterfaceType type) {
            if (type.getScope().isPresent()) {
                return extractName(type.getScope().get()) + "." + type.getNameAsString();
            }
            return type.getNameAsString();
        }
    
        private String getJavadocComment(NodeWithJavadoc<?> node) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Sep 21 13:27:02 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                MetadataGraphEdge e = edges.get(0);
                if (scope.encloses(e.getScope())) {
                    return e;
                }
    
                return null;
            }
    
            MetadataGraphEdge res = null;
    
            for (MetadataGraphEdge e : edges) {
                if (!scope.encloses(e.getScope())) {
                    continue;
                }
    
                if (res == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

        String getGroupId();
    
        String getArtifactId();
    
        String getVersion();
    
        void setVersion(String version);
    
        String getScope();
    
        String getType();
    
        String getClassifier();
    
        boolean hasClassifier();
    
        File getFile();
    
        void setFile(File destination);
    
        String getBaseVersion();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Feb 09 17:47:51 GMT 2023
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java

        private final String scope;
    
        public ScopeArtifactFilter(String scope) {
            this.scope = scope;
    
            addScopeInternal(scope);
        }
    
        public String getScope() {
            return scope;
        }
    
        @Override
        public int hashCode() {
            int hash = 17;
    
            hash = hash * 31 + (scope != null ? scope.hashCode() : 0);
    
            return hash;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

        /**
         * The dependency type.
         *
         * @return the dependency type, never {@code null}
         */
        @Nonnull
        Type getType();
    
        @Nonnull
        DependencyScope getScope();
    
        boolean isOptional();
    
        /**
         * Creates a {@code DependencyCoordinate} based on this {@code Dependency}.
         *
         * @return a {@link DependencyCoordinate}
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

        }
    
        /** {@inheritDoc} */
        public void setVersion(String version) {
            artifact.setVersion(version);
        }
    
        /** {@inheritDoc} */
        public String getScope() {
            return artifact.getScope();
        }
    
        /** {@inheritDoc} */
        public String getType() {
            return artifact.getType();
        }
    
        /** {@inheritDoc} */
        public String getClassifier() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.2K bytes
    - Viewed (0)
Back to top