We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mps-gradle-plugin/src/main/groovy/de/itemis/mps/gradle/CreateDmg.groovy
Lines 55 to 60 in a4a8f3c
Gradle tasks should not perform artifact resolution at the configuration time as the task might even be non-required at all.
The text was updated successfully, but these errors were encountered:
Oh, it looks like the eager resolution is caused by the fact that the task wants to store File jdk property:
File jdk
Lines 19 to 20 in a4a8f3c
I guess it would make sense to use Property<File> (or RegularFile) API.
Property<File>
RegularFile
Sorry, something went wrong.
What do you think if CreateDmg task (and the relevant others) were updated to use Property<...> APIs?
CreateDmg
Property<...>
What do you think if the task was converted to Kotlin?
Successfully merging a pull request may close this issue.
mps-gradle-plugin/src/main/groovy/de/itemis/mps/gradle/CreateDmg.groovy
Lines 55 to 60 in a4a8f3c
Gradle tasks should not perform artifact resolution at the configuration time as the task might even be non-required at all.
The text was updated successfully, but these errors were encountered: