Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildPathSource (0.3 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

         * </ul>
         */
        static class BuildPathSource extends PathSource implements ModelSource, CacheMetadata {
    
            /**
             * Constructs a new ModelPathSource.
             *
             * @param path the filesystem path to the source content
             */
            BuildPathSource(Path path) {
                super(path, null);
            }
    
            @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/test/java/org/apache/maven/api/services/SourcesTest.java

            when(locator.locateExistingPom(any(Path.class))).thenReturn(resolvedPath);
    
            Sources.BuildPathSource source = (Sources.BuildPathSource) Sources.buildSource(basePath);
            ModelSource resolved = source.resolve(locator, "subproject");
    
            assertNotNull(resolved);
            assertInstanceOf(Sources.BuildPathSource.class, resolved);
            assertEquals(resolvedPath, resolved.getPath());
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top