Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for getParents (0.19 sec)

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

                                .listener(listener)
                                .build();
    
                        if (pomFile != null) {
                            project.setRootDirectory(rootLocator.findRoot(pomFile.getParent()));
                        }
    
                        ModelBuilderResult result;
                        try {
                            result = modelBuilder.build(request);
    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)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-3567*/
        @Test
        void testParentInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("parent-interpolation/sub");
            pom = new PomTestWrapper(pom.getMavenProject().getParent());
            assertEquals("1.3.0-SNAPSHOT", pom.getValue("build/plugins[1]/version"));
        }
    
        /*
        public void testMaven()
            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. api/maven-api-model/src/main/mdo/maven.mdo

         *         project (e.g. describes the metadata of some artifact from the repository).
         */
        public Path getProjectDirectory() {
            return (pomFile != null) ? pomFile.getParent() : null;
        }
    
        /**
         * @return the model id as {@code groupId:artifactId:packaging:version}
         */
        public String getId()
        {
            StringBuilder id = new StringBuilder( 64 );
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top