Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MavenExecutionRequestPopulationException (0.2 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulationException.java

    package org.apache.maven.execution;
    
    /**
     */
    public class MavenExecutionRequestPopulationException extends Exception {
        public MavenExecutionRequestPopulationException(String message) {
            super(message);
        }
    
        public MavenExecutionRequestPopulationException(Throwable cause) {
            super(cause);
        }
    
        public MavenExecutionRequestPopulationException(String message, Throwable cause) {
            super(message, cause);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         * @return The populated execution request, never {@code null}.
         * @throws MavenExecutionRequestPopulationException If the execution request could not be populated.
         * @since 3.3.0
         */
        MavenExecutionRequest populateFromToolchains(MavenExecutionRequest request, PersistedToolchains toolchains)
                throws MavenExecutionRequestPopulationException;
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            this.repositorySystem = repositorySystem;
        }
    
        @Override
        public MavenExecutionRequest populateFromToolchains(MavenExecutionRequest request, PersistedToolchains toolchains)
                throws MavenExecutionRequestPopulationException {
            if (toolchains != null) {
                Map<String, List<ToolchainModel>> groupedToolchains = new HashMap<>(2);
    
                for (ToolchainModel model : toolchains.getToolchains()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

    import org.apache.maven.building.Source;
    import org.apache.maven.cli.CLIManager;
    import org.apache.maven.cli.CliRequest;
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.execution.MavenExecutionRequestPopulationException;
    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Profile;
    import org.apache.maven.settings.Proxy;
    import org.apache.maven.settings.Repository;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.ExecutionListener;
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.execution.MavenExecutionRequestPopulationException;
    import org.apache.maven.execution.MavenExecutionRequestPopulator;
    import org.apache.maven.execution.MavenExecutionResult;
    import org.apache.maven.execution.ProfileActivation;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top