I am seeing warnings with scala-maven-plugin 3.1.5 such as:Expected all dependencies to require Scala version: 2.10.1c.b.a:x:2-SNAPSHOT requires scala version: 2.10.1f.e.d:y:1-SNAPSHOT requires scala version: 2.10.0Multiple versions of scala libraries detected!Except scala 2.10.0 and 2.10.1 and 2.10.x are binary compatible. Is there a way to suppress this warning?--
---
You received this message because you are subscribed to the Google Groups "Maven and Scala" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maven-and-sca...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Workaround : disable the check
http://davidb.github.io/scala-maven-plugin/compile-mojo.html#checkMultipleScalaVersions
2.10.1 and 2.10.0 are the first binary compatible version at major.minor level
--
Does specifying the exact scala version shaddows the compatability version?
Eyal.
<configuration>
<scalaCompatVersion>2.10</scalaCompatVersion>
<scalaVersion>2.10.4</scalaVersion>
</configuration>
</plugin>
[WARNING] com.typesafe.akka:akka-actor_2.11:2.3.6 requires scala version: 2.11.2[WARNING] Multiple versions of scala libraries detected!
I am seeing warnings with scala-maven-plugin 3.1.5 such as:
Expected all dependencies to require Scala version: 2.10.1c.b.a:x:2-SNAPSHOT requires scala version: 2.10.1f.e.d:y:1-SNAPSHOT requires scala version: 2.10.0
Multiple versions of scala libraries detected!
--
---
You received this message because you are subscribed to the Google Groups "Maven and Scala" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maven-and-sca...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.