Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,307 for projets (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

     *
     * <p>A toolchain is a set of tools that can be used to build a project.
     * This interface allows users to define and configure various toolchains
     * that can be utilized by Maven during the build process. Toolchains can
     * include compilers, interpreters, and other tools that are necessary
     * for building a project in a specific environment.</p>
     *
     * <p>Toolchains are defined in the Maven toolchains.xml file and can be
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. docs/contribute/code_of_conduct.md

     * **Be pragmatic**: Questions are encouraged and should be asked early in the process to avoid
       problems later. Be thoughtful and considerate when seeking out the appropriate forum for your
       questions. Those who are asked should be responsive and helpful.
    
     * **Step down considerately**: Members of every project come and go. When somebody leaves or
       disengages from the project, they should make it known and take the proper steps to ensure that
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         * is a prerequisite of the given project.
         *
         * @param project The project whose upstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect upstream projects or just the immediate
         *            upstream projects.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

            activeProjectSelectors.forEach(this::activateOptionalProject);
        }
    
        /**
         * Overwrites the inactive projects based on a pre-Maven 4 "inactive projects" list.
         * @param inactiveProjectSelectors A {@link List} of project selectors that must be deactivated.
         * @deprecated Use {@link #deactivateOptionalProject(String)} or {@link #deactivateRequiredProject(String)} instead.
         */
        @Deprecated
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

         * filtering. This causes build ordering issues in concurrent builders.
         */
        private List<MavenProject> applyFilter(
                Collection<? extends MavenProject> projects, boolean transitive, boolean upstream) {
            List<MavenProject> filtered = new ArrayList<>(projects.size());
            for (MavenProject project : projects) {
                if (whiteList.containsKey(project)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

            for (MavenProject project : projects) {
                request.setArtifact(new ProjectArtifact(project));
                request.setArtifactDependencies(project.getDependencyArtifacts());
                request.setManagedVersionMap(project.getManagedVersionMap());
                request.setRemoteRepositories(project.getRemoteArtifactRepositories());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                throws DuplicateProjectException {
            Map<String, MavenProject> index = new LinkedHashMap<>();
            Map<String, List<File>> collisions = new LinkedHashMap<>();
    
            for (MavenProject project : projects) {
                String projectId = ArtifactUtils.key(project.getGroupId(), project.getArtifactId(), project.getVersion());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 27.5K bytes
    - Viewed (1)
  8. docs/en/docs/virtual-environments.md

    // Create a directory for this project
    $ mkdir awesome-project
    // Enter into that project directory
    $ cd awesome-project
    ```
    
    </div>
    
    ## Create a Virtual Environment
    
    When you start working on a Python project **for the first time**, create a virtual environment **<abbr title="there are other options, this is a simple guideline">inside your project</abbr>**.
    
    /// tip
    
    You only need to do this **once per project**, not every time you work.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

        }
    
        @Override
        public List<Project> getProjects(List<MavenProject> projects) {
            return projects == null ? null : map(projects, this::getProject);
        }
    
        @Override
        public Project getProject(MavenProject project) {
            return project != null && project.getBasedir() != null
                    ? allProjects.computeIfAbsent(project.getId(), id -> new DefaultProject(this, project))
                    : null;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

         * from any repository but are present among the set of specified projects will not cause an exception. Instead,
         * those unresolved artifacts will be returned in the result set, allowing the caller to take special care of
         * artifacts that haven't been build yet.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top