Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for border (0.23 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                            "site")),
                    pom.getValue("reporting/outputDirectory"));
        }
    
        @Test
        void testPluginOrder() throws Exception {
            PomTestWrapper pom = buildPom("plugin-order");
            assertEquals("plexus-component-metadata", pom.getValue("build/plugins[1]/artifactId"));
            assertEquals("maven-surefire-plugin", pom.getValue("build/plugins[2]/artifactId"));
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. 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 {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // which may cause some re-entrance in the build() method and can
                // actually cause deadlocks.  In order to workaround the problem,
                // we do a first pass by reading all rawModels in order.
                List<ProjectBuildingResult> results = new ArrayList<>();
                boolean failure = false;
                for (InterimResult r : interimResults) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        Version.V20,
                        "modelVersion",
                        null,
                        "of '" + string + "' is older than the versions supported by this version of Maven: "
                                + validVersions + ". Building this project requires an older version of Maven.",
                        tracker);
    
            } else {
                addViolation(
                        problems,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top