Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ArtifactInstallerException (0.2 sec)

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

    /**
     * @since 4.0.0
     */
    @Experimental
    public class ArtifactInstallerException extends MavenException {
    
        /**
         *
         */
        @Serial
        private static final long serialVersionUID = 3652561971360586373L;
    
        /**
         * @param message the message of the error
         * @param e {@link Exception}
         */
        public ArtifactInstallerException(String message, Exception e) {
            super(message, e);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java

         * @throws ArtifactInstallerException in case of an error
         * @throws IllegalArgumentException in case {@code request} is {@code null}
         */
        void install(@Nonnull ArtifactInstallerRequest request);
    
        /**
         * @param session the repository session
         * @param artifact the {@link ProducedArtifact} to install
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}.
         *
         * @param artifacts the artifacts to install
         * @throws org.apache.maven.api.services.ArtifactInstallerException if the artifacts installation failed
         *
         * @see org.apache.maven.api.services.ArtifactInstaller#install(Session, Collection)
         */
        void installArtifacts(@Nonnull ProducedArtifact... artifacts);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top