I recently updated the build files of my plugin using your nuget package with --build-only --force. After that I had missing dependencies.
Luckily, Ivan Migalev, a member of your slack community, showed me a sample of how he included the new 2022.1 rdgen and it worked.
I suggest the change here because some other people might run into it. Also the new way uses the versioning in the style 2022.1 and not the confusing 0.221.xxx versioning which improves the build.gradle.
Suggestion for the build.gradle file:
Remove this line:
plugins {
id 'com.jetbrains.rdgen' version '0.212.307' // remove this line
// other plugins
}
Hey guys,
I recently updated the build files of my plugin using your nuget package with
--build-only --force
. After that I had missing dependencies. Luckily, Ivan Migalev, a member of your slack community, showed me a sample of how he included the new 2022.1 rdgen and it worked.I suggest the change here because some other people might run into it. Also the new way uses the versioning in the style
2022.1
and not the confusing0.221.xxx
versioning which improves the build.gradle.Suggestion for the
build.gradle
file: Remove this line:In Favor of this: