Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fare (0.17 sec)

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

     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Severity.WARNING,
                            Version.BASE,
                            "parent.version",
                            null,
                            "is either LATEST or RELEASE (both of them are being deprecated)",
                            parent);
                }
            }
    
            if (request.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            if (listener != null) {
                ModelBuildingEvent event = new DefaultModelBuildingEvent(model, request, problems);
    
                catapult.fire(listener, event);
            }
        }
    
        private boolean containsCoordinates(String message, String groupId, String artifactId, String version) {
            return message != null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            null,
                            "is either LATEST or RELEASE (both of them are being deprecated)",
                            parent);
                }
            }
    
            if (request.getValidationLevel() == ModelBuilderRequest.VALIDATION_LEVEL_MINIMAL) {
                // profiles: they are essential for proper model building (may contribute profiles, dependencies...)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top