I have a project with several utility classes. Let's name it Utils
.
I have a proj1
which depends on Utils
. And another proj2
that depends on proj1
and Utils
.
The problem is if both proj1
and proj2
depend on different Utils
version this will lead to problems.
What's the best solution?
This situation occurs in Scala/SBT projects, but I guess other languages have the same problems.
Edit:
Just to be clear,
proj2
is the project that will run, that uses some code fromproj1
andUtils
.