Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 815 for Projects (0.03 sec)

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

    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A Maven artifact is a file, typically a JAR, that is produced and used by Maven projects.
     * It is identified by a unique combination of a group ID, artifact ID, version, classifier,
     * and extension, and it is stored in a repository for dependency management and build purposes.
     *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

    /**
     * Provides access to the contents of a source independently of the
     * backing store (e.g. file system, database, memory).
     * <p>
     * This is mainly used to parse files into objects such as Maven projects,
     * models, settings, or toolchains. The source implementation handles
     * all the details of accessing the underlying content while providing
     * a uniform API to consumers.
     * <p>
     * Sources can represent:
     * <ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java

            writer.accept("=== PROJECT BUILD PLAN ================================================");
            writer.accept("Project:                     " + getKey(project));
            writer.accept("Repositories (dependencies): " + project.getRemoteProjectRepositories());
            writer.accept("Repositories (plugins):      " + project.getRemotePluginRepositories());
    
            Optional<BuildStep> planStep = plan.step(project, BuildStep.PLAN);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. docs/en/docs/history-design-future.md

    It is being chosen over previous alternatives for suiting many use cases better.
    
    Many developers and teams already depend on **FastAPI** for their projects (including me and my team).
    
    But still, there are many improvements and features to come.
    
    **FastAPI** has a great future ahead.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. PULL_REQUESTS_ETIQUETTE.md

    # MinIO Pull Request Guidelines
    
    These guidelines ensure high-quality commits in MinIO’s GitHub repositories, maintaining 
    a clear, valuable commit history for our open-source projects. They apply to all contributors, 
    fostering efficient reviews and robust code.
    
    ## Why Pull Requests?
    
    Pull Requests (PRs) drive quality in MinIO’s codebase by:
    - Enabling peer review without pair programming.
    - Documenting changes for future reference.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun May 25 16:32:03 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide features that are useful across boundaries of projects, companies,
            or even industries &mdash; utilities useful for a sizable proportion of all Java programmers
            everywhere. If you can give enough detail such that any of us can imagine coming across
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.junit.jupiter.api.Assertions.fail;
    
    /**
     * Test to verify that repositories from one project don't leak to sibling projects.
     */
    @PlexusTest
    public class RepositoryLeakageTest extends AbstractMavenProjectTestCase {
    
        @Test
        @SuppressWarnings("checkstyle:MethodLength")
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

    public class ArtifactResolutionRequest implements RepositoryRequest {
        private static final String LS = System.lineSeparator();
    
        private Artifact artifact;
    
        // Needs to go away
        // These are really overrides now, projects defining dependencies for a plugin that override what is
        // specified in the plugin itself.
        private Set<Artifact> artifactDependencies;
    
        private ArtifactRepository localRepository;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

    /**
     * A model resolver to assist building of projects. This resolver gives priority to those repositories that have been
     * declared in the POM.
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
        private List<RemoteRepository> repositories;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        private String deprecated;
    
        /**
         * Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects listed as
         * modules. By default, no need to aggregate the Maven project and its child modules
         */
        private boolean aggregator = false;
    
        // ----------------------------------------------------------------------
        //
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
Back to top