プロジェクトで使用される swc ファイルがいくつかあります。Maven でプロジェクトをコンパイルするときは、次のように、swc を maven リポジトリにインストールする必要があります。
mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swc -DgroupId=org.robotlegs -DartifactId=robotlegs-framework -Dversion=1.5.1 -Dpackaging=swc
そして次のように使用します:
<dependency>
<groupId>org.robotlegs</groupId>
<artifactId>robotlegs-framework</artifactId>
<version>1.5.1</version>
<type>swc</type>
</dependency>
RSL でライブラリを追加したい場合は、swf をインストールする必要があります。
mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swf -DgroupId=org.robotlegs -DartifactId=robotlegs-framework -Dversion=1.5.1 -Dpackaging=swf
次のように使用します。
<dependency>
<groupId>org.robotlegs</groupId>
<artifactId>robotlegs-framework</artifactId>
<version>1.5.1</version>
<type>swc</type>
<scope>rsl</scope>
</dependency>
シェルでswcとswfをインストールしたくありません.swcファイルをswfに解凍してrslを作成する解決策はありますか?
<dependency>
<groupId>org.robotlegs</groupId>
<artifactId>robotlegs-framework</artifactId>
<version>1.5.1</version>
<type>swc</type>
<scope>rsl</scope>
</dependency>
ありがとう!!!