How to write a SBT 0.10+ plugin?

fujohnwang

2011-10-05


author: fujohnwang

To draft a SBT 0.10+ plugin, TWO parts should be taken into consideration:

  1. the build file of the plugin;

  2. the source code file or the definition files of the plugin;

the build file of the plugin sample (build.sbt under project root)

sbtPlugin := true

name := "aspectj_sbt_plugin"

version := "0.0.1"

organization := "name.fujohnwang"

publishMavenStyle := true

scalacOptions := Seq("-deprecation", "-unchecked")

resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"

libraryDependencies ++= Seq("org.aspectj" % "aspectjtools" % "1.6.11.RELEASE", "org.aspectj" % "aspectjrt" % "1.6.11.RELEASE","org.aspectj" % "aspectjweaver" % "1.6.11.RELEASE")

the definition file of the plugin sample(src/main/scala/*.scala)


import sbt._
import Keys._

object MyPlugin extends Plugin {

 val MyConfiguration = config("myconf")

 val mySetting = SettingKey[String]("my-setting")

 val myTask = TaskKey[Unit]("my-task", "task description")

 override lazy val settings = inConfig(MyConfiguration)(Seq(

 mySetting := "initial value for my-setting",

 myTask <<= (streams, mySetting,) map{

 (s, ms,)=> 

 // do what u want to do with the arguments

 },

 // other settings 

 ))

}

Note: U refer to each setting via their key and refer to their values via map from key.

Last Mile - How to use the plugin u have just finished?

in your project, 2 places should be taken care about:

1- the “project/plugins.sbt”
 resolvers += yourResolver   // help sbt to find out where your plugin is

 addSbtPlugin("name.fujohnwang" % "aspectj_sbt_plugin" % "0.0.1")   // declare to use your plugin

2- build.sbt under the root path of your project(light configuration) or project/Build.scala(full configuration)

usually, you can customize the settings of the plugin or add necessary dependencies in your build file(s), this is variable as per your usage scenarios. If default values are ok for you, nothing about plugin is needed to add to your build file.

What U can learn from the experience of writing a plugin?

1- declare custom Configuration to enhance the modularity;

2- declare necessary SettingKey(s) to make your plugin flexible(which allows your users to customize the plugin)

3- each Keys(Setting or Task) can be initialized or implemented by <<= with other Key(s)

References:

  1. https://github.com/harrah/xsbt/wiki/Plugins-Best-Practices
  2. https://github.com/harrah/xsbt/wiki/sbt-0.10-plugins-list
  3. http://eed3si9n.com/sbt-010-guide
  4. The AspectJ compiler API
  5. typesafehub-sbt-aspectj plugin

>>>>>> 更多阅读 <<<<<<


欢迎加入「福强私学」

跨越2190个日夜,始终坚持“实践 + 原创”打造的715125字专属知识库,囊括了(但不限于)从职场、技术、管理与商业等多个板块的内容。

  • 一个ChatGPT触达不到的地方
  • 一个带你超越AI/人工智能的地方
  • 一个与你一起成长的地方

https://afoo.me/kb.html


开天窗,拉认知,订阅「福报」,即刻拥有自己的全模态人工智能。

订阅「福报」