-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Update to Gradle 8.12 #215
Conversation
@@ -109,6 +109,12 @@ if (jspecify != null) { | |||
assemble.dependsOn(jspecify.task(':assemble')) | |||
} | |||
|
|||
// Enable exec/javaexec |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm happy for suggestions for how to do this in a nicer way... The upgrade instructions didn't really help me a lot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly but unsurprisingly, I'm clueless. Now that I know to look for ExecOperations
, I see gradle/gradle#30822, which seems encouraging, I think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, here I was doing the right (oddly verbose) thing but in settings.gradle
I wasn't actually executing the task. Now it both compiles and seems to do the right thing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking care of this.
@@ -109,6 +109,12 @@ if (jspecify != null) { | |||
assemble.dependsOn(jspecify.task(':assemble')) | |||
} | |||
|
|||
// Enable exec/javaexec |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly but unsurprisingly, I'm clueless. Now that I know to look for ExecOperations
, I see gradle/gradle#30822, which seems encouraging, I think?
No description provided.