Dependency management in java
问题 I implemented a tool and I want to make it open source. The problem is that my tool has some dependencies (binaries/. jar files). How can solve this problem, so that the person who downloads my source code, for example to extend it to a new feature, doesn't have to care of the dependencies? Should i write the dependencies in the MANIFEST as relative path, relative to my source code or something like that? 回答1: You can convert your project into a maven project and then put your source code to