Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know available tasks and settings of installed plugin in sbt?

Tags:

sbt

Given the following setup with the sbt-git plugin:

> about
[info] This is sbt 0.13.2
[info] The current project is {file:/Users/jacek/oss/sbt-git/}sbt-git 0.6.4-SNAPSHOT
[info] The current project is built against Scala 2.10.3
[info] Available Plugins: com.typesafe.sbt.SbtGit
[info] sbt, sbt plugins, and build definitions are using Scala 2.10.3

How can I query for the available tasks and settings of the plugin? I'd like to be able to say - show tasks and settings of a plugin - on the sbt shell. Possible? How?

like image 700
Jacek Laskowski Avatar asked Nov 01 '22 01:11

Jacek Laskowski


1 Answers

How can I query for the available tasks and settings of the plugin?

It's not specific to a plugin, but try typing tasks and settings from the shell. It should be a relatively short list that you can fish things out.

like image 130
Eugene Yokota Avatar answered Dec 29 '22 00:12

Eugene Yokota