- > Module version lotto:lotto.api:1.0, configuration 'testRuntime' declares a dependency on configuration 'default' which is not declared in the module descri ptor for lotto.api:InsicWebService2:unspecified*
I get this error msg while run gradle cleaneclipse eclipse
My project A bild.gradle
apply plugin: "java"
apply plugin: 'eclipse-wtp'
apply plugin: "maven"
group = "aa"
version = 1.0
repositories {
mavenCentral()
}
dependencies {
}
jar {
from configurations.runtime
}
My Project B depend on A build .gradle
dependencies {
compile project(':InsicWebService2')
runtime project(":InsicWebService2")
And setting .gradle on project B includeFlat "ProjectA"
project A build sucessfully but error comes on project B