Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for manager (0.17 sec)

  1. maven-core/plugin-manager.txt

     */
    
    This document outlines the concerns of a general plugin manager that would be used in conjunction with any Plexus-based application. The following outlined concerns are an attempt to describe what a plugin manager would need to do for Maven and for Nexus.
    
    h2. Concerns for the plugin manager
    
    h3. Resolving the dependencies of a plugin
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java

        private final ConcurrentHashMap<String, Type> usedTypes;
    
        private final LegacyArtifactHandlerManager manager;
    
        @Inject
        public DefaultTypeRegistry(
                List<TypeProvider> providers, LanguageRegistry languageRegistry, LegacyArtifactHandlerManager manager) {
            this.types = nonNull(providers, "providers").stream()
                    .flatMap(p -> p.provides().stream())
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    isIncludesDependenci(); public String getLanguage(); public boolean isAddedToClasspath(); } org/apache/maven/artifact/handler/manager/ArtifactHandlerManag$1.class package org.apache.maven.artifact.handler.manager; synchronized class ArtifactHandlerManag$1 { } org/apache/maven/artifact/handler/manager/ArtifactHandlerManag.class package org.apache.maven.artifact.handler.manager; public abstract interface ArtifactHandlerManag { public static final String ROLE; public abstract org.apache.maven.artifac...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    plexus.classworlds.realm.ClassRealm); protected Object findSingleton(Object); public void initialize(); } org/codehaus/plexus/component/manager/ComponentManager$1.class package org.codehaus.plexus.component.manager; synchronized class ComponentManager$1 { } org/codehaus/plexus/component/manager/ComponentManager.class package org.codehaus.plexus.component.manager; public abstract interface ComponentManager { public static final String ROLE; public abstract ComponentManager copy(); public abstract...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.manager;
    
    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.wagon.ResourceDoesNotExistException;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        //      a hinting process which helps flesh out the full specification of the plugin. The plugin manager should
        //      only deal in concrete terms -- all version finding mumbo jumbo is a customization to base functionality
        //      the plugin manager provides.
    
        @Test
        void testRemoteResourcesPlugin() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectScopeRegistry.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.ProjectScope;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Manager for {@link ProjectScope}.
     *
     * @since 4.0.0
     */
    @Experimental
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/LegacyArtifactHandlerManager.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.handler.manager;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Nov 27 19:18:14 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java

     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.project.DuplicateArtifactAttachmentException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Exception in the plugin manager.
     */
    public class PluginExecutionException extends PluginManagerException {
    
        private final MojoExecution mojoExecution;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/ArtifactRepositoryMetadata.java

            /*
             * NOTE: Metadata at the g:a level contains a collection of available versions. After merging, we can't tell
             * which repository provides which version so the metadata manager must not restrict the artifact resolution to
             * the repository with the most recent updates.
             */
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.5K bytes
    - Viewed (0)
Back to top