We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c0062f + cc6afe9 commit 54a8315Copy full SHA for 54a8315
README.md
@@ -7,9 +7,31 @@ A Scala compiler plugin to give patterns and for-comprehensions the love they de
7
8
## Getting started
9
The plugin is available on Maven Central.
10
+
11
+### sbt
12
13
```sbt
14
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
15
```
16
17
+### maven
18
19
+```xml
20
+<plugin>
21
+ <groupId>net.alchim31.maven</groupId>
22
+ <artifactId>scala-maven-plugin</artifactId>
23
+ <configuration>
24
+ <compilerPlugins>
25
+ <compilerPlugin>
26
+ <groupId>com.olegpy</groupId>
27
+ <artifactId>better-monadic-for_2.13</artifactId>
28
+ <version>0.3.1</version>
29
+ </compilerPlugin>
30
+ </compilerPlugins>
31
+ </configuration>
32
+</plugin>
33
+```
34
35
Supports Scala 2.11, 2.12, and 2.13.1
36
37
<details>
0 commit comments