Skip to content

Commit

Permalink
Set profile name on root project
Browse files Browse the repository at this point in the history
  • Loading branch information
2m committed May 15, 2021
1 parent c15362c commit 2206b23
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ val ScalaVersion = "2.12.13"

lazy val authors = project
.in(file("."))
.settings(sonatypeProfileName := "lt.dvim")
.aggregate(core, plugin, cli)

lazy val core = project
Expand All @@ -28,8 +29,7 @@ lazy val core = project
},
addCompilerPlugin(
"org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full
),
sonatypeProfileName := "lt.dvim"
)
)
.enablePlugins(AutomateHeaderPlugin)

Expand All @@ -43,8 +43,7 @@ lazy val plugin = project
val p1 = (core / publishLocal).value
val p2 = publishLocal.value
},
scriptedBufferLog := false,
sonatypeProfileName := "lt.dvim"
scriptedBufferLog := false
)

lazy val cli = project
Expand All @@ -55,8 +54,7 @@ lazy val cli = project
scalaVersion := ScalaVersion,
libraryDependencies ++= Seq(
"org.rogach" %% "scallop" % "4.0.2"
),
sonatypeProfileName := "lt.dvim"
)
)

inThisBuild(
Expand Down

0 comments on commit 2206b23

Please sign in to comment.