Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 268 for proyectos (0.05 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

        String UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE = "Unable to find the root directory. "
                + "Create a .mvn directory in the root directory or add the root=\"true\""
                + " attribute on the root project's model to identify it.";
    
        @Nonnull
        default Path findMandatoryRoot(Path basedir) {
            Path rootDirectory = findRoot(basedir);
            if (rootDirectory == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

                    .map(project -> project.getGroupId() + ":" + project.getArtifactId())
                    .collect(Collectors.toList());
    
            if (remainingProjects.isEmpty()) {
                LOGGER.info("No remaining projects found, resuming the build would not make sense.");
                return Optional.empty();
            }
    
            return Optional.of(new BuildResumptionData(remainingProjects));
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. impl/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: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/collector/PomlessCollectionStrategy.java

    import org.apache.maven.project.ProjectBuilder;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingRequest;
    
    /**
     * Strategy to collect projects for building when the Maven invocation is not in a directory that contains a pom.xml.
     */
    @Named("PomlessCollectionStrategy")
    @Singleton
    public class PomlessCollectionStrategy implements ProjectCollectionStrategy {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorSubModulesTest.java

        private LifecycleTaskSegmentCalculator lifeCycleTaskSegmentCalculator;
    
        @Inject
        private ExceptionHandler exceptionHandler;
    
        protected String getProjectsDirectory() {
            return "src/test/projects/lifecycle-executor";
        }
    
        @Test
        void testCreation() throws Exception {
            assertNotNull(defaultLifeCycles);
            assertNotNull(mojoExecutor);
            assertNotNull(lifeCycleBuilder);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Convenience interface for plugins to add or replace artifacts and resources on projects.
     */
    public interface MavenProjectHelper {
        String ROLE = MavenProjectHelper.class.getName();
    
        /**
         * See {@link #attachArtifact(MavenProject, String, String, java.io.File)}, but with type set to null.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/body.md

    * Generar definiciones de <a href="https://json-schema.org" class="external-link" target="_blank">JSON Schema</a> para tu modelo, que también puedes usar en cualquier otro lugar si tiene sentido para tu proyecto.
    * Esos esquemas serán parte del esquema de OpenAPI generado y usados por las <abbr title="User Interfaces – Interfaces de usuario">UIs</abbr> de documentación automática.
    
    ## Documentación automática { #automatic-docs }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final Map<String, MavenProject> projectIndex = new ConcurrentHashMap<>(256);
    
            // Store computed repositories per project to avoid leakage between projects
            private final Map<String, List<ArtifactRepository>> projectRepositories = new ConcurrentHashMap<>();
    
            /**
             * Get the effective repositories for a project. If project-specific repositories
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginValidatorTest.java

     */
    class MavenPluginValidatorTest extends AbstractCoreMavenComponentTestCase {
        @Inject
        private MavenPluginValidator mavenPluginValidator;
    
        protected String getProjectsDirectory() {
            return "src/test/projects/default-maven";
        }
    
        @Test
        void testValidate() {
            Artifact plugin = new DefaultArtifact(
                    "org.apache.maven.its.plugins",
                    "maven-it-plugin",
                    "0.1",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

        public void afterSessionStart(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after all projects were built.
         *
         * This callback is intended to allow extensions to perform cleanup of any
         * allocated external resources after the build. It is invoked on best-effort
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top