Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ConnectedResource (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            assertEquals(
                    "custom-output", customResource.getTargetPath(), "targetPath should be preserved in ConnectedResource");
    
            // Test that includes modification preserves targetPath (tests ConnectedResource functionality)
            customResource.addInclude("*.properties");
            assertEquals(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    .build());
        }
    
        private Resource toConnectedResource(SourceRoot sourceRoot, ProjectScope scope) {
            return new ConnectedResource(sourceRoot, scope, this);
        }
    
        private void addResource(ProjectScope scope, Resource resource) {
            addSourceRoot(new DefaultSourceRoot(getBaseDirectory(), scope, resource.getDelegate()));
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
Back to Top