Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Reimplement (0.25 sec)

  1. 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)
  2. maven-core/src/site/apt/offline-mode.apt

    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
      field in the mojo descriptor has the following semantics:
    
      [true] Online status is required for this mojo to function
             correctly.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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