Sterling Greene
Sterling Greene
When we add a new command-line option to Gradle, we run the risk that a task may have a task option with the same name. When that happens, the Gradle...
When I import `kotlin-dsl`, I see a reasonable list of packages, but as soon as I open a `.gradle.kts` file, the list of packages in each module explodes to include...
We've had a few reports of a failure to verify valid wrappers: https://github.com/jMonkeyEngine/jmonkeyengine/runs/5841232153 > ✗ Found unknown Gradle Wrapper JAR files: > e996d452d2645e70c01c11143ca2d3742734a28da2bf61f25c82bdc288c9e637 gradle/wrapper/gradle-wrapper.jar This is a valid wrapper checksum....
I updated the example to use `implementation` and `testImplementation`: https://github.com/nebula-plugins/gradle-lint-plugin/tree/master/example And then ran `gradle lintGradle` with 7.0-milestone-2. This failed with an exception: https://scans.gradle.com/s/3w6fludv6c3xi/failure?anchor=e30&focused-exception-line=0-1-0#1 The other lint tasks fail in a...
Gradle's incremental Swift compilation is based on updating the YAML file read by the swift compiler. ### Expected Behavior Incremental Swift compiler will need to rely on YAML and binary...
We should provide a sample (in the Gradle distribution) that builds a simple JNI library for the big three platforms (Linux, macOS, Windows) and packages it into the re-distributable jar.
Java.net.URISyntaxException thrown on Linux when resolving Windows absolute path with `FileResolver`
**The real issue is explained in [this comment](https://github.com/gradle/gradle/issues/1308#issuecomment-325499596).** I noticed that if you specify the installDir path with spaces for the VisualCpp tool chain, a java.net.URISyntaxException is thrown when running...
Given: ``` project(":app") { apply plugin: 'cpp-application' application { dependencies { implementation project(":library") } } } project(":library") { apply plugin: 'cpp-library' library { dependencies { implementation project(":unwanted") } } }...