我的项目中使用了一些 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>
我不想通过 shell 安装 swc 和 swf,是否有一些解决方案可以将 swc 文件解压缩为 swf 并创建 rsl,然后我只需要使用 like
<dependency>
<groupId>org.robotlegs</groupId>
<artifactId>robotlegs-framework</artifactId>
<version>1.5.1</version>
<type>swc</type>
<scope>rsl</scope>
</dependency>
谢谢!!!