Skip to content

Commit

Permalink
Merge pull request #258 from 2m/wip-sonatype-profile-2m
Browse files Browse the repository at this point in the history
Add back mistakenly removed sonatype profile setting
  • Loading branch information
2m authored Sep 25, 2018
2 parents b1ba762 + 747c4f6 commit 2daf1e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import sbt.Keys._
import de.heikoseeberger.sbtheader.{ CommentStyle, FileType, License, HeaderPlugin, AutomateHeaderPlugin }
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
import scalariform.formatter.preferences._
import xerial.sbt.Sonatype.SonatypeKeys

/**
* Common sbt settings — automatically added to all projects.
Expand Down Expand Up @@ -62,7 +63,8 @@ object Common extends AutoPlugin {
FileType.java -> CommentStyle.cStyleBlockComment,
FileType.conf -> CommentStyle.hashLineComment
),
HeaderPlugin.autoImport.headerLicense := Some(License.Custom(licenseText))
HeaderPlugin.autoImport.headerLicense := Some(License.Custom(licenseText)),
SonatypeKeys.sonatypeProfileName := "com.lightbend"
)

val licenseText: String = {
Expand Down

0 comments on commit 2daf1e3

Please sign in to comment.