Daniel B Duval
09/19/2024, 3:35 PMThomas Broyer
09/19/2024, 3:42 PMfile:// URL for a maven() repository? (and putting the files, including POMs, in a directory following the layout of a Maven repo)Daniel B Duval
09/19/2024, 3:47 PMflatDirs {
dirs("${project.rootDir"/localjars")
}
dependencies {
classpath(fileTree(mapOf("dir" to "${project.rootDir}/localhars", "include" to listOf("*.jar"))))
}Daniel B Duval
09/19/2024, 5:03 PMVampire
09/20/2024, 7:16 PMflatDir repository and then dependency declarations as normal using coordinates.
What you should not do is using files or fileTree, it somewhow works but has various quirks.
What you should not do is combining the two, as that is not how it works.Daniel B Duval
09/20/2024, 7:30 PMVampire
09/20/2024, 7:51 PM