我为Flex swc项目创建了gradle构建文件,该文件已在intellij IDEA中成功编译。
我的项目包含依赖项
internal group: 'org.as3commons', name: 'as3commons-logging', version: '2.7', ext: 'swc'
编译失败,并出现诸如以下错误
....\lib\as3commons-logging-2.7.swc(org.as3commons.logging.integration:SLF4ASIntegration)
Error: Type was not found or was not a compile-time constant: [com.furusystems.logging.slf4as.bindings]::ILogBinding.
我看到日志记录库确实包含对其他库的接口(interface)的引用,但是在IDE中,它以某种方式传递编译功能,甚至可以正常工作。
我应该设置哪个gradlefx选项?
最佳答案
解决了!我将依赖项配置从“内部”更改为“合并”!