Steven K Olson
Steven K Olson
Just as an FYI I ran into this today on a multimodule project using Gradle 9.0.0 And AS Narwhal 4 Canary 2. The project has four modules, three of which...
Similarly, I use a chunk of build script code to load local.properties file that I exclude from git. If there was a way to set the central.sonatype.org generated user ID...
For anyone's future reference, I used this and loading credentials from local.properties worked with publishing: ``` Properties().apply { load(FileInputStream(project.rootProject.file("local.properties"))) project.extra["signing.keyId"] = get("signing.keyId") project.extra["signing.password"] = get("signing.password") project.extra["signing.secretKeyRingFile"] = get("signing.secretKeyRingFile") project.extra["mavenCentralUsername"] =...
The problem seems to be inside the .module file that is created during publish. I'm seeing this in the files clause in the mavenLocal repo I'm trying stuff in. From...
So I can work around this by adding this line to settings.gradle after the include: `project( ":KmpIO" ).name = "kmp-io"` So somewhere in the `generateMetadataFileForPublication` task code the default project...