eugene yokota
eugene yokota
The plugin is available under https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/pl.project13.scala/sbt-jcstress/. Sometimes ppl don't proxy https://repo.scala-sbt.org/, and when we move, they run into 404. Not sure if this is what happened.
1. `updateFull` returns UpdateReport - https://github.com/sbt/librarymanagement/blob/v1.4.3/core/src/main/contraband-scala/sbt/librarymanagement/UpdateReport.scala 2. UpdateReport contains ConfigurationReport for each configurations - https://github.com/sbt/librarymanagement/blob/v1.4.3/core/src/main/contraband-scala/sbt/librarymanagement/ConfigurationReport.scala 3. ConfigurationReport details contains OrganizationArtifactReport, for all transitive dependencies, which contains ModuleReport - https://github.com/sbt/librarymanagement/blob/v1.4.3/core/src/main/contraband-scala/sbt/librarymanagement/ModuleReport.scala 4....
AFAIK no one has actively worked on this plugin for the last 4~5 years. Would you be interested in sending a fix for this?
I'd get around to it eventually. I watch this repo, but I don't maintain it.
Sounds good to me.
> enable/disable plugins (e.g. only for Scala 3 + JS) The return type of `ProjectFinder#apply` is `Project`: https://github.com/sbt/sbt-projectmatrix/blob/cd7f4453a63d3201ea2a2e7665c7bd793aec10f0/src/main/scala/sbt/internal/ProjectMatrix.scala#L137 So once you get to it, I am guessing you can do...
> For example, I couldn't use `core.projectRefs` anymore, or could I? ProjectRefs just contains the internal URL of the subproject so it should just work even if you split out...
> or i can't import the project anymore. Could you clarify what you meant here? Are you saying that IDE import becomes too slow to be usable? If so which...
Maybe you need to add `publish / skip := true`?
> 3. if rows is empty and aggregates is non-empty -> generate 1 project which just does aggregation, don't mangle the name of that project I am not 100% sure,...