Skip to content

Commit

Permalink
Fixes #21913: scalap and compiler dependency are not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
fanf committed Oct 5, 2022
1 parent 1b7eea9 commit 0ca1993
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions webapp/sources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -437,16 +437,30 @@ limitations under the License.
-->
<dependencyManagement>
<dependencies>
<!--
We need to enforce version of all components of scala, else maven takes the oldest from transitive dep.
It seems to be because scala has them "compatible"
-->
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-reflect</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scalap</artifactId>
<version>${scala-version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-xml_${scala-binary-version}</artifactId>
Expand Down

0 comments on commit 0ca1993

Please sign in to comment.