*Flexmojos version:* 3.8.0

I have a typical multi-module Flex project with project-swc, project-swf and 
project-war modules.  

In my TEST profile, the project-swf module generates a SWF named 
project-swf-1.0-test.swf.  Note the -test after the version identifier. 
 This is by virtue of using's Flexmojo's test-swf goal.

In the pom.xml of my project-war module I have expressed a dependency on the 
SWF in the following manner

<profile>
  <id>TEST</id>
  <dependencies>
    <dependency>
      <groupId>${parent.groupId}</groupId>
      <artifactId>${app.name}-swf</artifactId>
      <version>${parent.version}</version>
      *<classifier>test</classifier>*
      <type>swf</type>
    </dependency>
  </dependencies>
</profile>

When I run a build, the WAR is generated and the build ends successfully. 
 However upon inspecting the WAR I see that the SWF that it contains is 
named incorrectly.  It is called project-swf-1.0test.swf.  The correct name 
should've been project-swf-1.0*-*test.swf.

What happened to the hyphen between the version number and classifier?

I realize that this is not a flexmojos problem per se. However I am hoping 
that you can shed some light on this problem and help correct it.

Sri

-- 
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex-mojos

http://flexmojos.sonatype.org/

Reply via email to