File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,10 @@ lazy val `scala-collection-compat` = crossProject(JSPlatform, JVMPlatform)
22
22
}
23
23
)
24
24
.jvmSettings(
25
- // TODO: should we add this?
26
- // OsgiKeys.exportPackage := Seq(s"scala.collection.compat.*;version=${version.value}"),
25
+ // NOTE: if this setting is not defined, the published jar doesn't contain any classfiles.
26
+ // Related to https://github.com/scala/scala-parser-combinators/issues/119.
27
+ // TODO: what should the setting be? This library also adds classes to other (existing) packages.
28
+ OsgiKeys .exportPackage := Seq (s " scala.collection.compat.*;version= ${version.value}" ),
27
29
libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % " test"
28
30
)
29
31
.jsSettings(
You can’t perform that action at this time.
0 commit comments