Currently, I used a plugin like this:
addSbtPlugin("com.tuplejump" % "sbt-yeoman" % "0.7.1")
But then, I fork this plugin on github (let's say https://github.com/myname/play-yeoman.git
) and make some changes, what would be an easier way to use my forked version of plugin? Do I really have to register this fork on a maven/ivy repository?
Thanks!
lazy val yeomanPlugin = uri("sit://github.com/myname/play-yeoman")
as mentioned in sbt docs? Are you working on a sbt plugin? – Rhettrhetta