Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uninstall (0.81 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

                                                    newPlugin("maven-jar-plugin", "jar"),
                                                    newPlugin("maven-install-plugin", "install"),
                                                    newPlugin("maven-deploy-plugin", "deploy")))
                                            .build());
                        } else {
                            return Map.of();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

                                                    newPlugin("maven-jar-plugin", "jar"),
                                                    newPlugin("maven-install-plugin", "install"),
                                                    newPlugin("maven-deploy-plugin", "deploy")))
                                            .build());
                        } else {
                            return Map.of();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}.
         *
         * @param artifacts the artifacts to install
         * @throws org.apache.maven.api.services.ArtifactInstallerException if the artifacts installation failed
         *
         * @see org.apache.maven.api.services.ArtifactInstaller#install(Session, Collection)
         */
        void installArtifacts(@Nonnull Artifact... artifacts);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                        phase("pre-integration-test"),
                        phase("integration-test"),
                        phase("post-integration-test"),
                        phase("verify"),
                        phase("install"),
                        phase("deploy"));
            }
        }
    
        static class SiteLifecycle implements Lifecycle {
    
            private static final String MAVEN_SITE_PLUGIN_VERSION = "3.12.1";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}
         *
         * @throws ArtifactInstallerException if the artifacts installation failed
         * @see ArtifactInstaller#install(Session, Collection)
         */
        @Override
        public void installArtifacts(Collection<Artifact> artifacts) {
            getService(ArtifactInstaller.class).install(this, artifacts);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top