2010-12-13 14 views
5

* .mxmlを含まないmaven/flexプロジェクトをコンパイルする方法はありますか? flexプロジェクトにはActionScriptクラスのみが含まれています(「src/flex」ディレクトリには* .asファイルのみが含まれています)。私のpom.xmlはここにある:* .mxmlファイルなしでmaven/flexプロジェクトをコンパイルするには?

<groupId>com.test</groupId> 
<artifactId>test</artifactId> 
<version>1.0-SNAPSHOT</version> 
<name>test</name> 
<packaging>swf</packaging> 
<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> 
      <extensions>true</extensions> 
      <dependencies> 
       <dependency> 
        <groupId>com.adobe.flex</groupId> 
        <artifactId>compiler</artifactId> 
        <version>4.5.0.18623</version> 
        <type>pom</type> 
       </dependency> 
      </dependencies> 
     </plugin> 
    </plugins> 
</build> 
<dependencies> 
    <dependency> 
     <groupId>com.adobe.flex.framework</groupId> 
     <artifactId>flex-framework</artifactId> 
     <version>4.5.0.18623</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> 
</dependencies> 

"MVNパッケージ-eは" このエラーがスローされます:

[ERROR] Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-plugin:3.8:compile-swf (default-compile-swf) on project test: Source file not expecified and no default found! -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-plugin:3.8:compile-swf (default-compile-swf) on project q-integra-scorecard-ldservice: Source file not expecified and no default found! 

答えて

2

は "Main.asは" あなたのクラスである<プラグイン>、内部でこれを追加しよう私の場合は

<configuration> 
    <sourceFile>Main.as</sourceFile> 
</configuration> 
1

、私は、任意のプライマリソースファイルを(それがISessionProxy.asのようなインターフェースクラスのSWCいっぱいだった)がありませんでした。

だから私はこの作業を取得するために2つのことを行う必要がありました:

1)ビルドタグの下で私のソースディレクトリを()参照:

<build> 
    <sourceDirectory>src/main/flex</sourceDirectory> 

2)私はon this mail groupthe FlexMojos Google Groupを見つけたアドバイスに従います:

"...just remove all dependencies on your pom, because those dependencies are already defined on super pom."

私はコンパイルするまで、すべての依存関係を削除して、1つずつ戻しました。私は必要なすべてのだった:

<dependency> 
    <groupId>com.adobe.flex.framework</groupId> 
    <artifactId>flex-framework</artifactId> 
    <version>${flex.sdk.version}</version> 
    <type>pom</type> 
</dependency> 

私もFlexMojosプラグインのすべての依存関係を削除:

<plugin> 
    <groupId>org.sonatype.flexmojos</groupId> 
    <artifactId>flexmojos-maven-plugin</artifactId> 
    <version>${flexmojos.version}</version> 
    <configuration> 
      <targetPlayer>${flash.player.version}</targetPlayer> 
    </configuration> 
</plugin> 

これは私が必要と私はそれがあまりにも、他の誰かを役に立てば幸いSWCを生産、私のために働きました!

関連する問題