-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from hmrc/fset-2163
FSET-2163 changes for new build environment
- Loading branch information
Showing
3 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
credentials += Credentials(Path.userHome / ".sbt" / ".credentials") | ||
resolvers ++= Seq( | ||
Resolver.url("HMRC Sbt Plugin Releases", url("https://dl.bintray.com/hmrc/sbt-plugin-releases"))(Resolver.ivyStylePatterns), | ||
"HMRC Releases" at "https://dl.bintray.com/hmrc/releases", | ||
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/" | ||
) | ||
|
||
resolvers += Resolver.url("hmrc-sbt-plugin-releases", | ||
url("https://dl.bintray.com/hmrc/sbt-plugin-releases"))(Resolver.ivyStylePatterns) | ||
addSbtPlugin("uk.gov.hmrc" % "sbt-artifactory" % "0.13.0") | ||
|
||
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/" | ||
addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "1.13.0") | ||
|
||
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.7.0") | ||
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "1.1.0") | ||
|
||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.12") | ||
addSbtPlugin("uk.gov.hmrc" % "sbt-git-versioning" % "1.15.0") | ||
|
||
addSbtPlugin("uk.gov.hmrc" % "sbt-settings" % "3.8.0") | ||
|
||
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.0.0") | ||
|
||
addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.0") | ||
|
||
addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "1.7.0") | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.12") | ||
|
||
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0") | ||
|
||
|
||
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "1.0.0") | ||
|
||
addSbtPlugin("uk.gov.hmrc" % "sbt-git-versioning" % "0.9.0") | ||
|
||
addSbtPlugin("uk.gov.hmrc" % "sbt-settings" % "3.4.0") | ||
|