How to define pool of jars as dependency in gardle

Unfortunately an http “folder” and a local directory arent interchangable like that :slight_smile:
I’m not able to see your repository, are you able to download a zip/tar containing all the jars?

Eg:

configurations {
   novus { transitive = false }
}
dependencies {
   novus 'Novus-CM.Linux64.jdk18:novus:16.7.1@zip' // notice the @zip
   compile zipTree(configurations.novus.singleFile).matching {
      include '**/*.jar'
   }
}