Join Slack
Powered by
I want to configure plugin only if property is ava...
# community-support
e
Eug
07/06/2024, 8:41 AM
I want to configure plugin only if property is available. That works with groovy by kotlin compilation fails. I'm trying next
Copy code
if (project.hasProperty("runPitest")) { pitest {
The error is
Unresolved reference: pitest
j
Javi
07/07/2024, 3:03 PM
If you are using Kotlin DSL,
pitest
fails as you cannot use the accessor.
e
Eug
07/07/2024, 3:57 PM
Thanks!
Open in Slack
Previous
Next