Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for do (0.27 sec)

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

         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
        public void afterProjectsRead(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after MavenSession instance has been created.
         *
         * This callback is intended to allow extensions to inject execution properties,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

                    // do nothing for now
                }
            }
    
            for (Repository pluginRepository : settings.getPluginRepositories()) {
                try {
                    request.addPluginArtifactRepository(MavenRepositorySystem.buildArtifactRepository(pluginRepository));
                } catch (InvalidRepositoryException e) {
                    // do nothing for now
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

        /**
         * Default ctor for Plexus compatibility, as many plugins have artifact handlers declared in legacy Plexus XML.
         * Do not use directly!
         *
         * @deprecated This ctor is present only for Plexus XML defined component compatibility, do not use it.
         */
        @Deprecated
        public DefaultArtifactHandler() {
            this.type = null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

                        try {
                            request.addRemoteRepository(MavenRepositorySystem.buildArtifactRepository(remoteRepository));
                        } catch (InvalidRepositoryException e) {
                            // do nothing for now
                        }
                    }
    
                    List<Repository> pluginRepositories = rawProfile.getPluginRepositories();
                    for (Repository pluginRepo : pluginRepositories) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java

            }
            if (path == null) {
                paths.remove(id);
            } else {
                paths.put(id, path);
            }
        }
    
        /**
         * Retrieve a stream of the project's artifacts.
         * Do not include the POM artifact as the file can't be set anyway.
         */
        private Stream<org.apache.maven.artifact.Artifact> getProjectArtifacts(MavenProject project) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        /**
         * This is the case where the Mojo wants to execute on every project and then do something at the end
         * with the results of each project.
         */
        @Test
        void testAggregatorMojo() throws Exception {}
    
        /**
         * This is the case where a Mojo needs the lifecycle run to a certain phase before it can do
         * anything useful.
         */
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

                } else {
                    unresolvedOptionalSelectors.add(selector);
                }
            }
    
            if (!unresolvedOptionalSelectors.isEmpty()) {
                LOGGER.info("The requested optional projects {} do not exist.", unresolvedOptionalSelectors);
            }
    
            return resolvedOptionalProjects;
        }
    
        private List<MavenProject> getChildProjects(MavenProject parent, MavenExecutionRequest request) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

            return build(parser, trim, null);
        }
    
        /**
         * @since 3.2.0
         * @param locationBuilder builder
         * @param parser the parser
         * @param trim do trim
         * @return DOM
         * @throws XmlPullParserException XML well-formedness error
         * @throws IOException I/O error reading file or stream
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        /**
         * Default ctor is used in IT and most probably some 3rd party code. For those cases, we do provide sane defaults
         * but given this is a component, injection should be used, replacing direct instantiation.
         *
         * @deprecated Do not use this ctor directly, inject this component instead.
         */
        @Deprecated
        public DefaultMojoExecutionConfigurator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListenerForDepMgmt.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.resolver;
    
    import org.apache.maven.artifact.Artifact;
    
    /**
     * Do not use!
     * <p>
     * Should only be implemented by DebugResolutionListener.  Remove this
     * when the ResolutionListener interface deprecation of the manageArtifact
     * method (and the [yet to be done] addition of these methods to that
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top