mirror of https://github.com/sbt/sbt.git
23 lines
400 B
Plaintext
23 lines
400 B
Plaintext
# load the project definition with transitive dependencies enabled
|
|
# and check that they are not downloaded
|
|
|
|
$ touch transitive
|
|
> reload
|
|
|
|
> update
|
|
|
|
> check-transitive
|
|
-> check-intransitive
|
|
|
|
|
|
# load the project definition with transitive dependencies disabled
|
|
# and check that they are not downloaded
|
|
|
|
$ delete ivy-cache
|
|
$ delete transitive
|
|
> reload
|
|
|
|
> update
|
|
|
|
-> check-transitive
|
|
> check-intransitive |