Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Mets (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

     *
     */
    public interface DependencyResolutionRequest {
    
        /**
         * Gets the project to resolve dependencies for.
         *
         * @return The project to resolve dependencies for or {@code null} if not set.
         */
        MavenProject getMavenProject();
    
        /**
         * Sets the project to resolve dependencies for.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

         */
        MetadataResolutionRequest setOffline(boolean offline);
    
        /**
         * Gets the artifact to resolve metadata for.
         *
         * @return The artifact to resolve metadata for or {@code null} if not set.
         */
        Artifact getArtifact();
    
        /**
         * Sets the artifact for which to resolve metadata.
         *
         * @param artifact The artifact for which to resolve metadata.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

         */
        void setSession(MavenSession session);
    
        /**
         * Gets the currently active session.
         *
         * @return The currently active session or {@code null} if none.
         */
        MavenSession getSession();
    
        /**
         * Gets the currently active repository session.
         *
         * @return The currently active repository session or {@code null} if none.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

     *
     */
    public interface DependencyResolutionResult {
    
        /**
         * Gets the dependency graph of the project.
         *
         * @return The dependency graph or {@code null} if not available.
         */
        DependencyNode getDependencyGraph();
    
        /**
         * Gets the transitive dependencies of the project that were not excluded by
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java

         * @return if it is a snapshot
         */
        boolean isSnapshot();
    
        /**
         * Gets the artifact quality this metadata refers to. One of {@link #RELEASE}, {@link #SNAPSHOT} or
         * {@link #RELEASE_OR_SNAPSHOT}.
         *
         * @return The artifact quality this metadata refers to.
         */
        int getNature();
    
        /**
         * Gets the policy that applies to this metadata regarding the specified repository.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java

            this.columnNumber = columnNumber;
        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        public ArtifactResolutionRequest setRemoteRepositories(List<ArtifactRepository> remoteRepositories) {
            this.remoteRepositories = remoteRepositories;
    
            return this;
        }
    
        /**
         * Gets the artifact filter that controls traversal of the dependency graph.
         *
         * @return The filter used to determine which of the artifacts in the dependency graph should be traversed or
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

        private Path projectDirectory;
    
        @Override
        public List<String> getActiveProfileIds() {
            return activeProfileIds;
        }
    
        /**
         * Sets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @param activeProfileIds The identifiers of those profiles to activate, may be {@code null}.
         * @return This context, never {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

     *
     * @since 3.0-alpha
     */
    public interface ProjectDependencyGraph {
    
        /**
         * Gets all collected projects.
         *
         * @return All collected projects.
         *
         * @since 3.5.0
         */
        List<MavenProject> getAllProjects();
    
        /**
         * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their
         * interdependencies.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

         */
        public LifecycleNotFoundException(String lifecycleId) {
            super("Unknown lifecycle " + lifecycleId);
            this.lifecycleId = (lifecycleId != null) ? lifecycleId : "";
        }
    
        /**
         * Gets the identifier of the lifecycle that was not found.
         *
         * @return The identifier of the lifecycle that was not found, never {@code null}.
         */
        public String getLifecycleId() {
            return lifecycleId;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
Back to top