Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Run (0.15 sec)

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

        }
    
        /**
         * All dependencies that this project has, including transitive ones. Contents are lazily populated, so depending on
         * what phases have run dependencies in some scopes won't be included. e.g. if only compile phase has run,
         * dependencies with scope test won't be included.
         *
         * @return {@link Set} < {@link Artifact} >
         * @see #getDependencyArtifacts() to get only direct dependencies
    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)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("reporting/plugins[1]/reportSets[1]/reports")).size());
            assertEquals("run", pom.getValue("reporting/plugins[1]/reportSets[1]/reports[1]"));
        }
    
        /* MNG-2309*/
        @Test
        void testProfileInjectionOrder() throws Exception {
    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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        String jdkHome = request.getSystemProperties().get("java.home") + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
                            msg += ". Please verify that you run Maven using a JDK and not just a JRE.";
                        }
                        addViolation(
                                problems,
                                Severity.WARNING,
    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