我为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.
我看到日志库确实包含对来自其他库的接口的引用,但是在IDE中它以某种方式通过编译甚至可以工作。
我应该设置哪个gradlefx选项?
答案 0 :(得分:1)
解决了!我将依赖配置从'internal'更改为“merged”!
答案 1 :(得分:1)