Skip to content

Commit af916cd

Browse files
committed
[build] Enable implicit conversions for Scala 2.11 and 2.12
1 parent b234961 commit af916cd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

scala/scala_2.11/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@
8585
<args>
8686
<arg>-deprecation</arg>
8787
<arg>-feature</arg>
88+
<!-- Allow definition of implicit functions called views -->
89+
<arg>-language:implicitConversions</arg>
8890
</args>
8991
<excludes>
9092
<exclude>**/*.java</exclude>

scala/scala_2.12/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@
7878
<arg>-deprecation</arg>
7979
<!-- Emit warning and location for usages of features that should be imported explicitly. -->
8080
<arg>-feature</arg>
81+
<!-- Allow definition of implicit functions called views -->
82+
<arg>-language:implicitConversions</arg>
8183
</args>
8284
<excludes>
8385
<exclude>**/*.java</exclude>

0 commit comments

Comments
 (0)