Hello,
I got a strange issue using the copy-flex-resources and RSL. I have e
maven projetc with a flex modules and a webapp module.
I the flex module i use flex-mojos to compile the swf. In my config i
specify the path of the rsl
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
...
<rslUrls>
<url>/flex-bin/{artifactId}-{version}.{extension}</url>
</rslUrls>
...
</plugin>
For the url where i specify the absolute path (which i have to cause
to a vista/ie bug)
In the webapp module i use the copy-flex plugin to deploy my swf in
the webapp folder
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>copy-flex-resources</goal>
</goals>
<configuration>
<copyRSL>true</copyRSL>
<webappDirectory>
${project.build.directory}/$
{project.build.finalName}/flex-bin
</webappDirectory>
</configuration>
</execution>
</executions>
</plugin>
The problem is that in my webapp folder i got the folowing structure
/
--flexbin
------*.swf
------flexbin
----------*.swz
In fact in my flexbin folder another flexbin folder is create with the
rsl inside. I presume that this cause by the rsl url where i specify
the absolute path.I would like to have all my rsl and swf in the same
flexbin folder.
I think i maybe miss something.
Thank you for your help.
Cyril
--~--~---------~--~----~------------~-------~--~----~
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?hl=en?hl=en
http://blog.flex-mojos.info/
-~----------~----~----~----~------~----~------~--~---