使用IntelliJ IDEA将现有的flex项目转换为maven项目时,我在几天内面临一个有趣的问题:
问题说明:
当我将模块依赖关系用作Flex SDK 3.2.0时,我能够在mxml文件中正确地看到'mx:Application'标记,并且没有显示错误。但是,只要我选择Flexmojos SDK 4.5 / 4.6,那么'mx:Application'元素就会开始显示一条错误消息,说明'元素mx:必须声明应用程序'。此外,在编译期间,它会出现“无法解析mx:应用程序到组件实现”的错误。 Refer this image with screenshots from IntelliJ IDEA.
分析:
我在StackOverflow以及其他adobe论坛上看过类似的帖子,但他们的解决方案都没有帮助。我在adobe网站上检查过Flex 4是向后兼容的,所以理想情况下mx:Application标签应该可以工作,即使它在Flex 4中已弃用。
现状:
由于我必须将这个普通的Flex项目转换为Maven项目,我只能使用Flexmojos-maven-plugin,因此我也必须使用其相关的最新SDK 4.5 / 4.6。另外,我不打算在Flex 4中迁移整个Flex 3代码,因为这样做太多了,我目前的目标只是让这个flex项目与maven一起正确构建。
您可以向我提出有关如何解决此问题的任何想法吗?
答案 0 :(得分:0)
我最后通过添加对以下依赖项的引用来解决该问题:
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>mx</artifactId>
<version>4.5.0.19786</version>
<type>pom</type>
</dependency>
以上内容存在于我们公司的内部Nexus中,但我无法在mvnrepository网站上找到它。
我还必须使用旧版本的flexmojos-maven-plugin来编译我的flex项目。这是完整的工作pom.xml供参考:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>TA_UI_Test2</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>swf</packaging>
<name>TA_UI_Test2 Flex</name>
<dependencies>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>playerglobal</artifactId>
<version>10-3.3.0.4852</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>rpc</artifactId>
<version>4.5.1.21328</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>framework</artifactId>
<version>3.2.0.3958</version>
<type>swc</type>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>mx</artifactId>
<version>4.5.0.19786</version>
<type>pom</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>3.8</version>
<extensions>true</extensions>
<configuration>
<sourceFile>Main.mxml</sourceFile>
<debug>true</debug>
<storepass/>
</configuration>
<dependencies>
<dependency>
<groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId>
<version>3.2.0.3958</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>