Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ The plugin is available on Maven Central.
```sbt
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
```
To add into pants project

Add into your root `BUILD` file

```ini
jar_library(name='scalac-plugin-dep',
jars=[
scala_jar(org='com.olegpy', name='better-monadic-for', rev='0.3.1')
])
```

Add to your `pants.ini`

```ini
[scala]
scalac_plugins: ['bm4']
```

Supports Scala 2.11, 2.12, and 2.13.1

<details>
Expand Down