File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ object DottyBuild extends Build {
50
50
autoScalaLibrary := false ,
51
51
// Remove javac invalid options in Compile doc
52
52
javacOptions in (Compile , doc) --= Seq (" -Xlint:unchecked" , " -Xlint:deprecation" )
53
- )
53
+ ).
54
+ settings(publishing)
54
55
55
56
lazy val dotty = project.in(file(" ." )).
56
57
dependsOn(`dotty-interfaces`).
@@ -244,7 +245,8 @@ object DottyInjectedPlugin extends AutoPlugin {
244
245
""")
245
246
}
246
247
*/
247
- )
248
+ ).
249
+ settings(publishing)
248
250
249
251
250
252
/** A sandbox to play with the Scala.js back-end of dotty.
@@ -349,6 +351,13 @@ object DottyInjectedPlugin extends AutoPlugin {
349
351
)
350
352
)
351
353
354
+ lazy val `dotty-core` = project
355
+ .dependsOn(`dotty-interfaces`)
356
+ .dependsOn(dotty)
357
+ .dependsOn(`dotty-bridge`)
358
+ .settings(publishing)
359
+ .aggregate(dotty, `dotty-interfaces`, `dotty-bridge`)
360
+
352
361
// Partest tasks
353
362
lazy val lockPartestFile = TaskKey [Unit ](" lockPartestFile" , " Creates the lock file at ./tests/locks/partest-<pid>.lock" )
354
363
lazy val partestLockFile = new File (" ." + File .separator + " tests" + File .separator + " locks" + File .separator + s " partest- $pid.lock " )
You can’t perform that action at this time.
0 commit comments