Skip to content

Commit

Permalink
Merge pull request #41 from codacy/add-sonatype-credentials-buildsbt
Browse files Browse the repository at this point in the history
Add sonatype credentials in build.sbt
  • Loading branch information
rtfpessoa authored Jul 29, 2018
2 parents f19a152 + 1878b06 commit 55270cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ pomIncludeRepository := { _ => false }

publishTo := sonatypePublishTo.value

//Credentials for sonatype
credentials += Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
sys.env.getOrElse("SONATYPE_USER", "username"),
sys.env.getOrElse("SONATYPE_PASSWORD", "password"))

startYear := Some(2014)

description := "Bitbucket Scala Client"
Expand Down

0 comments on commit 55270cd

Please sign in to comment.