Skip to content

Commit

Permalink
moving sonatypeProfileName into project since it doesn't seem to take…
Browse files Browse the repository at this point in the history
… effect when in the inThisBuild
  • Loading branch information
bpholt committed Apr 15, 2021
1 parent 24c960b commit 5c0bd57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
inThisBuild(List(
organization := "com.dwolla.sbt",
sonatypeProfileName := "com.dwolla",
description := "SBT plugin to define and manage Docker containers based on images creating using sbt-native-packager",
sbtPlugin := true,
startYear := Option(2016),
Expand Down Expand Up @@ -41,5 +40,8 @@ inThisBuild(List(
),
))

val `docker-containers` = (project in file("."))
lazy val `docker-containers` = (project in file("."))
.settings(
sonatypeProfileName := "com.dwolla",
)
.enablePlugins(SbtPlugin)

0 comments on commit 5c0bd57

Please sign in to comment.