File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ For sbt projects add the following to your build definition - build.sbt or proje
11
11
12
12
``` scala
13
13
libraryDependencies += " org.scala-lang.modules" %% " scala-async" % " 0.10.0"
14
+ libraryDependencies += " org.scala-lang" % " scala-reflect" % scalaVersion.value % Provided
14
15
```
15
16
16
17
For Maven projects add the following to your <dependencies > (make sure to use the correct Scala version suffix
@@ -22,6 +23,12 @@ to match your project’s Scala binary version):
22
23
<artifactId >scala- async_2.12 </artifactId >
23
24
<version >0.10.0 </version >
24
25
</dependency >
26
+ <dependency >
27
+ <groupId >org.scala- lang</groupId >
28
+ <artifactId >scala- reflect</artifactId >
29
+ <version >2.12.10 </version >
30
+ <scope >provided</scope >
31
+ </dependency >
25
32
```
26
33
27
34
After adding scala-async to your classpath, write your first ` async ` block:
You can’t perform that action at this time.
0 commit comments