I might misunderstand the question, but I think you might be confused with sbt and Scala project versions.
You cannot use a plugin that is incompatible with sbt runtime. If the plugin does not support the version of Scala sbt uses under cover art, the plugin is considered incompatible and, therefore, sbt will refuse to run. sbt 0.13.5 uses 2.10.4, so plugins can only use Scala API 2.10.4. Therefore addSbtPlugin does not offer %% .
For projects, this is different. Here you can use any version you want, regardless of the version of sbt used and, therefore, of the plugins. Once you have created the addSbtPlugin 'plugin, the plugin available in the project and including it, add the settings to the projects.
source share