diff --git a/project/Common.scala b/project/Common.scala index dbd126eb..e44cdc80 100644 --- a/project/Common.scala +++ b/project/Common.scala @@ -16,6 +16,7 @@ import sbt._ import sbt.Keys._ +import xerial.sbt.Sonatype.autoImport.sonatypeProfileName import de.heikoseeberger.sbtheader.{AutomateHeaderPlugin, CommentStyle, FileType, HeaderPlugin, License} /** @@ -33,6 +34,7 @@ object Common extends AutoPlugin { scalacOptions ++= Seq("-encoding", "UTF-8", "-unchecked", "-deprecation", "-feature"), javacOptions ++= Seq("-encoding", "UTF-8"), resolvers += Resolver.typesafeIvyRepo("releases"), + sonatypeProfileName := "com.lightbend", // Header settings HeaderPlugin.autoImport.headerMappings := Map( FileType.scala -> CommentStyle.cStyleBlockComment,