aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project/Build.scala8
1 files changed, 1 insertions, 7 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 59b873986..2104d9b37 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -338,6 +338,7 @@ object DottyInjectedPlugin extends AutoPlugin {
lazy val publishing = Seq(
publishMavenStyle := true,
publishArtifact := true,
+ isSnapshot := version.value.contains("SNAPSHOT"),
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
@@ -391,13 +392,6 @@ object DottyInjectedPlugin extends AutoPlugin {
)
)
- lazy val `dotty-core` = project
- .dependsOn(`dotty-interfaces`)
- .dependsOn(dotty)
- .dependsOn(`dotty-bridge`)
- .settings(publishing)
- .aggregate(dotty, `dotty-interfaces`, `dotty-bridge`)
-
// Partest tasks
lazy val lockPartestFile = TaskKey[Unit]("lockPartestFile", "Creates the lock file at ./tests/locks/partest-<pid>.lock")
lazy val partestLockFile = new File("." + File.separator + "tests" + File.separator + "locks" + File.separator + s"partest-$pid.lock")