Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 393 for interfaces (0.15 sec)

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

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.Packaging;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 968 bytes
    - Viewed (0)
  2. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LifecycleProvider.java

    package org.apache.maven.api.spi;
    
    import org.apache.maven.api.Lifecycle;
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    @Experimental
    @Consumer
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/monitor/event/EventDispatcher.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventDispatcher {
    
        void addEventMonitor(EventMonitor monitor);
    
        void dispatchStart(String event, String target);
    
        void dispatchEnd(String event, String target);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/artifact/ArtifactWithDependencies.java

     * under the License.
     */
    package org.apache.maven.project.artifact;
    
    import java.util.List;
    
    import org.apache.maven.model.Dependency;
    
    /**
     * ArtifactWithDependencies
     */
    public interface ArtifactWithDependencies {
    
        List<Dependency> getDependencies();
    
        List<Dependency> getManagedDependencies();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java

    import java.lang.annotation.Retention;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Qualifier
    @Retention(RUNTIME)
    @Documented
    public @interface Named {
        String value() default "";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/PluginXmlFactory.java

    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    
    /**
     * Reads and writes a {@link PluginDescriptor} object to/from XML.
     *
     * @since 4.0.0
     */
    @Experimental
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. 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)
  8. api/maven-api-di/src/main/java/org/apache/maven/api/di/Priority.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({TYPE, METHOD})
    @Retention(RUNTIME)
    @Documented
    public @interface Priority {
        int value();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/transformation/ConsumerPomArtifactTransformer.java

    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Consumer POM transformer.
     *
     * @since TBD
     */
    public interface ConsumerPomArtifactTransformer {
    
        InstallRequest remapInstallArtifacts(RepositorySystemSession session, InstallRequest request);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResult.java

     */
    package org.apache.maven.plugin.version;
    
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     * Describes the result of a plugin version resolution request.
     *
     * @since 3.0
     */
    public interface PluginVersionResult {
    
        /**
         * The resolved plugin version.
         *
         * @return The resolved plugin version, never {@code null}.
         */
        String getVersion();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top