Reputation: 7759
Is there a way to specify a tag in another repository as a dependency in Gradle?
I have a project x in repository a that depends on the tag tags/foo-1.2 in repository b. Is it possible to cause Gradle to checkout this dependency as a source dependency?
Upvotes: 0
Views: 196
Reputation: 123996
It's not something that's currently supported out-of-the-box. Depending on your exact needs, you could:
Exec
task), build it separately (using a GradleBuild
task), and do something with its outputs (e.g. put them on the former build's compile class path).Upvotes: 1