Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DuplicateArtifactAttachmentException (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java

     */
    public class DuplicateArtifactAttachmentException extends RuntimeException {
    
        private static final String DEFAULT_MESSAGE = "Duplicate artifact attachment detected.";
    
        private Artifact artifact;
    
        private final MavenProject project;
    
        public DuplicateArtifactAttachmentException(MavenProject project, Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginExecutionException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.project.DuplicateArtifactAttachmentException;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Exception in the plugin manager.
     */
    public class PluginExecutionException extends PluginManagerException {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top