On Fri, Nov 28, 2008 at 5:14 PM, marstonstudio <[EMAIL PROTECTED]> wrote:
> Is it possible to target flash player 10 yet? I need some of the SPEEX
> audio codec stuff that comes with sdk 3.2 targeting fp 10.
>
> I've set the following dependency:
> <dependency>
>  <groupId>com.adobe.flex.framework</groupId>
>  <artifactId>flex-framework</artifactId>
>  <version>3.2.0.3958</version>
>  <type>pom</type>
> </dependency>

This sets the Flex SDK version, but did you also need to set the Flex
compiler version like this:
<build>
                <plugins>
                        <plugin>
                                <groupId>info.flex-mojos</groupId>
                                <artifactId>flex-compiler-mojo</artifactId>
                                <extensions>true</extensions>
                                <dependencies>
                                        <dependency>
                                                
<groupId>com.adobe.flex</groupId>
                                                
<artifactId>compiler</artifactId>
                                                <version>3.2.0.3958</version>
                                                <type>pom</type>
                                        </dependency>
                                </dependencies>
                                <configuration>
.......
                        </plugin>
                </plugins>
        </build>

When updating the SDK version, you need to set both.

Logan

--~--~---------~--~----~------------~-------~--~----~
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/
-~----------~----~----~----~------~----~------~--~---

Reply via email to