Pavel Bernshtam
Pavel Bernshtam

Reputation: 4444

Gradlefx compilation fails with dependency as3commons-logging

I created a gradle build file for a Flex swc project, which compiles successfully in intellij IDEA.

My project contains dependency

internal group: 'org.as3commons', name: 'as3commons-logging', version: '2.7', ext: 'swc'

Compilation fails, with errors like

....\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.

I see that logging library indeed contains references to interfaces from other libraries, but in the IDE somehow it passes compilation and even works.

Which gradlefx option should I set?

Upvotes: 1

Views: 325

Answers (2)

Yennick Trevels
Yennick Trevels

Reputation: 11

cool :) Also, we have a support forum for GradleFx which you can find here: http://support.gradlefx.org/home

Upvotes: 1

Pavel Bernshtam
Pavel Bernshtam

Reputation: 4444

Solved!I changed dependency configuration from 'internal' to "merged"!

Upvotes: 1

Related Questions