Skip to content

Commit 9a82a44

Browse files
committed
Move the collectionContrib project to a collection-contrib subdirectory
This is a tentative to address #51 At least now, the `package` task builds a .jar file that contains .class files. The `publishLocal` task, however, still does not build a .jar file containing the .class files. I’ve noticed that `collectionContribJS/publishLocal` builds a correct .jar file. The only difference between the JS and JVM projects is that the JVM project applies the `scalaModuleSettingsJVM` settings, which does something with sbt-osgi, which I didn’t dig into…
1 parent 3c09299 commit 9a82a44

39 files changed

+1
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Test/sources := Nil
77
lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
88
.withoutSuffixFor(JVMPlatform)
99
.crossType(CrossType.Pure)
10-
.in(file("."))
10+
.in(file("collection-contrib"))
1111
.settings(ScalaModulePlugin.scalaModuleSettings)
1212
// as per #71, we are not currently attempting to support OSGi in this repo
1313
.disablePlugins(SbtOsgi)

0 commit comments

Comments
 (0)