Le 18/01/2018 à 17:33, Steinar Bang a écrit : > Is there a tool that can automatically resolve maven dependencies to the > closest matching debian package dependencies?
mh_make will generate a source package from a Maven project and insert the required dependencies in the generated debian/control file, but you have to install the dependencies manually first. If you want to locate which package contains a specific Maven artifact you can use the apt-file tool: apt-file find <artifactId> | grep pom.xml Emmanuel Bourg

