Sterling Greene

Results 244 comments of Sterling Greene

@ZacSweers which version of Gradle is this with? > It's easy to repro, but if you're serious about looking into it I can spin up a repro project for you....

This is another thing that would be fixed if the connection between production (main) sources and test sources went through dependency management. We'll take a look at this PR in...

This isn't the same thing as https://github.com/gradle/gradle/issues/25092, so I'm reopening this

@hfhbd I haven't been able to reproduce with the advent project as-is, but I have a theory. Could you add this to your root build.gradle.kts: ``` println("org.gradle.native="+System.getProperty("org.gradle.native")) ``` And then...

OK, there's some new defensive code for 8.8 RC2 (not released yet) to make this not fail, but I still don't know what's causing the native integration to be disabled.

@ljacomet is this something we could address with release coordination?

Incorporated into https://github.com/gradle/gradle/pull/28731

@cdickson-sum I don't think we've made any specific plans for this. There are a couple of pieces we have right now: 1. We can reuse the `WindowsResourceCompile` task from the...

Hi @fletcher-sumglobal `WindowsResourceCompile` is the task type, you would need to create an instance of that task. I was thinking something like this: ``` plugins { id "cpp-application" } application...