Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for whale (0.12 sec)

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

            this.projectId = projectId;
            this.pomFile = pomFile;
        }
    
        public ProjectBuildingException(List<ProjectBuildingResult> results) {
            super("Some problems were encountered while processing the POMs");
            this.projectId = "";
            this.results = results;
        }
    
        public File getPomFile() {
            return pomFile;
        }
    
        /**
         * @deprecated use {@link #getPomFile()}
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

            builder.append("type:").append(getType());
            builder.append('{');
    
            Iterator<Map.Entry<String, RequirementMatcher>> providesIter =
                    provides.entrySet().iterator();
            while (providesIter.hasNext()) {
                Map.Entry<String, RequirementMatcher> provideEntry = providesIter.next();
                builder.append(provideEntry.getKey()).append(" = ").append(provideEntry.getValue());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

    ~~ under the License.
    
      ---
      Getting to Plexus-configured Mojos
      ---
      John Casey
      ---
      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
      at the same time avoiding introducing required plexus dependencies into the
      mojo development model.
    
      In order to really achieve this, we need mojo configurations (which are
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 30 15:20:35 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

    import static java.util.Objects.requireNonNull;
    
    /**
     * A maven workspace reader that delegates to a chain of other readers, effectively aggregating their contents.
     * <p>
     * This class, while technically is not immutable, should be considered as such once set up. If not mutated, it is also
     * thread-safe. The mutation of this class instances should happen beforehand their use in session.
     */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

        private List<Artifact> getTrail() throws OverConstrainedVersionException {
            if (trail == null) {
                List<Artifact> ids = new LinkedList<>();
                ResolutionNode node = this;
                while (node != null) {
                    Artifact artifact = node.getArtifact();
                    if (artifact.getVersion() == null) {
                        // set the recommended version
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

            this.modelParsers = modelParsers;
        }
    
        @Override
        public Path locateExistingPom(Path projectDirectory) {
            // Note that the ModelProcessor#locatePom never returns null
            // while the ModelParser#locatePom needs to return an existing path!
            Path pom = modelParsers.stream()
                    .map(m -> m.locate(projectDirectory)
                            .map(org.apache.maven.api.services.Source::getPath)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataSource.java

         * @return {@link List} $lt; {@link ArtifactVersion} &gt;
         * @throws ArtifactMetadataRetrievalException
         *          in case of error while retrieving repository metadata from the repository.
         */
        List<ArtifactVersion> retrieveAvailableVersions(
                Artifact artifact, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataInstallationException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.repository.metadata;
    
    /**
     * Error while installing repository metadata.
     *
     */
    @Deprecated
    public class RepositoryMetadataInstallationException extends Throwable {
        public RepositoryMetadataInstallationException(String message) {
            super(message);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/versioning/ManagedVersionMap.java

            }
        }
    
        public String toString() {
            StringBuilder buffer = new StringBuilder("ManagedVersionMap (" + size() + " entries)\n");
            Iterator<String> iter = keySet().iterator();
            while (iter.hasNext()) {
                String key = iter.next();
                buffer.append(key).append('=').append(get(key));
                if (iter.hasNext()) {
                    buffer.append('\n');
                }
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformer.java

    import java.nio.file.Path;
    
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.Model;
    
    /**
     * The ModelTransformer is a way to transform the local pom while streaming the input.
     *
     * The {@link #transform(ModelTransformerContext, Model, Path)} method uses a Path on purpose, to ensure the
     * local pom is the original source.
     *
     * @since 4.0.0
     */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top