Hi,

I have a maven project with 'swf' packaging. I also have the assembly plugin
configured as follows:

 <plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-assembly-plugin</artifactId>
   <executions>
         <execution>
           <id>assembly</id>
           <goals>
                  <goal>single</goal>
           </goals>
           <phase>package</phase>
           <configuration>
                <descriptors>

<descriptor>src/main/assembly/descriptor.xml</descriptor>
                </descriptors>
            </configuration>
           </execution>
     </executions>
 </plugin>

When I do a 'mvn clean install', the swf is not generated and I see the
following info message:

[INFO] [install:install {execution: default-install}]
[INFO] No primary artifact to install, installing attached artifacts
instead.

Why is my swf no longer being installed?

regards,

Wim

Reply via email to