Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 945 for During (0.05 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

    @Experimental
    public interface ParserRequest {
        String MVN_CMD = "mvn";
        String MVN_NAME = "Maven";
    
        String MVNENC_CMD = "mvnenc";
        String MVNENC_NAME = "Maven Password Encrypting Tool";
    
        /**
         * Returns the Maven command to be executed. This command is used in some invokers (ie forked) but also to
         * present help to user.
         *
         * @return the command string
         */
        @Nonnull
        String command();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/testing-dependencies.md

    # Testing Dependencies with Overrides
    
    ## Overriding dependencies during testing
    
    There are some scenarios where you might want to override a dependency during testing.
    
    You don't want the original dependency to run (nor any of the sub-dependencies it might have).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java

         * {@link ParserRequest#mvn(String[], Logger, MessageBuilderFactory)}.
         *
         * @param args the command-line arguments
         * @param logger the logger to use during parsing
         * @param messageBuilderFactory the factory for creating message builders
         * @return the parsed InvokerRequest
         * @throws ParserException if there's an error during parsing of the command or arguments
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

        Model getEffectiveModel();
    
        /**
         * Gets the profiles that were active during model building.
         *
         * @return The active profiles of the model or an empty list if the model has no active profiles.
         */
        @Nonnull
        List<Profile> getActivePomProfiles();
    
        /**
         * Gets the external profiles that were active during model building. External profiles are those that were
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link SettingsProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link SettingsBuildingException}.
         *
         * @return The problems that were encountered during the settings building, can be empty but never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java

    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.services.MavenException;
    
    /**
     * Represents an exception that occurs during the invocation of a Maven build or command.
     * This exception is typically thrown when there are errors during the execution of a Maven
     * process, such as build failures, plugin errors, or other runtime issues.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 03 16:03:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenParser.java

         * @param parserRequest the request containing all necessary information for parsing
         * @return the parsed {@link MavenInvokerRequest}
         * @throws ParserException if there's an error during parsing of the request
         * @throws IOException if there's an I/O error during the parsing process
         */
        @Nonnull
        R parse(@Nonnull ParserRequest parserRequest) throws ParserException, IOException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 03 16:03:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java

    import java.nio.file.Path;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    
    /**
     * An {@link Artifact} that is being produced by a {@link Project} during the build.
     *
     * <p>Produced artifacts includes:</p><ul>
     *     <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li>
     *     <li>{@linkplain Project#getMainArtifact() the main artifact}</li>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the model building listener to notify during the build process.
         *
         * @return The model building listener to notify or {@code null} if none.
         */
        ModelBuildingListener getModelBuildingListener();
    
        /**
         * Sets the model building listener to notify during the build process.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java

         *
         * @return The decrypted proxy, can be empty but never {@code null}.
         */
        List<Proxy> getProxies();
    
        /**
         * Gets the problems that were encountered during the settings decryption.
         *
         * @return The problems that were encountered during the decryption, can be empty but never {@code null}.
         */
        List<SettingsProblem> getProblems();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top