user432024
user432024

Reputation: 4665

How to deal with external project dependency and Gradle

This is not a simple jar dependency...

Basically I have 2 git projects, 1 project deals with data pipeline and eventually storing data to Solr. The other bassically reads Solr. Effectively this last project relies on 3 different projects that each have their own Solr collection.

Currently I manually clone the 4 repositories and launch the Solr instance with docker.

What's the best way not to do this manually and not have duplication using the 1 project?

Upvotes: 0

Views: 191

Answers (1)

webdizz
webdizz

Reputation: 846

To run all projects not manually you can apply Docker Compose where you can configure dependencies between applications, to build all at once even in case of dedicated projects you can use Composite Builds.

Upvotes: 1

Related Questions