-
Notifications
You must be signed in to change notification settings - Fork 210
Closed
Labels
Description
Describe the bug
Wrong Gradle metadata generated from build
To Reproduce
Steps to reproduce the behavior:
- trigger a new build of kool
- Check the
.module
metadata file, this is wrong
"dependencies" : [ {
"group" : "kx.platform",
"module" : "source",
"version" : {
"requires" : "0.0.9"
}
}, {
Expected behavior
Run the very same command locally, you should get instead the following
"dependencies": [
{
"group": "kx.platform",
"module": "source",
"version": {
"requires": "0.0.9"
},
"attributes": {
"org.gradle.category": "platform"
},
"endorseStrictVersions": true
},
This is a blocker, because downstream will cause the Idea Gradle project reload to fail because kx.platform:source:0.0.9
will be seen as a normal dependency instead of a platform
skalarproduktraum, aryaman-gupta and ljjh20