File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
runtime/src/main/scala/org/scalaexercises/exercises Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
ThisBuild / organization := " org.scala-exercises"
2
2
ThisBuild / githubOrganization := " 47degrees"
3
- ThisBuild / scalaVersion := V .scala
3
+ ThisBuild / scalaVersion := " 2.13.3"
4
+ ThisBuild / crossScalaVersions := Seq (" 2.13.3" , " 2.12.11" )
4
5
5
6
publish / skip := true
6
7
7
- addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; test" )
8
+ addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; + test" )
8
9
addCommandAlias(" ci-docs" , " github; mdoc; headerCreateAll" )
9
10
addCommandAlias(" ci-publish" , " github; ci-release" )
10
11
@@ -13,7 +14,6 @@ lazy val V = new {
13
14
val circe : String = " 0.13.0"
14
15
val classutil : String = " 1.5.1"
15
16
val http4s : String = " 0.21.6"
16
- val scala : String = " 2.13.2"
17
17
val scalatest : String = " 3.2.0"
18
18
}
19
19
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ object Exercises {
38
38
.getURLs
39
39
.map(url => new File (url.getFile)) filter (_.exists)).toSeq
40
40
val classFinder = ClassFinder (files, Some (Opcodes .ASM7 ))
41
- val classes = classFinder.getClasses
41
+ val classes = classFinder
42
+ .getClasses()
42
43
.filter(Try (_).isSuccess)
43
44
.toList
44
45
ClassFinder .classInfoMap(classes.iterator)
You can’t perform that action at this time.
0 commit comments