Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 7225720

Browse files
committed
Split version in another file and explicit root project.
Disable publishing for root project, as this can break publishing to sonatype.
1 parent d939e47 commit 7225720

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ pomIncludeRepository := { _ => false }
99

1010
lazy val commonSettings = Seq(
1111
organization := "com.github.dragos",
12-
version := "0.2.0",
1312
resolvers += "dhpcs at bintray" at "https://dl.bintray.com/dhpcs/maven",
1413
libraryDependencies ++= Seq(
1514
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
@@ -87,3 +86,8 @@ lazy val `ensime-lsp` = project.
8786
</developers>
8887
}
8988
)
89+
90+
lazy val vscodeRoot = project
91+
.in(file("."))
92+
.settings(publishArtifact := false)
93+
.aggregate(languageserver, `ensime-lsp`)

sonatype.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
//sonatypeProfileName := "dragos"
1+
sonatypeProfileName := "com.github.dragos"

version.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version in ThisBuild := "0.2.0"

0 commit comments

Comments
 (0)