こんにちは、Flex は初めてで、Flex と Flexmojos (Maven プラグイン) の統合に取り組んでいます。統合を試みましたが、Main.mxml でのコンパイル中に問題に直面していました。
s:アプリケーションをタイプに解決できませんでした
Flex SDK 4.6 を使用しています。名前空間の確認と SDK のバージョンの確認を指定するいくつかのソリューションを読みましたが、すべて問題ありません。mx:Application でも同じエラーが返されます。
誰かがそのような問題に遭遇した場合は、親切に提案してください!
ありがとう。
--編集済み
ここにコードがあります
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" currentState="loginState"
backgroundColor="#788E99" xmlns:Mxmls="Mxmls.*"
creationComplete="siteData.send()">
<fx:Declarations>
<mx:HTTPService url="assets/content.xml" id="siteData" resultFormat="e4x"/>
</fx:Declarations>
<!-- <fx:Style source="../Cat-Clv.css">
</fx:Style>-->
<fx:Declarations>
<fx:XMLList id="mainMenuXMLList">
<menuitem id="adminmenu" label="{resourceManager.getString('resources','menubar.admin')}" data="admin" percentWidth="12.5" visible="false">
コードはこのように始まります。pomファイル
<?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>
<parent>
<artifactId>abc</artifactId>
<groupId>abc.abc.abc</groupId>
<version>0.7</version>
</parent>
<groupId>abc.abc.abc.swf</groupId>
<artifactId>abc-swf</artifactId>
<version>0.3</version>
<packaging>swf</packaging>
<name>swf Application</name>
<build>
<sourceDirectory>src/main/flex</sourceDirectory>
<testSourceDirectory>src/test/flex</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<!-- <version>3.8</version> <dependencies> <dependency> <groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId> <version>3.2.0.3958</version> <type>pom</type>
</dependency> </dependencies> -->
<dependencies>
<dependency>
<groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId>
<version>4.6.b.23201</version>
<type>pom</type>
</dependency>
</dependencies>
<extensions>true</extensions>
<configuration>
<iKnowWhatImDoingPleaseBreakMyBuildIwontBlameFlexmojosForStopWorking>true</iKnowWhatImDoingPleaseBreakMyBuildIwontBlameFlexmojosForStopWorking>
<locales>
<locale>en_US</locale>
<locale>fr_FR</locale>
</locales>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>flex-framework</artifactId>
<version>3.2.0.3958</version> <version>3.4.0.9271</version> <type>pom</type>
</dependency> -->
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>framework</artifactId>
<version>4.6.b.23201</version>
<type>swz</type>
</dependency>
<!-- <dependency> <groupId>com.adobe.flex.framework</groupId> <artifactId>flex-framework</artifactId>
<version>3.4.0.9271</version> <type>pom</type> </dependency> -->
<dependency>
<groupId>com.adobe.flexunit</groupId>
<artifactId>flexunit</artifactId>
<version>0.85</version>
<type>swc</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cat.clv.swc</groupId>
<artifactId>clv-swc</artifactId>
<version>0.3</version>
<type>swc</type>
</dependency>
</dependencies>
<profiles>
<profile><!--https://docs.sonatype.org/pages/viewpage.action?pageId=2949459 -->
<id>m2e</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.maven.ide.eclipse</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>0.9.9-SNAPSHOT</version>
<configuration>
<mappingId>customizable</mappingId>
<configurators>
<configurator
id='org.maven.ide.eclipse.configuration.flex.configurator' />
</configurators>
<mojoExecutions>
<mojoExecution>org.apache.maven.plugins:maven-resources-plugin::</mojoExecution>
</mojoExecutions>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>