Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,195 for Maven (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/Maven.java

     * under the License.
     */
    package org.apache.maven;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.execution.MavenExecutionResult;
    
    /**
     * The main Maven execution entry point, which will execute a full Maven execution session.
     *
     * @see org.apache.maven.execution.MavenSession
     */
    public interface Maven {
        @Deprecated
        @SuppressWarnings("checkstyle:constantname")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.internal.MultilineMessageHelper;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    import org.apache.maven.lifecycle.LifecycleNotFoundException;
    import org.apache.maven.lifecycle.LifecyclePhaseNotFoundException;
    import org.apache.maven.lifecycle.MavenExecutionPlan;
    import org.apache.maven.lifecycle.internal.DefaultLifecyclePluginAnalyzer;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultToolchainsBuilder.java

    import org.apache.maven.api.services.ToolchainsBuilderException;
    import org.apache.maven.api.services.ToolchainsBuilderRequest;
    import org.apache.maven.api.services.ToolchainsBuilderResult;
    import org.apache.maven.api.toolchain.PersistedToolchains;
    import org.apache.maven.toolchain.building.DefaultToolchainsBuildingRequest;
    import org.apache.maven.toolchain.building.ToolchainsBuildingException;
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Mon Sep 11 16:14:36 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.BuildPluginManager;
    import org.apache.maven.plugin.InvalidPluginDescriptorException;
    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

    import org.apache.maven.lifecycle.internal.MojoExecutor;
    import org.apache.maven.lifecycle.internal.TaskSegment;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.InvalidPluginDescriptorException;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java

            "test", "org.apache.maven.plugins:maven-surefire-plugin:" + SUREFIRE_PLUGIN_VERSION + ":test",
            "package", "org.apache.maven.plugins:maven-jar-plugin:" + JAR_PLUGIN_VERSION + ":jar",
            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: jar
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

     * under the License.
     */
    package org.apache.maven.api;
    
    import java.nio.file.Path;
    import java.time.Instant;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.NoSuchElementException;
    import java.util.Optional;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleExecutionPlanCalculator.java

    import org.apache.maven.plugin.MojoNotFoundException;
    import org.apache.maven.plugin.PluginDescriptorParsingException;
    import org.apache.maven.plugin.PluginNotFoundException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.apache.maven.api.Session;
    import org.apache.maven.api.services.ProjectManager;
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.classrealm.ClassRealmManager;
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.Key;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

    import org.apache.maven.api.Node;
    import org.apache.maven.api.Plugin;
    import org.apache.maven.api.model.PluginExecution;
    import org.apache.maven.api.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    import org.apache.maven.api.xml.XmlNode;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.eclipse.aether.graph.DependencyNode;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top