I have a multi module gradle project which contains core
and client
. client
depends on core
which is declared like this:
dependencies {
compile project(':core')
}
If I publish core
and client
to Ivy or Maven the dependency from client
to core
uses the exact version that is currently defined for the core
(e.g. 1.0.0
).
Is there a way to change that? Let's say the core
is guaranteed to be compatible between minor releases. So instead of 1.0.0
i'd like the dependency to be to version 1.+
.