Then I retrieve it in another project like this: `...
# gradle
j
Then I retrieve it in another project like this:
Copy code
val specFileConfig = configurations.create("specFile")

dependencies {
    // Get the spec file from the spec project
    add(specFileConfig.name, project(path = ":PlexxiSwagger:Spec", configuration = "spec"))
}
configure<CodegenConfigurator> {
    inputSpec = specFileConfig.files.single().absolutePath
}