Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Reimplement (0.3 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java

     */
    package org.apache.maven.repository.metadata;
    
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * Resolves conflicts in the supplied dependency graph.
     * Different implementations will implement different conflict resolution policies.
     *
     */
    @Deprecated
    public interface GraphConflictResolver {
        String ROLE = GraphConflictResolver.class.getName();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    Getting Started
    ---------------
    
    + Make sure you have a [JIRA account](https://issues.apache.org/jira/).
    + Make sure you have a [GitHub account](https://github.com/signup/free).
    + If you're planning to implement a new feature, it makes sense to discuss your changes
      on the [dev list](https://maven.apache.org/mailing-lists.html) first.
      This way you can make sure you're not wasting your time on something that isn't
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainFactory.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface ToolchainFactory {
        // TODO: implement ToolchainFactory
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

                        ((ArtifactsSetWithResult) projectArtifacts).getResult(), projectArtifacts);
            } else {
                throw new IllegalArgumentException("projectArtifacts must implement ArtifactsSetWithResult");
            }
    
            CacheRecord record = new CacheRecord(artifacts);
            cache.put(key, record);
            return record;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            return new MappedList<>(node.getRepositories(), session::getRemoteRepository);
        }
    
        @Override
        public Optional<RemoteRepository> getRepository() {
            // TODO: v4: implement
            throw new UnsupportedOperationException("Not implemented yet");
        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
     We once had a document that Vincent and I agreed upon and I was about to
     implement it and then I disappeared for 8 months so it never came to pass.
    
     So I guess it's important to figure out what people are using properties
     files for and see if we can't incorporate it all into the POM. Or if we do
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                    public String id() {
                        return lifecycle.getId();
                    }
    
                    @Override
                    public Collection<Phase> phases() {
                        // TODO: implement
                        throw new UnsupportedOperationException();
                    }
                };
            }
        }
    
        static class CleanLifecycle implements Lifecycle {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top