Hi velo, i have problems with the playerglobal and the version
[INFO] TargetPlayer and playerglobal dependency version doesn't match!
Target player: 10.0.0, player global: 10.0
i setted my dependencies in this way
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>flex-framework</artifactId>
<version>${flexSDKVersion}</version>
<type>pom</type>
<exclusions>
<!--
make sure to exclude the default 'playerglobal'
transitive
dependency
-->
<exclusion>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>playerglobal</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>playerglobal</artifactId>
<version>${flexSDKVersion}</version>
<!--
this artifact version must match the flex SDK version used
in this
project
-->
<classifier>10.0</classifier> <!-- the classifier specifies the
target flash player major version -->
<type>swc</type>
</dependency>
and the build tag is
<build>
<plugins>
<!-- FELX MOJO MAVEN PLUG IN -->
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flexMojosVersion}</version>
<extensions>true</extensions>
<!-- FORCE COMPILER SETTINGS -->
<dependencies>
<dependency>
<groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId>
<version>${flexSDKVersion}</version>
<type>pom</type>
</dependency>
</dependencies>
<configuration>
<keepGeneratedActionscript>false</keepGeneratedActionscript>
<targetPlayer>${targetPlayer}</targetPlayer>
<strict>true</strict>
<incremental>true</incremental>
<optimize>true</optimize>
<benchmark>false</benchmark>
<sourcePaths>
<path>src/main/flex</path>
</sourcePaths>
<!-- LOCALE -->
<compiledLocales>
<locale>en_US</locale>
</compiledLocales>
</configuration>
</plugin>
</plugins>
<defaultGoal>install</defaultGoal>
</build>
where targetplayer var is 10.0.0
what i miss ?
thanks for your support
Teo
--
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://flexmojos.sonatype.org/