Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for projectFile (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t01/ProjectInheritanceTest.java

            MavenProject p0 = getProject(projectFile("maven.t01", "p0"));
    
            assertEquals("p0-org", p0.getOrganization().getName());
    
            // ----------------------------------------------------------------------
            // Check p1 value for org name
            // ----------------------------------------------------------------------
    
            MavenProject p1 = getProject(projectFile("maven.t01", "p1"));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue May 27 13:59:13 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/AbstractProjectInheritanceTestCase.java

            String className = getClass().getPackage().getName();
    
            return className.substring(className.lastIndexOf('.') + 1);
        }
    
        protected File projectFile(String name) {
            return projectFile("maven", name);
        }
    
        protected File projectFile(String groupId, String artifactId) {
            return new File(getLocalRepositoryPath(), "/" + groupId + "/poms/" + artifactId + "-1.0.pom");
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Feb 08 16:25:25 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            String basedir = null;
    
            if (project != null) {
                File projectFile = project.getBasedir();
    
                // this should always be the case for non-super POM instances...
                if (projectFile != null) {
                    basedir = projectFile.getAbsolutePath();
                }
            }
    
            if (basedir == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

     */
    @Deprecated(since = "4.0.0")
    public interface ProjectBuilder {
    
        /**
         * Builds a project descriptor from the specified POM file.
         *
         * @param projectFile The POM file to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            this.properties = session.getEffectiveProperties(project);
            this.project = project;
    
            Path basedir = null;
    
            if (project != null) {
                Path projectFile = project.getBasedir();
                basedir = projectFile.toAbsolutePath();
            }
    
            if (basedir == null) {
                basedir = session.getTopDirectory();
            }
    
            if (basedir == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

        //
        // ----------------------------------------------------------------------
    
        @Test
        void testProjectInheritance() throws Exception {
            MavenProject p4 = getProject(projectFile("p4"));
    
            assertEquals("p4", p4.getName());
    
            // ----------------------------------------------------------------------
            // Value inherited from p3
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top