Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PathScopeProvider (0.2 sec)

  1. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java

    import org.apache.maven.api.PathScope;
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

    import org.apache.maven.api.spi.PathScopeProvider;
    import org.apache.maven.api.spi.ProjectScopeProvider;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    public class ExtensibleEnumRegistries {
    
        @Named
        @SessionScoped
        public static class DefaultPathScopeRegistry extends DefaultExtensibleEnumRegistry<PathScope, PathScopeProvider>
                implements PathScopeRegistry {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

        @Named
        @SessionScoped
        public static class DefaultPathScopeRegistry extends DefaultExtensibleEnumRegistry<PathScope, PathScopeProvider>
                implements PathScopeRegistry {
    
            @Inject
            public DefaultPathScopeRegistry(List<PathScopeProvider> providers) {
                super(
                        providers,
                        PathScope.MAIN_COMPILE,
                        PathScope.MAIN_RUNTIME,
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

     * <p>
     * This extensible enum has four defined values, {@link #MAIN_COMPILE}, {@link #MAIN_RUNTIME},
     * {@link #TEST_COMPILE} and {@link #TEST_RUNTIME}, but can be extended by registering a
     * {@code org.apache.maven.api.spi.PathScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top