Skip to content

Commit

Permalink
Refined documentation of runIvyDeps (#2169)
Browse files Browse the repository at this point in the history
It was not obvious, that `runIvyDeps` is used addionally to `ibyDeps`.

Pull request: #2169
  • Loading branch information
lefou authored Dec 6, 2022
1 parent 759bdcd commit 3e3f5d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scalalib/src/JavaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ trait JavaModule
def compileIvyDeps = T { Agg.empty[Dep] }

/**
* Same as `ivyDeps`, but only present at runtime. Useful for e.g.
* Additional dependencies, only present at runtime. Useful for e.g.
* selecting different versions of a dependency to use at runtime after your
* code has already been compiled
* code has already been compiled.
*/
def runIvyDeps: T[Agg[Dep]] = T { Agg.empty[Dep] }

Expand Down

0 comments on commit 3e3f5d3

Please sign in to comment.