Currently I'm working with a Java back-end server which needs a specific external API: http://repo.ehealth.fgov.be/artifactory/maven2-cache/be/fgov/ehealth/connector/connector-packaging-technical/3.14.2/
The problem I am currently facing is as follows:
I compile the dependency with gradle and gradle can successfully download this API. But, I cannot use the jars in my code. The reason is, the zip contains several other folders like documentation, and the jars are located in the lib folder of the zip. So the only content I need is located in zip.
Currently I compile the dependency like this:
compile(group: 'be.fgov.ehealth.connector', name: 'connector-packaging-technical', version: '3.14.2', classifier: 'java', ext: 'zip')
Is there any possibility to be able to use all the jars in the lib folder?