Guest User

Untitled

a guest
Jan 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import sbt._
  2. object PluginDef extends Build {
  3. override def projects = Seq(root)
  4. lazy val root = Project("plugins", file(".")) .dependsOn( growl )
  5. .dependsOn( np )
  6. .dependsOn( proguard )
  7.  
  8. lazy val growl = uri("git://github.com/softprops/sbt-growl-plugin.git#0.1.2")
  9. lazy val np = uri("git://github.com/softprops/np.git#0.1.0")
  10. lazy val proguard = uri("git://github.com/siasia/xsbt-proguard-plugin.git")
  11. }
Add Comment
Please, Sign In to add comment