Skip to content

Commit 510262d

Browse files
committed
Force compilation with given scala version
1 parent c46cf46 commit 510262d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

gradle/test-with-scala.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
apply plugin: 'scala'
44

5+
configurations {
6+
all {
7+
if (it.name != "zinc") {
8+
resolutionStrategy {
9+
force deps.scala
10+
}
11+
}
12+
}
13+
}
14+
515
compileTestGroovy {
616
classpath = classpath.plus(files(compileTestScala.destinationDir))
717
dependsOn compileTestScala

0 commit comments

Comments
 (0)