Johan S
Johan S

Reputation: 3591

SBT - include dependency for everything but test

I have a dependency (stagemonitor.org) that I want to include for everything except "test" and "test:test". How do I include a dependency for everything but "test"? I'm using SBT 0.13.8.

Thanks,

Johan

Upvotes: 1

Views: 28

Answers (1)

Eugene Yokota
Eugene Yokota

Reputation: 95684

You likely need to exclude things manually via managedClasspath in Test. Check out -= operator we are adding on 0.13.9-RC1.

Upvotes: 1

Related Questions