Skip to content
This repository has been archived by the owner on Feb 28, 2021. It is now read-only.

remoteCacheResolvers #191

Merged
merged 1 commit into from
Nov 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ lazy val sbtBintrayRemoteCache = (project in file("sbt-bintray-remote-cache"))
.settings(commonSettings)
.settings(
name := "sbt-bintray-remote-cache",
pluginCrossBuild / sbtVersion := "1.4.1",
pluginCrossBuild / sbtVersion := "1.4.2",
)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.4.1
sbt.version=1.4.2
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ object BintrayRemoteCachePlugin extends AutoPlugin {

override lazy val projectSettings: Seq[Setting[_]] = Seq(
pushRemoteCacheTo := publishToBintraySetting.value,
remoteCacheResolvers := {
val btyOrg = bintrayRemoteCacheOrganization.value
val repoName = bintrayRemoteCacheRepository.value
List(Resolver.bintrayRepo(btyOrg, repoName))
},
)

def publishToBintraySetting =
Expand Down