Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 8K bytes
    - Viewed (0)
  2. 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??
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top