We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b0e6e commit 303e81bCopy full SHA for 303e81b
plugins/license-gather-plugin/build.gradle.kts
@@ -92,7 +92,11 @@ tasks {
92
classpath(sourceSets.main.map { it.runtimeClasspath })
93
classpath(allLicenseTextsDir)
94
mainClass.set("com.github.vlsi.gradle.license.SpdxPredictorKt")
95
- args("$output/com/github/vlsi/gradle/license/api/models/tfidf_licenses.bin")
+ argumentProviders += CommandLineArgumentProvider {
96
+ listOf(
97
+ output.get().file("com/github/vlsi/gradle/license/api/models/tfidf_licenses.bin").asFile.absolutePath
98
+ )
99
+ }
100
}
101
102
val copyTfidf by registering(Copy::class) {
0 commit comments