File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 88stages :
99 - name : build
1010 - name : publish
11- if : ((branch = master) AND (type != pull_request)) OR ( tag IS present)
11+ if : tag IS present
1212
1313jobs :
1414 include :
Original file line number Diff line number Diff line change @@ -14,9 +14,15 @@ It helps to keep track of module dependencies and library version used in each m
1414## Installation
1515Add the plugin as SBT dependency to your ` project/plugins.sbt `
1616
17- ``` addSbtPlugin("com.supersonic" % "sonic-dependency-tree" % x) ```
17+ ```
18+ resolvers += Resolver.bintrayRepo("ironsonic", "sbt-plugins")
19+
20+ addSbtPlugin("com.supersonic" % "sonic-dependency-tree" % "0.0.1")
21+ ```
22+
23+ Since it is an Auto Plugin, no need to explicitly enable it on the root project.
1824
19- On your root project enable plugin
25+ If you still wish to do so, you can do it like this:
2026``` scala
2127lazy val root = (project in file(" ." ))
2228 .enablePlugins(SonicDependencyTreePlugin )
You can’t perform that action at this time.
0 commit comments