This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 195474
Collapse All | Expand All

(-)pom.xml (-1 / +1 lines)
Lines 29-35 Link Here
29
  </parent>
29
  </parent>
30
30
31
  <artifactId>maven-ear-plugin</artifactId>
31
  <artifactId>maven-ear-plugin</artifactId>
32
  <version>2.5</version>
32
  <version>2.6</version>
33
  <packaging>maven-plugin</packaging>
33
  <packaging>maven-plugin</packaging>
34
34
35
  <name>Maven EAR Plugin</name>
35
  <name>Maven EAR Plugin</name>
(-)src/main/java/org/apache/maven/plugin/ear/EarModuleFactory.java (+5 lines)
Lines 50-55 Link Here
50
        temp.add( "sar" );
50
        temp.add( "sar" );
51
        temp.add( "wsr" );
51
        temp.add( "wsr" );
52
        temp.add( "har" );
52
        temp.add( "har" );
53
        temp.add( "car" );
53
        standardArtifactTypes = Collections.unmodifiableList( temp );
54
        standardArtifactTypes = Collections.unmodifiableList( temp );
54
    }
55
    }
55
56
Lines 122-127 Link Here
122
        {
123
        {
123
            return new HarModule( artifact );
124
            return new HarModule( artifact );
124
        }
125
        }
126
        else if ( "car".equals( artifactType ) )
127
        {
128
            return new JarModule( artifact, "/", Boolean.TRUE);
129
        }
125
        else
130
        else
126
        {
131
        {
127
            throw new IllegalStateException( "Could not handle artifact type[" + artifactType + "]" );
132
            throw new IllegalStateException( "Could not handle artifact type[" + artifactType + "]" );

Return to bug 195474