Skip to content

Instantly share code, notes, and snippets.

@jestan
Created December 28, 2011 05:24
Show Gist options
  • Select an option

  • Save jestan/1526502 to your computer and use it in GitHub Desktop.

Select an option

Save jestan/1526502 to your computer and use it in GitHub Desktop.
Sbt Exclude Dependancy
//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