0

我们有一个使用 Scala 2.11.5 的工作 Scala 应用程序。

<dependency>
  <groupId>org.scala-lang</groupId>
  <artifactId>scala-library</artifactId>
  <version>2.11.5</version>
</dependency>

当我们引入 SORM 时,使用以下 maven 依赖:

<dependency>
  <groupId>org.sorm-framework</groupId>
  <artifactId>sorm</artifactId>
  <version>0.3.18</version>
</dependency>

发生以下两个构建错误:

scala-parser-combinators_2.12.0-M4-1.0.4.jar of xxx build path is cross-compiled with an incompatible version of Scala (2.12.0). 

scala-xml_2.12.0-M4-1.0.5.jar of xxx build path is cross-compiled with an incompatible version of Scala (2.12.0).

我曾尝试使用旧版本的 SORM,但也会出现类似的问题。例如,使用版本0.3.8

slf4s_2.9.1-1.0.7.jar of xxx build path is cross-compiled with an incompatible version of Scala (2.9.1). 

Squeryl用于对象关系映射时也存在类似问题:

<dependency>
  <groupId>org.squeryl</groupId>
  <artifactId>squeryl_2.9.3</artifactId>
  <version>0.9.5-7</version>
</dependency>

导致以下构建错误;

squeryl_2.9.3-0.9.5-7.jar of xxx build path is cross-compiled with an incompatible version of Scala (2.9.3).

有没有人有办法解决吗?

谢谢

4

1 回答 1

1

您可以通过在 POM 中引用正确的 Scala 版本来解决您的 Squeryl 问题。

<dependency>
  <groupId>org.squeryl</groupId>
  <artifactId>squeryl_2.11</artifactId>
  <version>0.9.5-7</version>
</dependency>
于 2016-05-19T14:25:43.243 回答