On Tue, Jan 27, 2009 at 12:50 PM, Marvin Froeder <[email protected]> wrote:
> I need compared.
>
> Did someone?
We compared the Flex Builder Export Release Build... with flex-mojos
because flex-mojos was a lot bigger. So we created a maven profile for
our "release" build with these settings:
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>info.flex-mojos</groupId>
<artifactId>flex-compiler-mojo</artifactId>
<configuration>
<debug>false</debug>
<verboseStacktraces>false</verboseStacktraces>
<runtimeLocales>
<locale>en_US</locale>
<locale>de_DE</locale>
...
</runtimeLocales>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>framework</artifactId>
<version>${flex.sdk.version}</version>
<type>swc</type>
<scope>caching</scope>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>framework</artifactId>
<version>${flex.sdk.version}</version>
<type>swc</type>
<scope>rsl</scope>
</dependency>
</dependencies>
</profile>
This got us a little smaller than Flex Builder.
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/
-~----------~----~----~----~------~----~------~--~---