Unfortunately an http “folder” and a local directory arent interchangable like that
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'
}
}
If it’s a standard “apache” style web page, you might be able to use the org.apache.ivy.util.url.ApacheURLLister to list the files. See here for an example of using it in combination with the gradle-download-task