Suppose I have two Java projects in Maven / Eclipse:
- An open source application hosted in GitHub
- A small private library containing utility functions which is not open source (but which I do have the rights to modify, build, and redistribute in compiled form e.g. as a .jar file)
I'd like to make it possible for others to build, modify and run the application (and contribute back to the open source project if they like!), but this means that they will also need the library as a dependency.
I'd like to keep things simple, so that builds are easy both for myself and users of the application.
What's the most practical way to make this work?