Skip to content

Commit

Permalink
[prod/test sources] update ScalaDoc for org.jetbrains.sbt.structure.D…
Browse files Browse the repository at this point in the history
…ependencies
  • Loading branch information
azdrojowa123 committed Jun 11, 2024
1 parent 02d088a commit dd1146b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared/src/main/scala/org/jetbrains/sbt/structure/data.scala
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ case class DependencyData(projects: Dependencies[ProjectDependencyData],
jars: Dependencies[JarDependencyData])

/**
* When the project is imported without prod/test sources feature enabled, all dependencies are put in forProduction parameter.
*
* @param forProduction dependencies that should go to the main module
* @param forTest dependencies that should go to the test module
* @param forProduction dependencies that should go to the main module.
* If separate modules for production/test sources are disabled, then all dependencies are put in this field.
* @param forTest dependencies that should go to the test module.
* If separate modules for production/test sources are disabled, then this field contains en empty Seq.
*/
case class Dependencies[T](forProduction: Seq[T], forTest: Seq[T])

Expand Down

0 comments on commit dd1146b

Please sign in to comment.