Aaron Todd
04/08/2022, 1:48 PMCannot change dependencies of dependency configuration 'aws runtimedokkaGfmPlugin' after it has been resolved.Project builds fine from cli but intellij won't load the project. Anyone have any insights how to solve?
Aaron Todd
04/08/2022, 2:05 PMIgnat Beresnev
04/08/2022, 5:02 PMAaron Todd
04/08/2022, 5:03 PMAaron Todd
04/08/2022, 5:05 PMIgnat Beresnev
04/08/2022, 5:08 PMAaron Todd
04/08/2022, 5:09 PMorg.gradle.parallel=false
to gradle.properties
but no change in behavior.
We do run builds in CI and for releases with --parallel
though so even from CLI gradle still loads and builds the project fine when running in parallelIgnat Beresnev
04/08/2022, 5:14 PM:codegen:sdk:bootstrap
?Aaron Todd
04/08/2022, 5:15 PM:codegen:sdk:bootstrap
. That just generates all the service clients. Day to day when working on the project I don't even load most service clients unless I need toAaron Todd
04/08/2022, 5:17 PMaws-sdk-kotlin
will automatically load it as a composite)Aaron Todd
04/08/2022, 5:18 PMAaron Todd
04/08/2022, 5:19 PMIgnat Beresnev
04/08/2022, 5:20 PMAaron Todd
04/08/2022, 5:21 PMgit clean -dfx services/
If you want to get a smaller number of services loaded you can do:
./gradlew :codegen:sdk:bootstrap -Paws.services=+s3
which will only generate the s3
client for instance
(having one or two present is probably more representative of what our builds look like in development at any given time)Aaron Todd
04/08/2022, 5:21 PMPoor aws-sdk-kotlin team btw, first OOM issues, now this π your project has been great to debug on though, so hopefully we'll get through this one as wellHa yeah it's a good stress test project with everything loaded lol
Aaron Todd
04/13/2022, 7:02 PMIgnat Beresnev
04/14/2022, 8:20 AMAaron Todd
04/14/2022, 6:51 PMIgnat Beresnev
04/14/2022, 6:52 PMAaron Todd
04/14/2022, 6:54 PMAaron Todd
04/14/2022, 6:55 PMAaron Todd
04/14/2022, 6:55 PMIgnat Beresnev
04/14/2022, 7:03 PMAaron Todd
04/14/2022, 9:45 PM