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.
unspecified
1 parent e8e2e3d commit aff6b7cCopy full SHA for aff6b7c
1 file changed
java/gradle/src/main/kotlin/ProcessingPlugin.kt
@@ -23,7 +23,7 @@ class ProcessingPlugin @Inject constructor(private val objectFactory: ObjectFact
23
val processingVersion = project.findProperty("processing.version") as String?
24
?: javaClass.classLoader.getResourceAsStream("version.properties")?.use { stream ->
25
java.util.Properties().apply { load(stream) }.getProperty("version")
26
- } ?: "4.3.4"
+ }?.takeIf { it != "unspecified" } ?: "4.5.5"
27
val processingGroup = project.findProperty("processing.group") as String? ?: "org.processing"
28
val workingDir = project.findProperty("processing.workingDir") as String?
29
val debugPort = project.findProperty("processing.debugPort") as String?
0 commit comments