Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for directory (0.29 sec)

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

            assertPathWithNormalizedFileSeparators(pom.getValue("build/testSourceDirectory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/resources[1]/directory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/testResources[1]/directory"));
            assertPathWithNormalizedFileSeparators(pom.getValue("build/filters[1]"));
            assertPathWithNormalizedFileSeparators(pom.getValue("reporting/outputDirectory"));
    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

         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
         * @return paths of all artifacts placed on the classpath.
         * @throws DependencyResolutionRequiredException if an artifact file is used, but has not been resolved
         */
    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

                    try {
                        modelBuildingRequest.setRootDirectory(session.getRootDirectory());
                    } catch (IllegalStateException e) {
                        // can happen if root directory cannot be found, just ignore
                    }
                }
                */
    
                return modelBuildingRequest;
            }
    
    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.BASE,
                                "modules.module[" + i + "]",
                                null,
                                "has been specified without a path to the project directory.",
                                m.getLocation("modules"));
                    }
                }
            }
    
            validateStringNotEmpty("version", problems, Severity.ERROR, Version.BASE, m.getVersion(), m);
    
    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