`
www-hello
  • 浏览: 100446 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

maven 中 flex 编译选项的local

    博客分类:
  • flex
阅读更多

The flexmojos goal "flexbuilder" does not configure the compiler settings in FlexBuilder/FlashBuilder correctly. To be able to compile and run the application in the Builder you have to set the compiler settings similar to this:

-locale=en_US,de_DE -source-path=..\resources\locale\{locale} -allow-source-path-overlap=true


In this example english and german localizations are available and the locale property files are located in the folder resources/locale/en_US and resources/locale/de_DE.

 

-------------------------------------------------------------------------------------------------------------------------------

-------------------------------------------------------------------------------------------------------------------------------

%USERPROFILE%\.m2\settings.xml

<?xml version="1.0" encoding="UTF-8"?>
<settings>
  <profiles>
     <profile>
        <id>flex-mojos</id>
            <repositories>
                <!-- Required for regular plugin use until moved over to Maven central repo. -->
                <repository>
                    <id>flex-mojos-repository</id>
                    <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>false</enabled> </snapshots>
                </repository>
                
                <!-- Required for building plugin from source. -->
                <repository>
                    <id>flex-mojos-internal-repository</id>
                    <url>http://repository.sonatype.org/content/groups/public/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>true</enabled> </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <!-- Required for regular plugin use until moved over to Maven central repo. -->
                <pluginRepository>
                    <id>flex-mojos-plugin-repository</id>
                    <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>false</enabled> </snapshots>
                </pluginRepository>
                
                <!-- Required for building plugin from source. -->
                <pluginRepository>
                    <id>flex-mojos-internal-plugins-repository</id>
                    <url>http://repository.sonatype.org/content/groups/public/</url>
                    <releases> <enabled>true</enabled> </releases>
                    <snapshots> <enabled>true</enabled> </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>flex-mojos</activeProfile>
    </activeProfiles>
</settings>
 

 

分享到:
评论
1 楼 zhuzhijia 2010-09-01  
我感觉maven在编译flex的时候,总是会出现很多问题,经常性在命令行中mvn install后,回报大量的错,而这些failure主要又是因为maven无法自动下载plugin造成的,完后会提示MISSING信息,建议你去sonatype\maven2站点上去手动下载那些需要的jar文件,然后需要手动去install,而且再次编译,又会翻来覆去报missing的错误,而且有些jar文件在sonatype\maven2已经不存在了,这就更加要命了,不知道楼主有没有遇到过这种问题啊,还是有什么好的办法可以去解决下?

相关推荐

    swf.rar_flex_maven 编译flex_maven flex pom_maven flex 编译_swf开发

    通过上述步骤,你可以实现使用Maven编译Flex项目,从而提高开发效率,简化项目管理。在压缩包的文件列表中,`pom.xml`是项目的核心配置文件,`target`目录是Maven默认的构建输出目录,而`src`则包含了项目的源代码。...

    Maven构建全栈式Flex、BlazeDS和Spring集成解决方案–第一部分_创建Maven_Flex模块

    ### Maven构建全栈式Flex、BlazeDS和Spring集成解决方案 #### 一、概述 随着富互联网应用(RIA)技术的日益成熟,如何将类似Adobe Flex这样的RIA应用与稳健的服务器端技术进行集成成为了关键问题。Java开发者常用...

    maven项目编译jar包

    在Java开发中,Maven是一个强大的项目管理和构建工具,它帮助开发者管理依赖、构建项目以及自动化项目的生命周期。本文将深入探讨如何使用Maven来编译并创建一个JAR(Java Archive)包,主要涉及以下几个方面: 1. ...

    maven SSH Flex 日志查询

    利用Maven搭建的Java SSH框架后台,利用Flex显示 利用Maven搭建的Java SSH框架后台,利用Flex显示 利用Maven搭建的Java SSH框架后台,利用Flex显示 利用Maven搭建的Java SSH框架后台,利用Flex显示 利用Maven搭建的...

    maven-flex2-plugin-1.0.jar

    maven-flex2-plugin-1.0.jar

    maven-flex2-plugin-support-1.0.jar

    maven-flex2-plugin-support-1.0.jar

    maven-flex2-plugin-1.3-sources.jar

    maven-flex2-plugin-1.3-sources.jar

    maven-flex2-plugin-support-1.0-sources.jar

    maven-flex2-plugin-support-1.0-sources.jar

    构建全栈式Flex、BlazeDS和Spring集成解决方案–第一部分 创建Maven Flex模块

    随后,需要在项目的pom.xml文件中引入Flex-mojos依赖,以便能够使用Maven进行Flex项目的构建。 #### 2. 配置Flex-mojos 接下来,配置Flex-mojos插件,指定Flex SDK路径、Flex应用的输出目录、源代码目录等。这一...

    maven 配置注意事项

    在IT行业中,Maven是一个非常重要的工具,它用于管理和构建Java项目。本篇文章将详细讲解在配置Maven时需要注意的一些关键点,确保你的开发环境能够顺利运行。 首先,要安装Maven。通常,你需要从Apache官方网站...

    maven_local_repository

    maven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_repositorymaven_local_...

    使用 apache flex mavenizer 将flex sdk 4.6 maven化

    Apache Flex Mavenizer是一个工具,主要用于将Adobe Flex SDK 4.6与Maven构建系统整合,以便于在Java开发环境中更方便地管理和使用Flex资源。在本文中,我们将深入探讨如何利用这个工具,以及它在现代开发流程中的...

    transmittable-thread-local-2.12.1-API文档-中文版.zip

    赠送Maven依赖信息文件:transmittable-thread-local-2.12.1.pom; 包含翻译后的API文档:transmittable-thread-local-2.12.1-javadoc-API文档-中文(简体)版.zip; Maven坐标:...

    Windoiws的maven3.8.8

    例如,如果你希望将本地仓库改为`D:\Maven\repository`,则需要修改`settings.xml`中的`&lt;localRepository&gt;`标签。 ```xml &lt;localRepository&gt;D:/Maven/repository&lt;/localRepository&gt; ``` ### 五、常用Maven命令 - ...

    flex-messaging系列jar包

    在实际开发中,还需要了解 BlazeDS 或 LCDS(LiveCycle Data Services)这样的服务器端组件,它们为Flex提供服务发布、数据管理和事件驱动的架构。同时,熟悉MXML和ActionScript编程语言也是必不可少的,因为它们是...

    maven官方安装包

    1,解压到本地d:/ 2.配置环境变量,新增M2_HOME=d:/apache-maven-3.0.5 ,修改path环境变量末尾加%M2_HOME%\bin 3.打开cmd窗口,输入mvn -version,返回maven...&lt;localRepository&gt;d:/ch_maven_repos&lt;/localRepository&gt;

    maven local repository

    在本案例中,"maven local repository"是指在使用Maven进行项目构建时,安装tesseract库并将其添加到本地仓库的过程。 Tesseract是一个开源的OCR(光学字符识别)引擎,可以识别图像中的文本。JNI(Java Native ...

    maven中setting阿里云的详细镜像配置

    maven中setting阿里云的详细镜像配置,setting的配置细节 maven中setting阿里云的详细镜像配置,setting的配置细节

    maven jar包下载器.zip

    3. Maven仓库:Maven有中央仓库(Central Repository)和本地仓库(Local Repository)。中央仓库存储了大量的开源项目库,而本地仓库则缓存了从中央仓库下载的jar包,供本地项目使用。下载器可能直接与中央仓库通信...

    Maven build之pom.xml文件中的Build配置

    在pom.xml的标签内,可以设置插件的配置、资源的位置、输出目录、编译选项等。如果需要对默认的构建行为进行定制,可以通过配置标签来指定具体的插件及其参数。 默认情况下,Maven会绑定一系列核心插件,这些插件...

Global site tag (gtag.js) - Google Analytics