Guys:

On comparison I have found a few differences, but not sure which one
to dig into. Some direction is greatly appreciated.

Flex Builder has
<external-library-path>
         <path-element>/Applications/Adobe Flex Builder 3
Plug-in/sdks/3.2.0/frameworks/libs/player/10/playerglobal.swc</path-element>
      </external-library-path>

Flex Mojos uses:
<external-library-path>
                        
<path-element>/Users/adamparrish/Desktop/mavenMigration/nsn-client/target/classes/libraries/playerglobal.swc</path-element>
                </external-library-path>

Could that cause an issue? I have Flex Mojo's using the following
dependency for playerglobal:
<dependency>
                                <groupId>com.adobe.flex.framework</groupId>
                                <artifactId>playerglobal</artifactId>
                                <version>10-${flex.version}</version>
                                <type>swc</type>
                </dependency>

The manifest files reference different locations

Flex Mojos:
<namespaces>
                        <namespace>
                                <uri>http://www.adobe.com/2006/mxml</uri>
                                
<manifest>/Users/adamparrish/Desktop/mavenMigration/nsn-client/target/classes/configs/mxml-manifest.xml</manifest>
                        </namespace>
                </namespaces>

Flex Builder:
<namespaces>
         <namespace>
            <uri>http://www.adobe.com/2006/mxml</uri>
            <manifest>mxml-manifest.xml</manifest>
         </namespace>
      </namespaces>

The actionscript file encoding is not set in Flex Builder but it is
set in Flex Mojos's pom
Flex Builder:
<!--      <actionscript-file-encoding>string</actionscript-file-encoding>-->

Flex Mojos:
<actionscript-file-encoding>UTF-8</actionscript-file-encoding>


Font sections are a bit different:
Flex Builder:
<local-fonts-snapshot>${flexlib}/macFonts.ser</local-fonts-snapshot>

Flex Mojos:
<local-fonts-snapshot>/Users/adamparrish/Desktop/mavenMigration/nsn-client/target/classes/fonts.ser</local-fonts-snapshot>

(Isn't this because of the UTF-8 setting?)

Flex Builder has an additional Font Manager that Flex Mojos doesn't have
Flex Builder:
<managers>
            <manager-class>flash.fonts.JREFontManager</manager-class>
            <manager-class>flash.fonts.AFEFontManager</manager-class>
            <manager-class>flash.fonts.BatikFontManager</manager-class>
         </managers>

Flex Mojos
                        <managers>
                                
<manager-class>flash.fonts.JREFontManager</manager-class>
                                
<manager-class>flash.fonts.BatikFontManager</manager-class>
                        </managers>

Flex Mojos has this setting:
<show-shadowed-device-font-warnings>true</show-shadowed-device-font-warnings>

Flex Builder has this setting:
<show-shadowed-device-font-warnings>false</show-shadowed-device-font-warnings>

The entire section below appears in Flex Builder's config but not in
Flex Mojos (but isn't this just for warning output while compiling?
Likely unrelated to my issue right?
<warn-array-tostring-changes>false</warn-array-tostring-changes>
      
<warn-assignment-within-conditional>true</warn-assignment-within-conditional>
      <warn-bad-array-cast>true</warn-bad-array-cast>
      <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
      <warn-bad-date-cast>true</warn-bad-date-cast>
      <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
      <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
      <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
      <warn-bad-null-assignment>true</warn-bad-null-assignment>
      <warn-bad-null-comparison>true</warn-bad-null-comparison>
      <warn-bad-undefined-comparison>true</warn-bad-undefined-comparison>
      
<warn-boolean-constructor-with-no-args>false</warn-boolean-constructor-with-no-args>
      <warn-changes-in-resolve>false</warn-changes-in-resolve>
      <warn-class-is-sealed>true</warn-class-is-sealed>
      <warn-const-not-initialized>true</warn-const-not-initialized>
      <warn-constructor-returns-value>false</warn-constructor-returns-value>
      
<warn-deprecated-event-handler-error>false</warn-deprecated-event-handler-error>
      <warn-deprecated-function-error>true</warn-deprecated-function-error>
      <warn-deprecated-property-error>true</warn-deprecated-property-error>
      <warn-duplicate-argument-names>true</warn-duplicate-argument-names>
      <warn-duplicate-variable-def>true</warn-duplicate-variable-def>
      <warn-for-var-in-changes>false</warn-for-var-in-changes>
      <warn-import-hides-class>true</warn-import-hides-class>
      <warn-instance-of-changes>true</warn-instance-of-changes>
      <warn-internal-error>true</warn-internal-error>
      <warn-level-not-supported>true</warn-level-not-supported>
      <warn-missing-namespace-decl>true</warn-missing-namespace-decl>
      <warn-negative-uint-literal>true</warn-negative-uint-literal>
      <warn-no-constructor>false</warn-no-constructor>
      
<warn-no-explicit-super-call-in-constructor>false</warn-no-explicit-super-call-in-constructor>
      <warn-no-type-decl>true</warn-no-type-decl>
      <warn-number-from-string-changes>false</warn-number-from-string-changes>
      <warn-scoping-change-in-this>false</warn-scoping-change-in-this>
      <warn-slow-text-field-addition>true</warn-slow-text-field-addition>
      <warn-unlikely-function-value>true</warn-unlikely-function-value>
      <warn-xml-class-has-changed>false</warn-xml-class-has-changed>

This section is entirely missing from the Flex Mojos configuration:
<runtime-shared-library-path>
      <path-element>libs/framework.swc</path-element>
      <rsl-url>framework_3.2.0.3958.swz</rsl-url>
      <policy-file-url></policy-file-url>
      <rsl-url>framework_3.2.0.3958.swf</rsl-url>
      <policy-file-url></policy-file-url>
   </runtime-shared-library-path>
   
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>

Is there something I should do for that as I think that could be an
easily contributing factor but maybe I am just looking for something
to try.

Thanks for any further input and direction! Thanks also for the help so far!

On Fri, Jul 24, 2009 at 9:34 AM, Adam Parrish<[email protected]> wrote:
> configurationReport - found it.
>
> Thanks - doing that now.
>
> On Fri, Jul 24, 2009 at 9:33 AM, Marvin Froeder<[email protected]> wrote:
>> Yep
>>
>> On Fri, Jul 24, 2009 at 10:31 AM, Adam Parrish <[email protected]> wrote:
>>>
>>> Can I get a config dump out of flex mojos?
>>>
>>> On Fri, Jul 24, 2009 at 9:30 AM, Marvin Froeder<[email protected]> wrote:
>>> >
>>> >> What do you think I should take as next steps?
>>> >
>>> > Compare flexmojos and flexbuilder config dump.
>>> >
>>> > VELO
>>> > >
>>> >
>>>
>>>
>>
>>
>> >>
>>
>

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