Created
December 28, 2011 05:24
-
-
Save jestan/1526502 to your computer and use it in GitHub Desktop.
Sbt Exclude Dependancy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Ivy Style | |
| override def ivyXML = | |
| <dependencies> | |
| <exclude org="org.slf4j" name="slf4j-simple"/> | |
| </dependencies> | |
| //SBT 11 inline syle | |
| "org.xyz" %% "xyz-lib" % "0.1.0" exclude("org.slf4j", "slf4j-simple") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment