Hi,
Even though there is no native support for these tools in CloverDX software, you can use them externally to import all the dependencies. You need to have a pom.xml file which is used to download the libraries in a Maven project, containing all the needed dependencies. The idea is to use this pom.xml and a script that would use Maven CLI tool to download the libraries and their dependencies for you.
As I mentioned, you need to provide the pom.xml. Attached is a simple script that uses the Maven CLI to download the libraries. Copy the attached script file and the pom.xml into the root of your project. By running the scrip file you'll download the libraries into the lib folder of your project. The last thing to do is to add the libraries on the classpath by navigating into the Properties of your project -> Java Build Path -> Libraries -> Add JARs... and select all the jars in your lib folder.
Please note the script will only work if you have
Apache Maven installed on your system. Also, if you're on Linux, you'll need to adapt the script accordingly.
Best regards.