Sergey C.
Sergey C.
@thevery I'm already using the latest versions of everything. Can you provide a minimal reproducible example? Edit: Ok, I was able to reproduce it on a different project.
@benj56 try placing lint.xml in the same folder as build.gradle.
@autonomousapps one example where sorting currently produces invalid code: ```diff dependencies { - apiImplementation project(":Utils") - implementation(project(":MyProject")) { capabilities { requireCapability("com.my.lib:api") } - } + + apiImplementation project(":Utils") +} runtimeOnly...
A simple workaround I'm using is symlinking `gradle.properties` file into all included builds using relative paths.
> Will you kindly let us see the script? 😜 There is no script. Creating a symlink is as simple as: ```shell cd my-included-build ln -s ../gradle.properties ```
I switched to this fork which supports Kotlin 2.0: https://github.com/ZacSweers/kotlin-compile-testing
This is still an issue, see #1843
@mykola-mokhnach I might've fixed functional tests, can you approve the workflow please?
For now, the library cannot be consumed externally, even via JitPack. I will add publishing to a Maven repository in a follow-up PR if that's fine with you. I did...
@KazuCocoa this shouldn't affect existing usages, so it's more of an internal structure change than a breaking change. If you notice any change in behaviour for existing users, I can...