Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getModulePathAdjustment (0.99 sec)

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

                    "maven-project-tests" + System.currentTimeMillis() + "/child/pom.xml");
    
            childProject.setFile(childFile);
    
            String adjustment = parentProject.getModulePathAdjustment(childProject);
    
            assertNotNull(adjustment);
    
            assertEquals("..", adjustment);
        }
    
        @Test
        void testIdentityProtoInheritance() {
            Parent parent = new Parent();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 28 09:44:37 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private ProjectBuildingRequest projectBuilderConfiguration;
    
        private Map<String, String> moduleAdjustments;
    
        @Deprecated // This appears only to be used in test code
        public String getModulePathAdjustment(MavenProject moduleProject) throws IOException {
            // FIXME: This is hacky. What if module directory doesn't match artifactid, and parent
            // is coming from the repository??
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
Back to top